2021-03-25 09:39:32 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, rustPlatform, installShellFiles, Security, libiconv }:
|
2019-05-08 19:01:20 +02:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "procs";
|
2021-07-20 14:03:01 +02:00
|
|
|
version = "0.11.9";
|
2019-05-08 19:01:20 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dalance";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-07-20 14:03:01 +02:00
|
|
|
sha256 = "sha256-zqRjMCyFT7knI1/zH+RF1pA/OKaDhJZLLjWJhfmqopE=";
|
2019-05-08 19:01:20 +02:00
|
|
|
};
|
|
|
|
|
2021-07-20 14:03:01 +02:00
|
|
|
cargoSha256 = "sha256-W/ZMDbHC1VsllTSxCt77n4eb8Xgfj9YNx5NG5u+D+qA=";
|
2019-05-08 19:01:20 +02:00
|
|
|
|
2021-01-28 17:17:09 +01:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
for shell in bash fish zsh; do
|
2021-09-04 09:00:00 +02:00
|
|
|
$out/bin/procs --completion $shell
|
2021-01-28 17:17:09 +01:00
|
|
|
done
|
2021-09-04 09:00:00 +02:00
|
|
|
installShellCompletion procs.{bash,fish} --zsh _procs
|
2021-01-28 17:17:09 +01:00
|
|
|
'';
|
|
|
|
|
2021-03-25 09:39:32 +01:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ Security libiconv ];
|
2019-05-08 19:01:20 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2019-05-08 19:01:20 +02:00
|
|
|
description = "A modern replacement for ps written in Rust";
|
|
|
|
homepage = "https://github.com/dalance/procs";
|
2020-02-18 02:23:19 +01:00
|
|
|
license = licenses.mit;
|
2020-11-17 12:02:06 +01:00
|
|
|
maintainers = with maintainers; [ dalance Br1ght0ne ];
|
2019-05-08 19:01:20 +02:00
|
|
|
platforms = with platforms; linux ++ darwin;
|
|
|
|
};
|
|
|
|
}
|