biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / kondo / default.nix
blob03fc56ceb016e7c896132706dd32aaf50e6e9842
1 { lib, stdenv, rustPlatform, fetchFromGitHub, installShellFiles }:
3 rustPlatform.buildRustPackage rec {
4   pname = "kondo";
5   version = "0.8";
7   src = fetchFromGitHub {
8     owner = "tbillington";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-OqOmOujnyLTqwzNvLWudQi+xa5v37JTtyUXaItnpnfs=";
12   };
14   cargoHash = "sha256-WF4GHj/5VYrTUh1E3t29zbpSLjJ6g7RWVpLYqg9msZg=";
16   nativeBuildInputs = [ installShellFiles ];
18   postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
19     installShellCompletion --cmd kondo \
20       --bash <($out/bin/kondo --completions bash) \
21       --fish <($out/bin/kondo --completions fish) \
22       --zsh <($out/bin/kondo --completions zsh)
23   '';
25   meta = with lib; {
26     description = "Save disk space by cleaning unneeded files from software projects";
27     homepage = "https://github.com/tbillington/kondo";
28     license = licenses.mit;
29     maintainers = with maintainers; [ Br1ght0ne ];
30     mainProgram = "kondo";
31   };