summary refs log tree commit diff
path: root/nixos
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 /nixos
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 'nixos')
-rw-r--r--nixos/modules/config/debug-info.nix2
-rw-r--r--nixos/modules/config/system-path.nix4
-rw-r--r--nixos/modules/programs/man.nix2
3 files changed, 4 insertions, 4 deletions
diff --git a/nixos/modules/config/debug-info.nix b/nixos/modules/config/debug-info.nix
index 777ae71eebf..17cb862d291 100644
--- a/nixos/modules/config/debug-info.nix
+++ b/nixos/modules/config/debug-info.nix
@@ -38,7 +38,7 @@ with lib;
     # environment.pathsToLink, and we can't have both.
     #environment.pathsToLink = [ "/lib/debug/.build-id" ];
 
-    environment.extraOutputsToLink =
+    environment.extraOutputsToInstall =
       optional config.environment.enableDebugInfo "debug";
 
   };
diff --git a/nixos/modules/config/system-path.nix b/nixos/modules/config/system-path.nix
index 69830683d9c..d7815324c4c 100644
--- a/nixos/modules/config/system-path.nix
+++ b/nixos/modules/config/system-path.nix
@@ -73,7 +73,7 @@ in
         description = "List of directories to be symlinked in <filename>/run/current-system/sw</filename>.";
       };
 
-      extraOutputsToLink = mkOption {
+      extraOutputsToInstall = mkOption {
         type = types.listOf types.str;
         default = [ ];
         example = [ "doc" "info" "docdev" ];
@@ -123,7 +123,7 @@ in
     system.path = pkgs.buildEnv {
       name = "system-path";
       paths = config.environment.systemPackages;
-      inherit (config.environment) pathsToLink extraOutputsToLink;
+      inherit (config.environment) pathsToLink extraOutputsToInstall;
       ignoreCollisions = true;
       # !!! Hacky, should modularise.
       # outputs TODO: note that the tools will often not be linked by default
diff --git a/nixos/modules/programs/man.nix b/nixos/modules/programs/man.nix
index 94d026fdaef..201144ccb45 100644
--- a/nixos/modules/programs/man.nix
+++ b/nixos/modules/programs/man.nix
@@ -23,7 +23,7 @@ with lib;
 
     environment.pathsToLink = [ "/share/man" ];
 
-    environment.extraOutputsToLink = [ "man" ];
+    environment.extraOutputsToInstall = [ "man" ];
 
   };