ikill: init at 1.5.0

This commit is contained in:
zendo 2022-04-27 19:02:35 +08:00
parent 6e4f70e880
commit f4b4c51fce
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "ikill";
version = "1.5.0";
src = fetchFromGitHub {
owner = "pjmp";
repo = pname;
rev = "v${version}";
sha256 = "sha256-sxFuDHlrEO2/gA9I++yNAISvsF7wFjSMUI+diVM/+EI=";
};
cargoSha256 = "sha256-dJa+bXJTA2Jju1p29Fyj87N0Pr/l6XRr3QqemhD2BAA=";
meta = with lib; {
description = "Interactively kill running processes";
homepage = "https://github.com/pjmp/ikill";
maintainers = with maintainers; [ zendo ];
license = [ licenses.mit ];
platforms = platforms.linux;
};
}

View file

@ -17829,6 +17829,8 @@ with pkgs;
idasen = with python3Packages; toPythonApplication idasen;
ikill = callPackage ../tools/misc/ikill { };
ilbc = callPackage ../development/libraries/ilbc { };
ilmbase = callPackage ../development/libraries/ilmbase { };