about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorLancelot SIX <lsix@lancelotsix.com>2017-12-28 09:11:06 +0100
committerRobin Gloster <mail@glob.in>2017-12-29 02:18:23 +0100
commit8cd2ee91ef2897be160ff8fae9d6218690e03ccf (patch)
treea2c9529a98281e068662e2989c310f676c6f1c15 /pkgs/tools
parentb3df1562d86638ef052e6c9d0f21498f11a3e15e (diff)
downloadnixlib-8cd2ee91ef2897be160ff8fae9d6218690e03ccf.tar
nixlib-8cd2ee91ef2897be160ff8fae9d6218690e03ccf.tar.gz
nixlib-8cd2ee91ef2897be160ff8fae9d6218690e03ccf.tar.bz2
nixlib-8cd2ee91ef2897be160ff8fae9d6218690e03ccf.tar.lz
nixlib-8cd2ee91ef2897be160ff8fae9d6218690e03ccf.tar.xz
nixlib-8cd2ee91ef2897be160ff8fae9d6218690e03ccf.tar.zst
nixlib-8cd2ee91ef2897be160ff8fae9d6218690e03ccf.zip
coreutils: 8.28 -> 8.29
See http://lists.gnu.org/archive/html/info-gnu/2017-12/msg00016.html
for release announcement
Diffstat (limited to 'pkgs/tools')
-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 9a422a96d703..589c58d0acc0 100644
--- a/pkgs/tools/misc/coreutils/default.nix
+++ b/pkgs/tools/misc/coreutils/default.nix
@@ -14,11 +14,11 @@ assert selinuxSupport -> libselinux != null && libsepol != null;
 with lib;
 
 stdenv.mkDerivation rec {
-  name = "coreutils-8.28";
+  name = "coreutils-8.29";
 
   src = fetchurl {
     url = "mirror://gnu/coreutils/${name}.tar.xz";
-    sha256 = "0r8c1bgm68kl70j1lgd0rv12iykw6143k4m9a56xip9rc2hv25qi";
+    sha256 = "0plm1zs9il6bb5mk881qvbghq4glc8ybbgakk2lfzb0w64fgml4j";
   };
 
   patches = optional hostPlatform.isCygwin ./coreutils-8.23-4.cygwin.patch;