summary refs log tree commit diff
path: root/pkgs/tools/misc/coreutils
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2011-09-11 18:58:24 +0000
committerShea Levy <shea@shealevy.com>2011-09-11 18:58:24 +0000
commit8715ac105ba2cd54db8f2dcab200963d76c89913 (patch)
tree14a5bde0e47d50f849643061c7f4fa306541d172 /pkgs/tools/misc/coreutils
parent306b85df733c571fde3bfdab32dae3b6429298bc (diff)
downloadnixlib-8715ac105ba2cd54db8f2dcab200963d76c89913.tar
nixlib-8715ac105ba2cd54db8f2dcab200963d76c89913.tar.gz
nixlib-8715ac105ba2cd54db8f2dcab200963d76c89913.tar.bz2
nixlib-8715ac105ba2cd54db8f2dcab200963d76c89913.tar.lz
nixlib-8715ac105ba2cd54db8f2dcab200963d76c89913.tar.xz
nixlib-8715ac105ba2cd54db8f2dcab200963d76c89913.tar.zst
nixlib-8715ac105ba2cd54db8f2dcab200963d76c89913.zip
GNU Coreutils 8.13
svn path=/nixpkgs/branches/stdenv-updates/; revision=29191
Diffstat (limited to 'pkgs/tools/misc/coreutils')
-rw-r--r--pkgs/tools/misc/coreutils/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/tools/misc/coreutils/default.nix b/pkgs/tools/misc/coreutils/default.nix
index 4db9df467219..f21f97a18a25 100644
--- a/pkgs/tools/misc/coreutils/default.nix
+++ b/pkgs/tools/misc/coreutils/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, perl, gmp ? null
+{ stdenv, fetchurl, perl, xz, gmp ? null
 , aclSupport ? false, acl ? null
 , selinuxSupport? false, libselinux ? null, libsepol ? null }:
 
@@ -6,14 +6,14 @@ assert aclSupport -> acl != null;
 assert selinuxSupport -> ( (libselinux != null) && (libsepol != null) );
 
 stdenv.mkDerivation (rec {
-  name = "coreutils-8.10";
+  name = "coreutils-8.13";
 
   src = fetchurl {
-    url = "mirror://gnu/coreutils/${name}.tar.gz";
-    sha256 = "11fr0hkdk9h7a5ggpp3hj45ryvq3gc8ri2kksbgn7v8rjmp1x1jb";
+    url = "mirror://gnu/coreutils/${name}.tar.xz";
+    sha256 = "06xc4jfkr5h8pc6wq14ncihapf5chcwvvcjvpwkby1ngw0xbxz8b";
   };
 
-  buildNativeInputs = [ perl ];
+  buildNativeInputs = [ perl xz ];
   buildInputs = [ gmp ]
     ++ stdenv.lib.optional aclSupport acl
     ++ stdenv.lib.optional selinuxSupport libselinux