uutils-coreutils: 0.0.13 -> 0.0.14

This commit is contained in:
PedroHLC ☭ 2022-05-24 14:20:59 -03:00
parent 05c89fa88e
commit a8d4442839
No known key found for this signature in database
GPG key ID: F5BFC029DA9A28CE

View file

@ -12,19 +12,19 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "uutils-coreutils"; pname = "uutils-coreutils";
version = "0.0.13"; version = "0.0.14";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "uutils"; owner = "uutils";
repo = "coreutils"; repo = "coreutils";
rev = version; rev = version;
sha256 = "sha256-Fb5X3xpve6pRRlHSzevBvOdRpR0MrHzcOB83C15//zg="; sha256 = "sha256-BLNWtf5RLeHQGH97M6vfZCXvCdPxUAU+hY1PBsGZ8jU=";
}; };
cargoDeps = rustPlatform.fetchCargoTarball { cargoDeps = rustPlatform.fetchCargoTarball {
inherit src; inherit src;
name = "${pname}-${version}"; name = "${pname}-${version}";
hash = "sha256-pSEo1XW/zywFoqt8vx55HS28CVbEC6/858ANknt1FPU="; hash = "sha256-lHyIrzf286Hjef6cqy3tJF6U2OnnokGXcH4yMotZay4=";
}; };
nativeBuildInputs = [ rustPlatform.cargoSetupHook sphinx ]; nativeBuildInputs = [ rustPlatform.cargoSetupHook sphinx ];