2022-04-27 11:02:35 +00:00
|
|
|
{ lib, fetchFromGitHub, rustPlatform }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "ikill";
|
2022-11-22 05:49:57 +00:00
|
|
|
version = "1.6.0";
|
2022-04-27 11:02:35 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "pjmp";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-11-22 05:49:57 +00:00
|
|
|
sha256 = "sha256-hOQBBwxkVnTkAZJi84qArwAo54fMC0zS+IeYMV04kUs=";
|
2022-04-27 11:02:35 +00:00
|
|
|
};
|
|
|
|
|
2024-07-02 09:04:59 +00:00
|
|
|
cargoHash = "sha256-zKa2FP0lBS2XjgPWfyPZ60aHyeAe0uNIFbmuX4Uo1rA=";
|
2022-04-27 11:02:35 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Interactively kill running processes";
|
|
|
|
homepage = "https://github.com/pjmp/ikill";
|
|
|
|
maintainers = with maintainers; [ zendo ];
|
|
|
|
license = [ licenses.mit ];
|
|
|
|
platforms = platforms.linux;
|
2023-11-27 01:17:53 +00:00
|
|
|
mainProgram = "ikill";
|
2022-04-27 11:02:35 +00:00
|
|
|
};
|
|
|
|
}
|