uutils-coreutils: 0.0.6 -> 0.0.7

This commit is contained in:
06kellyjac 2021-07-12 20:28:02 +01:00
parent 061afaf4ed
commit 2a3b8e76e5

View file

@ -12,25 +12,19 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "uutils-coreutils"; pname = "uutils-coreutils";
version = "0.0.6"; version = "0.0.7";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "uutils"; owner = "uutils";
repo = "coreutils"; repo = "coreutils";
rev = version; 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 { cargoDeps = rustPlatform.fetchCargoTarball {
inherit src; inherit src;
name = "${pname}-${version}"; name = "${pname}-${version}";
hash = "sha256-92BHPSVIPZLn399AcaJJjRq2WkxzDm8knKN3FIdAxAA="; hash = "sha256-bfwWyeuslLjh4OCt+H8CM8hCrRFqlibOS8gS64lysa0=";
}; };
nativeBuildInputs = [ rustPlatform.cargoSetupHook sphinx ]; nativeBuildInputs = [ rustPlatform.cargoSetupHook sphinx ];