Merge pull request #232812 from NickCao/stratis

stratis-cli: 3.5.1 -> 3.5.2,  stratisd: 3.5.4 -> 3.5.5
This commit is contained in:
figsoda 2023-05-19 10:08:27 -04:00 committed by GitHub
commit 91bfad070b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 1718 additions and 7 deletions

View file

@ -6,13 +6,14 @@
python3Packages.buildPythonApplication rec {
pname = "stratis-cli";
version = "3.5.1";
version = "3.5.2";
format = "pyproject";
src = fetchFromGitHub {
owner = "stratis-storage";
repo = pname;
rev = "v${version}";
hash = "sha256-aDWHXKmlKKJo+ckW1vA0bm4q5z2g/Zx5frVDR6Kwgjw=";
hash = "sha256-qQufRG+7Z7xUCRg2/aIzG8FH1j4PFFThS2ljwrT285s=";
};
propagatedBuildInputs = with python3Packages; [

1708
pkgs/tools/filesystems/stratisd/Cargo.lock generated Normal file

File diff suppressed because it is too large Load diff

View file

@ -28,18 +28,20 @@
stdenv.mkDerivation rec {
pname = "stratisd";
version = "3.5.4";
version = "3.5.5";
src = fetchFromGitHub {
owner = "stratis-storage";
repo = pname;
rev = "v${version}";
hash = "sha256-V/1gNgjunT11ErXWIa5hDp2+onPCTequCswwXWD5+9E=";
hash = "sha256-d8vGwxvfNbN234rZJm4nmsDqvp8OVGEvazM6hI7BGvs=";
};
cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
hash = "sha256-RljuLL8tep42KNGVsS5CxI7xuhxEjRZ90jVn3jUhVYM=";
cargoDeps = rustPlatform.importCargoLock {
lockFile = ./Cargo.lock;
outputHashes = {
"loopdev-0.4.0" = "sha256-nV52zjsg5u6++J8CdN2phii8AwjHg1uap2lt+U8obDQ=";
};
};
postPatch = ''