nix: Add a "dev" output

This gets rid of boehm-dev in the closure (as well as Nix's own
headers).
This commit is contained in:
Eelco Dolstra 2016-04-18 20:06:50 +02:00
parent 961ad19660
commit 21a2f2ba3b
5 changed files with 8 additions and 8 deletions

View file

@ -39,5 +39,5 @@ in
vmWithBootLoader = vmWithBootLoaderConfig.system.build.vm;
# The following are used by nixos-rebuild.
nixFallback = pkgs.nixUnstable;
nixFallback = pkgs.nixUnstable.out;
}

View file

@ -65,8 +65,8 @@ in
package = mkOption {
type = types.package;
default = pkgs.nix;
defaultText = "pkgs.nix";
default = pkgs.nix.out;
defaultText = "pkgs.nix.out";
description = ''
This option specifies the Nix package instance to use throughout the system.
'';

View file

@ -61,7 +61,7 @@ let
drvName = drv:
discard (substring 33 (stringLength (builtins.baseNameOf drv)) (builtins.baseNameOf drv));
rewriteHashes = drv: hashes: runCommand (drvName drv) { nixStore = "${nix}/bin/nix-store"; } ''
rewriteHashes = drv: hashes: runCommand (drvName drv) { nixStore = "${nix.out}/bin/nix-store"; } ''
$nixStore --dump ${drv} | sed 's|${baseNameOf drv}|'$(basename $out)'|g' | sed -e ${
concatStringsSep " -e " (mapAttrsToList (name: value:
"'s|${baseNameOf name}|${baseNameOf value}|g'"

View file

@ -15,13 +15,13 @@ buildRubyGem rec {
substituteInPlace $GEM_HOME/gems/${gemName}-${version}/lib/bundix.rb \
--replace \
"'nix-instantiate'" \
"'${nix}/bin/nix-instantiate'" \
"'${nix.out}/bin/nix-instantiate'" \
--replace \
"'nix-hash'" \
"'${nix}/bin/nix-hash'" \
"'${nix.out}/bin/nix-hash'" \
--replace \
"'nix-prefetch-url'" \
"'${nix}/bin/nix-prefetch-url'" \
"'${nix.out}/bin/nix-prefetch-url'" \
--replace \
"'nix-prefetch-git'" \
"'${nix-prefetch-git}/bin/nix-prefetch-git'"

View file

@ -9,7 +9,7 @@ let
common = { name, src }: stdenv.mkDerivation rec {
inherit name src;
outputs = [ "out" "man" "doc" ];
outputs = [ "dev" "out" "man" "doc" ];
nativeBuildInputs = [ perl pkgconfig ];