summary refs log tree commit diff
path: root/pkgs/tools/package-management
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2012-04-01 12:08:39 +0000
committerLudovic Courtès <ludo@gnu.org>2012-04-01 12:08:39 +0000
commit3363c587a4710d4337c4e15dfbbb40dc563ad1da (patch)
tree829460b59e38551e9b05417308a3339ab175ccd2 /pkgs/tools/package-management
parent7e5bd694ae92604bfaaf45fe1da3dbc28c1682a4 (diff)
downloadnixlib-3363c587a4710d4337c4e15dfbbb40dc563ad1da.tar
nixlib-3363c587a4710d4337c4e15dfbbb40dc563ad1da.tar.gz
nixlib-3363c587a4710d4337c4e15dfbbb40dc563ad1da.tar.bz2
nixlib-3363c587a4710d4337c4e15dfbbb40dc563ad1da.tar.lz
nixlib-3363c587a4710d4337c4e15dfbbb40dc563ad1da.tar.xz
nixlib-3363c587a4710d4337c4e15dfbbb40dc563ad1da.tar.zst
nixlib-3363c587a4710d4337c4e15dfbbb40dc563ad1da.zip
nixUnstable: Use `postInstall' instead of a custom phase.
svn path=/nixpkgs/trunk/; revision=33514
Diffstat (limited to 'pkgs/tools/package-management')
-rw-r--r--pkgs/tools/package-management/nix/unstable.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/tools/package-management/nix/unstable.nix b/pkgs/tools/package-management/nix/unstable.nix
index d32917c3bb77..1e70435186bc 100644
--- a/pkgs/tools/package-management/nix/unstable.nix
+++ b/pkgs/tools/package-management/nix/unstable.nix
@@ -38,13 +38,12 @@ stdenv.mkDerivation rec {
           stdenv.cross ? nix && stdenv.cross.nix ? system
       ) ''--with-system=${stdenv.cross.nix.system}'';
     doCheck = false;
+    postInstall = ":";
   };
 
   enableParallelBuilding = true;
 
-  installCheckPhase = "make installcheck";
-
-  postPhases = [ "installCheckPhase" ];
+  postInstall = "make installcheck";
 
   meta = {
     description = "The Nix Deployment System";