about summary refs log tree commit diff
path: root/pkgs/tools/misc/coreutils
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2010-01-14 10:09:39 +0000
committerLudovic Courtès <ludo@gnu.org>2010-01-14 10:09:39 +0000
commit951ec3ce51399f259908370a3704fbf750fede28 (patch)
tree73d50f435e577519b4a58988e67b01764611d71f /pkgs/tools/misc/coreutils
parent33618e21c57004bfc39178723cfc93cae52696c8 (diff)
GNU Coreutils 8.4.
svn path=/nixpkgs/branches/stdenv-updates/; revision=19429
Diffstat (limited to 'pkgs/tools/misc/coreutils')
-rw-r--r--pkgs/tools/misc/coreutils/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/coreutils/default.nix b/pkgs/tools/misc/coreutils/default.nix
index 8b2def61e2ede..67dd02ab422e9 100644
--- a/pkgs/tools/misc/coreutils/default.nix
+++ b/pkgs/tools/misc/coreutils/default.nix
@@ -1,11 +1,11 @@
 {stdenv, fetchurl, aclSupport ? false, acl, perl, gmp}:
 
 stdenv.mkDerivation rec {
-  name = "coreutils-8.3";
+  name = "coreutils-8.4";
 
   src = fetchurl {
     url = "mirror://gnu/coreutils/${name}.tar.gz";
-    sha256 = "0lghmjm6mmzxha7hdn2zz2dg6gsd4gqydp720p0gagr21q7lz9hh";
+    sha256 = "0zq11lykc7hfs9nsdnb8gqk354l82hswqj38607mvwj3b0zqvc4b";
   };
 
   buildInputs = [ perl gmp ] ++ stdenv.lib.optional aclSupport acl;