Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / misc / kondo / default.nix
blob7c1f52f81eec005111d33b88e46ba1b1c35544ef
1 { lib, rustPlatform, fetchFromGitHub }:
3 rustPlatform.buildRustPackage rec {
4   pname = "kondo";
5   version = "0.7";
7   src = fetchFromGitHub {
8     owner = "tbillington";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-m00zRNnryty96+pmZ2/ZFk61vy7b0yiWpomWzAHUAMk=";
12   };
14   cargoHash = "sha256-hG4bvcGYNwdNX9Wsdw30i3a3Ttxud+quNZpolgVKXQE=";
16   meta = with lib; {
17     description = "Save disk space by cleaning unneeded files from software projects";
18     homepage = "https://github.com/tbillington/kondo";
19     license = licenses.mit;
20     maintainers = with maintainers; [ Br1ght0ne ];
21   };