about summary refs log tree commit diff
path: root/pkgs/tools/misc/uutils-coreutils
diff options
context:
space:
mode:
author06kellyjac <dev@j-k.io>2021-07-12 20:28:02 +0100
committer06kellyjac <dev@j-k.io>2021-07-12 20:28:02 +0100
commit2a3b8e76e5668e74ebdad625ed90b93ee349cfa5 (patch)
tree613f522d0058d49ad37ea9ca2e038b6db6f5268b /pkgs/tools/misc/uutils-coreutils
parent061afaf4eda81f62dcf80420d6acfd4d3871caf0 (diff)
uutils-coreutils: 0.0.6 -> 0.0.7
Diffstat (limited to 'pkgs/tools/misc/uutils-coreutils')
-rw-r--r--pkgs/tools/misc/uutils-coreutils/default.nix12
1 files changed, 3 insertions, 9 deletions
diff --git a/pkgs/tools/misc/uutils-coreutils/default.nix b/pkgs/tools/misc/uutils-coreutils/default.nix
index 209a38cdcc10f..8abfb077596a2 100644
--- a/pkgs/tools/misc/uutils-coreutils/default.nix
+++ b/pkgs/tools/misc/uutils-coreutils/default.nix
@@ -12,25 +12,19 @@
 
 stdenv.mkDerivation rec {
   pname = "uutils-coreutils";
-  version = "0.0.6";
+  version = "0.0.7";
 
   src = fetchFromGitHub {
     owner = "uutils";
     repo = "coreutils";
     rev = version;
-    sha256 = "sha256-dnswE/DU2jCfxWW10Ctjw8woktwWZqyd3E9IuKkle1M=";
+    sha256 = "sha256-XI6061nCVyL8Q1s+QH75IesneJNhbhxGnILZxQCa5LU=";
   };
 
-  postPatch = ''
-    # can be removed after https://github.com/uutils/coreutils/pull/1815 is included
-    substituteInPlace GNUmakefile \
-      --replace uutils coreutils
-  '';
-
   cargoDeps = rustPlatform.fetchCargoTarball {
     inherit src;
     name = "${pname}-${version}";
-    hash = "sha256-92BHPSVIPZLn399AcaJJjRq2WkxzDm8knKN3FIdAxAA=";
+    hash = "sha256-bfwWyeuslLjh4OCt+H8CM8hCrRFqlibOS8gS64lysa0=";
   };
 
   nativeBuildInputs = [ rustPlatform.cargoSetupHook sphinx ];