From bbb2ccf825d19cd30d9b5d88e10cb55025df06fc Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Tue, 6 May 2008 07:22:17 +0000 Subject: [PATCH] removed lowPrio wrapping of stdenv.curl which could be null svn path=/nixpkgs/trunk/; revision=11760 --- pkgs/top-level/all-packages.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 6f07d8b0a48..218e923ab27 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -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;