summary refs log tree commit diff
path: root/pkgs/tools/misc/uutils-coreutils
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-02-03 10:41:46 +0700
committerBen Siraphob <bensiraphob@gmail.com>2021-02-03 15:27:23 +0700
commitc6c186f4107ae7636a8d464bc013c49b99acc3f9 (patch)
tree6846d7e1a2242f83251293cd53a5a9d9167274ce /pkgs/tools/misc/uutils-coreutils
parent86d5d9650d39128b028d0de33c5354cc20bb4608 (diff)
downloadnixpkgs-c6c186f4107ae7636a8d464bc013c49b99acc3f9.tar
nixpkgs-c6c186f4107ae7636a8d464bc013c49b99acc3f9.tar.gz
nixpkgs-c6c186f4107ae7636a8d464bc013c49b99acc3f9.tar.bz2
nixpkgs-c6c186f4107ae7636a8d464bc013c49b99acc3f9.tar.lz
nixpkgs-c6c186f4107ae7636a8d464bc013c49b99acc3f9.tar.xz
nixpkgs-c6c186f4107ae7636a8d464bc013c49b99acc3f9.tar.zst
nixpkgs-c6c186f4107ae7636a8d464bc013c49b99acc3f9.zip
uutils-coreutils: 2019-05-03 -> 0.0.3
Diffstat (limited to 'pkgs/tools/misc/uutils-coreutils')
-rw-r--r--pkgs/tools/misc/uutils-coreutils/default.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/tools/misc/uutils-coreutils/default.nix b/pkgs/tools/misc/uutils-coreutils/default.nix
index f18deb0c83d..44871b07a8e 100644
--- a/pkgs/tools/misc/uutils-coreutils/default.nix
+++ b/pkgs/tools/misc/uutils-coreutils/default.nix
@@ -1,20 +1,21 @@
 { stdenv, fetchFromGitHub, rustPlatform, cargo, cmake, sphinx, lib, prefix ? "uutils-"
 , Security
 }:
+rustPlatform.buildRustPackage rec {
+  pname = "uutils-coreutils";
+  version = "0.0.3";
 
-rustPlatform.buildRustPackage {
-  name = "uutils-coreutils-2019-05-03";
   src = fetchFromGitHub {
     owner = "uutils";
     repo = "coreutils";
-    rev = "036dd812958ace22d973acf7b370f58072049dac";
-    sha256 = "0d9w3iiphhsk7l5l34682wayp90rgq5a3d94l3qdvhcqkfmpg727";
+    rev = version;
+    sha256 = "QWiEHk8aciiwQeyNgrr0M0c1EeAgE3gSqw0ly/YTwTQ=";
   };
 
   # too many impure/platform-dependent tests
   doCheck = false;
 
-  cargoSha256 = "186hwzdpy7j0gw7491qx02vy4di5md47hipf1xxi1qccvmcfghwh";
+  cargoSha256 = "m2a7WNkF5TxjJlytjdoQ/JZIF9gp9qBkH+UU/NVRJzA=";
 
   makeFlags =
     [ "CARGO=${cargo}/bin/cargo" "PREFIX=$(out)" "PROFILE=release" "INSTALLDIR_MAN=$(out)/share/man/man1" ]
@@ -34,7 +35,7 @@ rustPlatform.buildRustPackage {
       CLI utils in Rust. This repo is to aggregate the GNU coreutils rewrites.
     '';
     homepage = "https://github.com/uutils/coreutils";
-    maintainers = with maintainers; [ ];
+    maintainers = with maintainers; [ siraben ];
     license = licenses.mit;
     platforms = platforms.unix;
   };