Unverified Commit 4afddae7 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

bugstalker: 0.2.2 -> 0.3.0 (#399094)

parents 7c8f7577 e25a1f4f
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -6,19 +6,19 @@
  libunwind,
}:

rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage (finalAttrs: {
  pname = "bugstalker";
  version = "0.2.2";
  version = "0.3.0";

  src = fetchFromGitHub {
    owner = "godzie44";
    repo = "BugStalker";
    rev = "v${version}";
    hash = "sha256-JacRt+zNwL7hdpdh5h9Mxztqi47f5eUbcZyx6ct/5Bc=";
    rev = "v${finalAttrs.version}";
    hash = "sha256-8Iqg2coFsPQY3ws5MEC1LhTu+Z1lXeI3ccjgoBS454o=";
  };

  useFetchCargoVendor = true;
  cargoHash = "sha256-w599KFLbyxFQzxIk6s9obPv804TLreOCMj/eApeSk7A=";
  cargoHash = "sha256-a5YI6bOo/rsi9hZO1BcVMjJtdrYq2aHqxtlO3F+P+8s=";

  buildInputs = [ libunwind ];

@@ -35,4 +35,4 @@ rustPlatform.buildRustPackage rec {
    mainProgram = "bs";
    platforms = [ "x86_64-linux" ];
  };
}
})