1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

nixUnstable: Run checkPhase after installPhase to work around a test suite bug

svn path=/nixpkgs/trunk/; revision=32567
This commit is contained in:
Shea Levy 2012-02-25 20:18:00 +00:00
parent 385f242a40
commit b4bee8caf5

View file

@ -4,7 +4,7 @@
, stateDir ? "/nix/var"
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (rec {
name = "nix-1.0pre31851";
src = fetchurl {
@ -51,4 +51,6 @@ stdenv.mkDerivation rec {
homepage = http://nixos.org/;
license = "LGPLv2+";
};
}
} // stdenv.lib.optionalAttrs stdenv.isDarwin {
phases = "$prePhases unpackPhase patchPhase $preConfigurePhases configurePhase $preBuildPhases buildPhase $preInstallPhases installPhase checkPhase fixupPhase $preDistPhases distPhase $postPhases";
})