summary refs log tree commit diff
path: root/pkgs/tools/misc/coreutils
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@viric.name>2013-01-02 19:26:11 +0100
committerLluís Batlle i Rossell <viric@viric.name>2013-01-02 19:26:11 +0100
commit09d12cc9dbe011b6ea290f5e189c9e45dd8587ab (patch)
treee85aa91d2777281e4b6184bad7bd91c5ca5988df /pkgs/tools/misc/coreutils
parentd16f4bb3ed4e0bc181726a1a5c661f2c8cdc50ef (diff)
downloadnixlib-09d12cc9dbe011b6ea290f5e189c9e45dd8587ab.tar
nixlib-09d12cc9dbe011b6ea290f5e189c9e45dd8587ab.tar.gz
nixlib-09d12cc9dbe011b6ea290f5e189c9e45dd8587ab.tar.bz2
nixlib-09d12cc9dbe011b6ea290f5e189c9e45dd8587ab.tar.lz
nixlib-09d12cc9dbe011b6ea290f5e189c9e45dd8587ab.tar.xz
nixlib-09d12cc9dbe011b6ea290f5e189c9e45dd8587ab.tar.zst
nixlib-09d12cc9dbe011b6ea290f5e189c9e45dd8587ab.zip
coreutils: update to 8.20. They didn't build in i686 here.
Here is the error:
set-mode-acl.c: In function 'qset_acl':
set-mode-acl.c:72:6: error: #error Must have acl_delete_def_file (see POSIX 1003.1e draft 17).
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 f3bee5519600..9fd1d86ff82a 100644
--- a/pkgs/tools/misc/coreutils/default.nix
+++ b/pkgs/tools/misc/coreutils/default.nix
@@ -7,11 +7,11 @@ assert aclSupport -> acl != null;
 assert selinuxSupport -> libselinux != null && libsepol != null;
 
 stdenv.mkDerivation rec {
-  name = "coreutils-8.19";
+  name = "coreutils-8.20";
 
   src = fetchurl {
     url = "mirror://gnu/coreutils/${name}.tar.xz";
-    sha256 = "1rx9x3fp848w4nny7irdkcpkan9fcx24d99v5dkwgkyq7wc76f5d";
+    sha256 = "1cly97xdy3v4nbbx631k43smqw0nnpn651kkprs0yyl2cj3pkjyv";
   };
 
   nativeBuildInputs = [ perl ];