svn path=/nixpkgs/trunk/; revision=6241
This commit is contained in:
Armijn Hemel 2006-08-25 20:38:30 +00:00
parent edefde9b2f
commit 3402fe7c80

View file

@ -3,10 +3,10 @@
assert sslSupport -> openssl != null;
stdenv.mkDerivation {
name = "curl-7.15.4";
name = "curl-7.15.5";
src = fetchurl {
url = http://curl.haxx.se/download/curl-7.15.4.tar.bz2;
md5 = "d9345a55c8bc67eafcd37fa1b728e00e";
url = http://curl.haxx.se/download/curl-7.15.5.tar.bz2;
md5 = "594142c7d53bbdd988e8cef6354eeeff";
};
buildInputs = [zlib (if sslSupport then openssl else null)];
patches = [./configure-cxxcpp.patch];