summary refs log tree commit diff
diff options
context:
space:
mode:
authorChristina Sørensen <christina@cafkafk.com>2023-10-20 06:55:51 +0000
committerGitHub <noreply@github.com>2023-10-20 09:55:51 +0300
commitb1dc14bacafae91a852075b19f89f055eb2c7a23 (patch)
tree9c6bed8dbd163ca6f6a42951f44a7eefb6ab96af
parentcbe3d40804b465e226c88e747d882b4c2d9d56ad (diff)
downloadnixpkgs-b1dc14bacafae91a852075b19f89f055eb2c7a23.tar
nixpkgs-b1dc14bacafae91a852075b19f89f055eb2c7a23.tar.gz
nixpkgs-b1dc14bacafae91a852075b19f89f055eb2c7a23.tar.bz2
nixpkgs-b1dc14bacafae91a852075b19f89f055eb2c7a23.tar.lz
nixpkgs-b1dc14bacafae91a852075b19f89f055eb2c7a23.tar.xz
nixpkgs-b1dc14bacafae91a852075b19f89f055eb2c7a23.tar.zst
nixpkgs-b1dc14bacafae91a852075b19f89f055eb2c7a23.zip
uutils-coreutils: 0.0.20 -> 0.0.22 (#261231)
-rw-r--r--pkgs/tools/misc/uutils-coreutils/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/misc/uutils-coreutils/default.nix b/pkgs/tools/misc/uutils-coreutils/default.nix
index 697396f0817..45a1c3f8a28 100644
--- a/pkgs/tools/misc/uutils-coreutils/default.nix
+++ b/pkgs/tools/misc/uutils-coreutils/default.nix
@@ -12,19 +12,19 @@
 
 stdenv.mkDerivation rec {
   pname = "uutils-coreutils";
-  version = "0.0.20";
+  version = "0.0.22";
 
   src = fetchFromGitHub {
     owner = "uutils";
     repo = "coreutils";
     rev = version;
-    sha256 = "sha256-Xr+RcWvAHyMMaHhcd3ArGeRZzpL76v7fXiHUSSxgj10=";
+    hash = "sha256-aEhU4O4xoj7hrnmNXA9GQYn8nc6XEJCGQIcx/xRtLMc=";
   };
 
   cargoDeps = rustPlatform.fetchCargoTarball {
     inherit src;
     name = "${pname}-${version}";
-    hash = "sha256-3hUEDE+Yup/+u/ACyAWXYTLerOqB/jtOzECdI540Ag0=";
+    hash = "sha256-zQN6EVRyd4FWeNNDXI3NY6XWmJTD+n8c+w7BHtXvs1k=";
   };
 
   nativeBuildInputs = [ rustPlatform.cargoSetupHook sphinx ];