uutils-coreutils: 0.0.16 -> 0.0.17

Diff: https://github.com/uutils/coreutils/compare/0.0.16...0.0.17
This commit is contained in:
Doron Behar 2023-01-30 08:59:37 +02:00
parent 87c5f67254
commit ae855d1c76

View file

@ -12,19 +12,19 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "uutils-coreutils"; pname = "uutils-coreutils";
version = "0.0.16"; version = "0.0.17";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "uutils"; owner = "uutils";
repo = "coreutils"; repo = "coreutils";
rev = version; rev = version;
sha256 = "sha256-03Y7966xB+3iJ1LSZPiuXMR7krhb6Wiri455ycA50SU="; sha256 = "sha256-r4IpmwZaRKzesvq7jAjCvfvZVmfcvwj23zMH3VnlC4I=";
}; };
cargoDeps = rustPlatform.fetchCargoTarball { cargoDeps = rustPlatform.fetchCargoTarball {
inherit src; inherit src;
name = "${pname}-${version}"; name = "${pname}-${version}";
hash = "sha256-97yyOZCw4bJMpbH2ubyNtAJa7EwJY0AnPWMiUUzIM0M="; hash = "sha256-ZbGLBjjAsdEhWK3/RS+yRI70xqV+5fzg76Y2Lip1m9A=";
}; };
nativeBuildInputs = [ rustPlatform.cargoSetupHook sphinx ]; nativeBuildInputs = [ rustPlatform.cargoSetupHook sphinx ];