summary refs log tree commit diff
path: root/pkgs/tools/misc/uutils-coreutils
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2019-05-11 11:29:23 +0200
committerMaximilian Bosch <maximilian@mbosch.me>2019-05-11 11:29:23 +0200
commit2a818c101aaa40846edd72b26bdfa342422e09a0 (patch)
tree6cc9173b60c497e1c6593082bf5898cbb19862a2 /pkgs/tools/misc/uutils-coreutils
parent047400d75333864e0d1ab98fec10699cb6985983 (diff)
downloadnixpkgs-2a818c101aaa40846edd72b26bdfa342422e09a0.tar
nixpkgs-2a818c101aaa40846edd72b26bdfa342422e09a0.tar.gz
nixpkgs-2a818c101aaa40846edd72b26bdfa342422e09a0.tar.bz2
nixpkgs-2a818c101aaa40846edd72b26bdfa342422e09a0.tar.lz
nixpkgs-2a818c101aaa40846edd72b26bdfa342422e09a0.tar.xz
nixpkgs-2a818c101aaa40846edd72b26bdfa342422e09a0.tar.zst
nixpkgs-2a818c101aaa40846edd72b26bdfa342422e09a0.zip
uutils-coreutils: 2018-09-30 -> 2019-05-03
There's still no new release, but since there are ~120 commits since
August with several dependency bumps and improvements regarding the
compatibility with the GNU coreutils.

The full diff can be viewed here:
https://github.com/uutils/coreutils/compare/a161b7e803aef08455ae0547dccd9210e38a4574...036dd812958ace22d973acf7b370f58072049dac
Diffstat (limited to 'pkgs/tools/misc/uutils-coreutils')
-rw-r--r--pkgs/tools/misc/uutils-coreutils/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/misc/uutils-coreutils/default.nix b/pkgs/tools/misc/uutils-coreutils/default.nix
index 70f304134d9..a32ce090ecd 100644
--- a/pkgs/tools/misc/uutils-coreutils/default.nix
+++ b/pkgs/tools/misc/uutils-coreutils/default.nix
@@ -1,18 +1,18 @@
 { stdenv, fetchFromGitHub, rustPlatform, cargo, cmake, sphinx, lib, prefix ? "uutils-" }:
 
 rustPlatform.buildRustPackage {
-  name = "uutils-coreutils-2018-09-30";
+  name = "uutils-coreutils-2019-05-03";
   src = fetchFromGitHub {
     owner = "uutils";
     repo = "coreutils";
-    rev = "a161b7e803aef08455ae0547dccd9210e38a4574";
-    sha256 = "19j40cma7rz6yf5j6nyid8qslbcmrnxdk6by53hflal2qx3g555z";
+    rev = "036dd812958ace22d973acf7b370f58072049dac";
+    sha256 = "0d9w3iiphhsk7l5l34682wayp90rgq5a3d94l3qdvhcqkfmpg727";
   };
 
   # too many impure/platform-dependent tests
   doCheck = false;
 
-  cargoSha256 = "1a9k7i4829plkxgsflmpji3mrw2i1vln6jsnhxmkl14h554yi5j4";
+  cargoSha256 = "0qnpx2xhckb45q8cgn0xh31dg5k73hqp5mz5zg3micmg7as4b621";
 
   makeFlags =
     [ "CARGO=${cargo}/bin/cargo" "PREFIX=$(out)" "PROFILE=release" "INSTALLDIR_MAN=$(out)/share/man/man1" ]