3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/misc/ikill/default.nix

24 lines
599 B
Nix
Raw Normal View History

2022-04-27 12:02:35 +01:00
{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "ikill";
2022-11-22 05:49:57 +00:00
version = "1.6.0";
2022-04-27 12:02:35 +01: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 12:02:35 +01:00
};
2022-11-22 05:49:57 +00:00
cargoSha256 = "sha256-zKa2FP0lBS2XjgPWfyPZ60aHyeAe0uNIFbmuX4Uo1rA=";
2022-04-27 12:02:35 +01: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;
};
}