nixpkgs/pkgs/tools/misc/ikill/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
599 B
Nix
Raw Normal View History

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
};
2022-11-22 05:49:57 +00:00
cargoSha256 = "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;
};
}