From c009e9d2f0f498139645d4c69342b8e05058c38c Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Wed, 7 Jul 2010 18:44:57 +0000 Subject: [PATCH] Assert the stdenv requirements of the expression for now svn path=/nixpkgs/trunk/; revision=22516 --- pkgs/development/compilers/gcl/default.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/pkgs/development/compilers/gcl/default.nix b/pkgs/development/compilers/gcl/default.nix index 6c09a17726f..b53b552d2d5 100644 --- a/pkgs/development/compilers/gcl/default.nix +++ b/pkgs/development/compilers/gcl/default.nix @@ -7,6 +7,13 @@ let 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:anonymous@cvs.sv.gnu.org:/sources/gcl"; @@ -19,7 +26,6 @@ rec { name = "gcl-2.6.8pre"; inherit buildInputs; configureFlags = [ - "--enable-xgcl=yes" "--enable-ansi" ];