bugstalker: 0.2.2 -> 0.3.0

Diff: https://github.com/godzie44/BugStalker/compare/v0.2.2...v0.3.0
This commit is contained in:
emaryn 2025-04-26 02:24:20 +08:00
parent c7e30d2e0b
commit e25a1f4f1d

View file

@ -6,19 +6,19 @@
libunwind, libunwind,
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage (finalAttrs: {
pname = "bugstalker"; pname = "bugstalker";
version = "0.2.2"; version = "0.3.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "godzie44"; owner = "godzie44";
repo = "BugStalker"; repo = "BugStalker";
rev = "v${version}"; rev = "v${finalAttrs.version}";
hash = "sha256-JacRt+zNwL7hdpdh5h9Mxztqi47f5eUbcZyx6ct/5Bc="; hash = "sha256-8Iqg2coFsPQY3ws5MEC1LhTu+Z1lXeI3ccjgoBS454o=";
}; };
useFetchCargoVendor = true; useFetchCargoVendor = true;
cargoHash = "sha256-w599KFLbyxFQzxIk6s9obPv804TLreOCMj/eApeSk7A="; cargoHash = "sha256-a5YI6bOo/rsi9hZO1BcVMjJtdrYq2aHqxtlO3F+P+8s=";
buildInputs = [ libunwind ]; buildInputs = [ libunwind ];
@ -35,4 +35,4 @@ rustPlatform.buildRustPackage rec {
mainProgram = "bs"; mainProgram = "bs";
platforms = [ "x86_64-linux" ]; platforms = [ "x86_64-linux" ];
}; };
} })