biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / misc / unused / default.nix
blobb644a762908e9ea90914a518c060205ac929f0c0
1 { lib, fetchFromGitHub, rustPlatform, cmake }:
2 rustPlatform.buildRustPackage rec {
3   pname = "unused";
4   version = "0.4.0";
6   src = fetchFromGitHub {
7     owner = "unused-code";
8     repo = pname;
9     rev = version;
10     sha256 = "sha256-+1M8dUfjjrT4llS0C6WYDyNxJ9QZ5s9v+W185TbgwMw=";
11   };
13   nativeBuildInputs = [ cmake ];
15   cargoSha256 = "sha256-hCtkR20+xs1UHZP7oJVpJACVGcMQLQmSS1QE2tmIVhs=";
17   meta = with lib; {
18     description = "A tool to identify potentially unused code";
19     homepage = "https://unused.codes";
20     license = licenses.mit;
21     maintainers = [ ];
22   };