* Glibc 2.3.6.

* GCC 3.4.5.
* Updated several other stdenv packages.
* Modified the builders of several packages to use the generic
  builder.

svn path=/nixpkgs/trunk/; revision=4336
This commit is contained in:
Eelco Dolstra
2005-12-06 00:12:45 +00:00
parent 82e678362f
commit 94fe7734fa
23 changed files with 37 additions and 85 deletions
+3 -3
View File
@@ -3,10 +3,10 @@
assert sslSupport -> openssl != null;
stdenv.mkDerivation {
name = "curl-7.14.0";
name = "curl-7.15.0";
src = fetchurl {
url = http://curl.haxx.se/download/curl-7.14.0.tar.bz2;
md5 = "46ce665e47d37fce1a0bad935cce58a9";
url = http://curl.haxx.se/download/curl-7.15.0.tar.bz2;
md5 = "e3b130320d3704af375c097606f49c01";
};
buildInputs = [zlib (if sslSupport then openssl else null)];
patches = [./configure-cxxcpp.patch];