Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
36 lines
862 B
Nix
36 lines
862 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
testers,
|
|
pik,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "pik";
|
|
version = "0.26.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jacek-kurlit";
|
|
repo = "pik";
|
|
rev = version;
|
|
hash = "sha256-qpSQ920nAWqta3aPxl9dVHFRBtgETtUye+D2yU33ZFw=";
|
|
};
|
|
|
|
cargoHash = "sha256-5/ympn4z1R7dYG4jR+0zEgvaYr0AbcIbUIrMac5Tj7A=";
|
|
|
|
passthru.tests.version = testers.testVersion { package = pik; };
|
|
|
|
meta = {
|
|
description = "Process Interactive Kill";
|
|
longDescription = ''
|
|
Process Interactive Kill is a command line tool that helps to find and kill process.
|
|
It works like pkill command but search is interactive.
|
|
'';
|
|
homepage = "https://github.com/jacek-kurlit/pik";
|
|
license = with lib.licenses; [ mit ];
|
|
maintainers = with lib.maintainers; [ bew ];
|
|
mainProgram = "pik";
|
|
};
|
|
}
|