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:
a161b7e803...036dd81295
This commit is contained in:
Maximilian Bosch 2019-05-11 11:29:23 +02:00
parent 047400d753
commit 2a818c101a
No known key found for this signature in database
GPG key ID: 091DBF4D1FC46B8E

View file

@ -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" ]