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; 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 { curlftpfs = import ../tools/networking/curlftpfs {
inherit fetchurl stdenv fuse curl pkgconfig zlib; inherit fetchurl stdenv fuse curl pkgconfig zlib;