* Fix Darwin evaluation errors.

svn path=/nixpkgs/trunk/; revision=8709
This commit is contained in:
Eelco Dolstra 2007-05-16 14:54:28 +00:00
parent 41291a5b26
commit 62b0dddf0e
3 changed files with 5 additions and 1 deletions

View file

@ -11,6 +11,6 @@ stdenv.mkDerivation {
buildInputs = [curl openssl zlib expat];
preBuild = "
makeFlagsArray=(prefix=$out PERL_PATH=${perl}/bin/perl SHELL_PATH=${stdenv.bash}/bin/sh)
makeFlagsArray=(prefix=$out PERL_PATH=${perl}/bin/perl SHELL_PATH=${stdenv.shell}/bin/sh)
";
}

View file

@ -1,5 +1,7 @@
{stdenv, fetchurl, kernelHeaders, glibc}:
assert stdenv.isLinux;
stdenv.mkDerivation {
name = "iputils";
builder = ./builder.sh;

View file

@ -1,5 +1,7 @@
{stdenv, fetchurl}:
assert stdenv.isLinux;
stdenv.mkDerivation {
name = "libcap-1.10";
src = fetchurl {