summary refs log tree commit diff
path: root/pkgs/build-support/buildenv/default.nix
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2016-03-14 12:19:37 +0100
committerVladimír Čunát <vcunat@gmail.com>2016-04-07 15:59:44 +0200
commit9a824f2f1dd01450e6f7270246f77210d4c9c2a5 (patch)
tree1fee3082bf0afd33df0335ec18338823b66b2ca3 /pkgs/build-support/buildenv/default.nix
parent2995439003a6473fc6531d09900e183b0d5de425 (diff)
downloadnixpkgs-9a824f2f1dd01450e6f7270246f77210d4c9c2a5.tar
nixpkgs-9a824f2f1dd01450e6f7270246f77210d4c9c2a5.tar.gz
nixpkgs-9a824f2f1dd01450e6f7270246f77210d4c9c2a5.tar.bz2
nixpkgs-9a824f2f1dd01450e6f7270246f77210d4c9c2a5.tar.lz
nixpkgs-9a824f2f1dd01450e6f7270246f77210d4c9c2a5.tar.xz
nixpkgs-9a824f2f1dd01450e6f7270246f77210d4c9c2a5.tar.zst
nixpkgs-9a824f2f1dd01450e6f7270246f77210d4c9c2a5.zip
treewide: rename extraOutputs{ToLink,ToInstall}
This is to get more consistent with `meta.outputsToInstall`.
Diffstat (limited to 'pkgs/build-support/buildenv/default.nix')
-rw-r--r--pkgs/build-support/buildenv/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/build-support/buildenv/default.nix b/pkgs/build-support/buildenv/default.nix
index 10f7c69c3aa..8b2167a8e74 100644
--- a/pkgs/build-support/buildenv/default.nix
+++ b/pkgs/build-support/buildenv/default.nix
@@ -27,7 +27,7 @@
 
 , # The package outputs to include. By default, only the default
   # output is included.
-  extraOutputsToLink ? []
+  extraOutputsToInstall ? []
 
 , # Root the result in directory "$out${extraPrefix}", e.g. "/share".
   extraPrefix ? ""
@@ -55,7 +55,7 @@ runCommand name
           else [ drv ])
         # Add any extra outputs specified by the caller of `buildEnv`.
         ++ lib.filter (p: p!=null)
-          (builtins.map (outName: drv.${outName} or null) extraOutputsToLink);
+          (builtins.map (outName: drv.${outName} or null) extraOutputsToInstall);
       priority = drv.meta.priority or 5;
     }) paths);
     preferLocalBuild = true;