3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/admin/procs/default.nix

35 lines
1,018 B
Nix
Raw Normal View History

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";
version = "0.11.12";
2019-05-08 18:01:20 +01:00
src = fetchFromGitHub {
owner = "dalance";
repo = pname;
rev = "v${version}";
sha256 = "sha256-O2jH56l4SCYF+9oNhviJdybKmUo/iuR5mOOugc4Hw6Y=";
2019-05-08 18:01:20 +01:00
};
cargoSha256 = "sha256-MrYOOAFj+mVm/EPx4CGQI7YhxPcF0jBgnnJk/DV2ojk=";
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
2021-09-04 08:00:00 +01:00
$out/bin/procs --completion $shell
2021-01-28 16:17:09 +00:00
done
2021-09-04 08:00:00 +01:00
installShellCompletion procs.{bash,fish} --zsh _procs
2021-01-28 16:17:09 +00:00
'';
2021-03-25 08:39:32 +00:00
buildInputs = lib.optionals stdenv.isDarwin [ Security libiconv ];
2019-05-08 18:01:20 +01: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";
2021-09-04 08:00:00 +01:00
changelog = "https://github.com/dalance/procs/raw/v${version}/CHANGELOG.md";
2020-02-18 01:23:19 +00:00
license = licenses.mit;
maintainers = with maintainers; [ dalance Br1ght0ne SuperSandro2000 ];
2019-05-08 18:01:20 +01:00
};
}