bugstalker: 0.2.2 -> 0.3.0 (#399094)

This commit is contained in:
Pol Dellaiera
2025-05-09 06:42:49 +00:00
committed by GitHub

View File

@@ -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" ];
};
}
})