summary refs log tree commit diff
path: root/pkgs/tools/misc/uutils-coreutils
diff options
context:
space:
mode:
authorVladyslav Mykhailichenko <dywedir@pm.me>2018-10-05 10:50:19 +0300
committerVladyslav Mykhailichenko <dywedir@pm.me>2018-10-05 10:50:19 +0300
commit1e02a2c063d4ed594f0e6001b3f46c36720c6c75 (patch)
treec3ec4bef75dbb58ea107c9301af4d540001b2ea2 /pkgs/tools/misc/uutils-coreutils
parent8c2c14ac392e5b96a1b3d12e16ba0439689024c7 (diff)
downloadnixpkgs-1e02a2c063d4ed594f0e6001b3f46c36720c6c75.tar
nixpkgs-1e02a2c063d4ed594f0e6001b3f46c36720c6c75.tar.gz
nixpkgs-1e02a2c063d4ed594f0e6001b3f46c36720c6c75.tar.bz2
nixpkgs-1e02a2c063d4ed594f0e6001b3f46c36720c6c75.tar.lz
nixpkgs-1e02a2c063d4ed594f0e6001b3f46c36720c6c75.tar.xz
nixpkgs-1e02a2c063d4ed594f0e6001b3f46c36720c6c75.tar.zst
nixpkgs-1e02a2c063d4ed594f0e6001b3f46c36720c6c75.zip
uutils-coreutils: 2018-02-09 -> 2018-09-30
Diffstat (limited to 'pkgs/tools/misc/uutils-coreutils')
-rw-r--r--pkgs/tools/misc/uutils-coreutils/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/tools/misc/uutils-coreutils/default.nix b/pkgs/tools/misc/uutils-coreutils/default.nix
index 411e0324457..70f304134d9 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-02-09";
+  name = "uutils-coreutils-2018-09-30";
   src = fetchFromGitHub {
     owner = "uutils";
     repo = "coreutils";
-    rev = "f333ab26b03294a32a10c1c203a03c6b5cf8a89a";
-    sha256 = "0nkggs5nqvc1mxzzgcsqm1ahchh4ll11xh0xqmcljrr5yg1rhhzf";
+    rev = "a161b7e803aef08455ae0547dccd9210e38a4574";
+    sha256 = "19j40cma7rz6yf5j6nyid8qslbcmrnxdk6by53hflal2qx3g555z";
   };
 
   # too many impure/platform-dependent tests
   doCheck = false;
 
-  cargoSha256 = "0qv2wz1bxhm5xhzbic7cqmn8jj8fyap0s18ylia4fbwpmv89nkc5";
+  cargoSha256 = "1a9k7i4829plkxgsflmpji3mrw2i1vln6jsnhxmkl14h554yi5j4";
 
   makeFlags =
     [ "CARGO=${cargo}/bin/cargo" "PREFIX=$(out)" "PROFILE=release" "INSTALLDIR_MAN=$(out)/share/man/man1" ]
@@ -34,6 +34,6 @@ rustPlatform.buildRustPackage {
     homepage = https://github.com/uutils/coreutils;
     maintainers = with maintainers; [ ma27 ];
     license = licenses.mit;
-    platforms = platforms.linux;
+    platforms = platforms.unix;
   };
 }