Author: raskin Date: 2010-07-07 18:44:57 +0000 (Wed, 07 Jul 2010) New Revision: 22516
You can view the changes in this commit at: https://svn.nixos.org/viewvc/nix?rev=22516&view=rev Modified: nixpkgs/trunk/pkgs/development/compilers/gcl/default.nix Log: Assert the stdenv requirements of the expression for now Changes: Modified: nixpkgs/trunk/pkgs/development/compilers/gcl/default.nix =================================================================== --- nixpkgs/trunk/pkgs/development/compilers/gcl/default.nix 2010-07-07 15:10:05 UTC (rev 22515) +++ nixpkgs/trunk/pkgs/development/compilers/gcl/default.nix 2010-07-07 18:44:57 UTC (rev 22516) @@ -7,6 +7,13 @@ zlib which ]; in + +assert a.stdenv ? gcc ; +assert a.stdenv.gcc ? gcc ; +assert a.stdenv.gcc ? libc ; +assert a.stdenv.gcc.gcc != null ; +assert a.stdenv.gcc.glibc != null ; + rec { src = a.fetchcvs { cvsRoot = ":pserver:[email protected]:/sources/gcl"; @@ -19,7 +26,6 @@ name = "gcl-2.6.8pre"; inherit buildInputs; configureFlags = [ - "--enable-xgcl=yes" "--enable-ansi" ]; _______________________________________________ nix-commits mailing list [email protected] http://mail.cs.uu.nl/mailman/listinfo/nix-commits
