Try appeasing Hydra with correct platform specification outside of assert

svn path=/nixpkgs/trunk/; revision=22922
This commit is contained in:
Michael Raskin 2010-08-03 10:55:32 +00:00
parent e24d7319d4
commit 1cf7460522

View File

@ -8,6 +8,7 @@ let
]; ];
in in
(
assert a.stdenv ? gcc ; assert a.stdenv ? gcc ;
assert a.stdenv.gcc ? gcc ; assert a.stdenv.gcc ? gcc ;
assert a.stdenv.gcc ? libc ; assert a.stdenv.gcc ? libc ;
@ -45,13 +46,13 @@ rec {
/* doConfigure should be removed if not needed */ /* doConfigure should be removed if not needed */
phaseNames = ["setVars" "doUnpack" "preBuild" phaseNames = ["setVars" "doUnpack" "preBuild"
"doConfigure" "doMakeInstall"]; "doConfigure" "doMakeInstall"];
}) // {
meta = { meta = {
description = "GNU Common Lisp compiler working via GCC"; description = "GNU Common Lisp compiler working via GCC";
maintainers = [ maintainers = [
a.lib.maintainers.raskin a.lib.maintainers.raskin
]; ];
platforms = with a.lib.platforms; platforms = with a.lib.platforms;
all; linux;
}; };
} }