biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / lurk / default.nix
bloba9412f2ca6eba2f2f9140bebc6e15ad74e338bc6
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "lurk";
8   version = "0.3.4";
10   src = fetchFromGitHub {
11     owner = "jakwai01";
12     repo = pname;
13     rev = "v${version}";
14     hash = "sha256-7Yi77IsP/tmzrTvBVgIj2+fOXYKCT59pILeEuGuk4Y4=";
15   };
17   cargoHash = "sha256-Cvtg9msoYkIIlaUw4hxWy2wSrE1uORR/2R2Geq4SI4w=";
19   meta = with lib; {
20     description = "A simple and pretty alternative to strace";
21     mainProgram = "lurk";
22     homepage = "https://github.com/jakwai01/lurk";
23     changelog = "https://github.com/jakwai01/lurk/releases/tag/${src.rev}";
24     license = licenses.agpl3Only;
25     maintainers = with maintainers; [ figsoda ];
26     platforms = [ "i686-linux" "x86_64-linux" ];
27   };