legcord: 1.0.6 -> 1.0.8 (#377219)
[NixPkgs.git] / pkgs / by-name / bu / bugstalker / package.nix
blob9ac50950fb398ebfe5f0195db0e1f10a765d9316
2   lib,
3   rustPlatform,
4   fetchFromGitHub,
5   pkg-config,
6   libunwind,
7 }:
9 rustPlatform.buildRustPackage rec {
10   pname = "bugstalker";
11   version = "0.2.2";
13   src = fetchFromGitHub {
14     owner = "godzie44";
15     repo = "BugStalker";
16     rev = "v${version}";
17     hash = "sha256-JacRt+zNwL7hdpdh5h9Mxztqi47f5eUbcZyx6ct/5Bc=";
18   };
20   cargoHash = "sha256-ljT7Dl9553sfZBqTe6gT3iYPH+D1Jp9ZsyGVQGOekxw=";
22   buildInputs = [ libunwind ];
24   nativeBuildInputs = [ pkg-config ];
26   # Tests require rustup.
27   doCheck = false;
29   meta = {
30     description = "Rust debugger for Linux x86-64";
31     homepage = "https://github.com/godzie44/BugStalker";
32     license = lib.licenses.mit;
33     maintainers = with lib.maintainers; [ jacg ];
34     mainProgram = "bs";
35     platforms = [ "x86_64-linux" ];
36   };