* 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
@@ -1,9 +1,9 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "coreutils-5.2.1";
name = "coreutils-5.93";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/coreutils-5.2.1.tar.bz2;
md5 = "172ee3c315af93d3385ddfbeb843c53f";
url = http://ftp.gnu.org/pub/gnu/coreutils/coreutils-5.93.tar.bz2;
md5 = "955d8abfd3dd8af2ca3af51480f1f9af";
};
}
+3 -3
View File
@@ -1,10 +1,10 @@
{stdenv, fetchurl, coreutils}:
stdenv.mkDerivation {
name = "findutils-4.2.25";
name = "findutils-4.2.26";
src = fetchurl {
url = http://ftp.gnu.org/gnu/findutils/findutils-4.2.25.tar.gz;
md5 = "e92fef6714ffa9972f28a1a423066921";
url = http://ftp.gnu.org/pub/gnu/findutils/findutils-4.2.26.tar.gz;
md5 = "9ac4e62937b1fdc4eb643d1d4bf117d3";
};
buildInputs = [coreutils];
patches = [./findutils-path.patch];