biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / killport / default.nix
blob24f66a8b497fad977b2356b5fd3a3c339de130ad
1 { lib
2 , rustPlatform
3 , fetchCrate
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "killport";
8   version = "0.9.2";
10   src = fetchCrate {
11     inherit pname version;
12     hash = "sha256-eyRI4ZVp9HPMvpzyV9sQdh2r966pCdyUPnEhxGkzH3Q=";
13   };
15   cargoHash = "sha256-QQ43dT9BTu7qCzpnTGKzlVL6jKDXofXStYWYNLHSuVs=";
17   nativeBuildInputs = [ rustPlatform.bindgenHook ];
19   meta = with lib; {
20     description = "Command-line tool to easily kill processes running on a specified port";
21     homepage = "https://github.com/jkfran/killport";
22     license = licenses.mit;
23     maintainers = with maintainers; [ sno2wman ];
24     mainProgram = "killport";
25   };