Unverified Commit 91bfad07 authored by figsoda's avatar figsoda Committed by GitHub
Browse files

Merge pull request #232812 from NickCao/stratis

stratis-cli: 3.5.1 -> 3.5.2,  stratisd: 3.5.4 -> 3.5.5
parents 16b6b273 ac62b288
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -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 −0

File added.

Preview size limit exceeded, changes collapsed.

+7 −5
Original line number Diff line number Diff line
@@ -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 = ''