* Updated coreutils and findutils.

svn path=/nixpkgs/branches/stdenv-updates/; revision=11685
This commit is contained in:
Eelco Dolstra 2008-04-22 13:12:45 +00:00
parent 7d96471775
commit a218b9b2e7
2 changed files with 6 additions and 6 deletions

View file

@ -1,11 +1,11 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "coreutils-6.10";
name = "coreutils-6.11";
src = fetchurl {
url = mirror://gnu/coreutils/coreutils-6.10.tar.gz;
sha256 = "0zpbxfl16sq45s53fxw43i9i8lrdcc845714c1j5f84zi13ka08x";
url = mirror://gnu/coreutils/coreutils-6.11.tar.gz;
sha256 = "1klb7bm461nm02161wn25ivnbq2d09lidi4sdicdv4md38lpd6gb";
};
meta = {

View file

@ -1,10 +1,10 @@
{stdenv, fetchurl, coreutils}:
stdenv.mkDerivation {
name = "findutils-4.2.32";
name = "findutils-4.2.33";
src = fetchurl {
url = mirror://gnu/findutils/findutils-4.2.32.tar.gz;
sha256 = "05sj0154kl4mbqg7dcabiaa16snjv2ppfwwhcvl2zyn2yc28igc7";
url = mirror://gnu/findutils/findutils-4.2.33.tar.gz;
sha256 = "0y0gmdc55kknf5438c1da5xsvpch3v800r79rgz5rv6fb90djg41";
};
buildInputs = [coreutils];