nixUnstable: Use `postInstall' instead of a custom phase.

svn path=/nixpkgs/trunk/; revision=33514
This commit is contained in:
Ludovic Courtès 2012-04-01 12:08:39 +00:00
parent 7e5bd694ae
commit 3363c587a4

View file

@ -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";