removed lowPrio wrapping of stdenv.curl which could be null

svn path=/nixpkgs/trunk/; revision=11760
This commit is contained in:
Michael Raskin 2008-05-06 07:22:17 +00:00
parent 8e898fff8f
commit bbb2ccf825

View file

@ -514,7 +514,7 @@ let pkgs = rec {
inherit fetchurl stdenv;
};
curl = if stdenv ? curl then (lowPrio (stdenv.curl)) else (assert false; null);
curl = if stdenv ? curl then (stdenv.curl) else (assert false; null);
curlftpfs = import ../tools/networking/curlftpfs {
inherit fetchurl stdenv fuse curl pkgconfig zlib;