3
0
Fork 0
forked from mirrors/nixpkgs
Nick Cao 2024-02-13 11:50:32 -05:00
parent 778402c6fe
commit 5d3edd72b3
No known key found for this signature in database
2 changed files with 5 additions and 1657 deletions

File diff suppressed because it is too large Load diff

View file

@ -27,17 +27,18 @@
stdenv.mkDerivation rec {
pname = "stratisd";
version = "3.6.4";
version = "3.6.5";
src = fetchFromGitHub {
owner = "stratis-storage";
repo = pname;
rev = "refs/tags/stratisd-v${version}";
hash = "sha256-0zSMFjAzTtTmpSCqlIq5GXk3/AhlhtECFZXmo6xcjWA=";
hash = "sha256-qgf5Q2MAY8PAYlplvTX+YjYfDFLfddpyIG4S/IIYbsU=";
};
cargoDeps = rustPlatform.importCargoLock {
lockFile = ./Cargo.lock;
cargoDeps = rustPlatform.fetchCargoTarball {
inherit pname version src;
hash = "sha256-Bu87uHEcMKB+TX8gWHD1vRazOkqJSZKQcsPiaKXrGFE=";
};
postPatch = ''