biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / deadnix / default.nix
blobdaea07c9ba3e5b96b73f5a6c6abff1ee34b0be44
1 { lib
2 , fetchFromGitHub
3 , rustPlatform
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "deadnix";
8   version = "1.2.1";
10   src = fetchFromGitHub {
11     owner = "astro";
12     repo = "deadnix";
13     rev = "v${version}";
14     hash = "sha256-xaaXGzTd+t1GjD2KpiS/c8acv6bXufv/lTN+ACRGVJw=";
15   };
17   cargoHash = "sha256-14onbdsactPJ27GTzG+culsdnwHvGdDXwBD9ZMq192Q=";
19   meta = with lib; {
20     description = "Find and remove unused code in .nix source files";
21     homepage = "https://github.com/astro/deadnix";
22     license = licenses.gpl3Only;
23     mainProgram = "deadnix";
24     maintainers = with maintainers; [ astro ];
25   };