biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / ikill / default.nix
blob7b6ac685c50eea6c21a1ec74e8291ac2aca3577a
1 { lib, fetchFromGitHub, rustPlatform }:
3 rustPlatform.buildRustPackage rec {
4   pname = "ikill";
5   version = "1.6.0";
7   src = fetchFromGitHub {
8     owner = "pjmp";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-hOQBBwxkVnTkAZJi84qArwAo54fMC0zS+IeYMV04kUs=";
12   };
14   cargoHash = "sha256-zKa2FP0lBS2XjgPWfyPZ60aHyeAe0uNIFbmuX4Uo1rA=";
16   meta = with lib; {
17     description = "Interactively kill running processes";
18     homepage = "https://github.com/pjmp/ikill";
19     maintainers = with maintainers; [ zendo ];
20     license = [ licenses.mit ];
21     platforms = platforms.linux;
22     mainProgram = "ikill";
23   };