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