nixpkgs/pkgs/tools/admin/procs/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
1017 B
Nix
Raw Normal View History

2021-03-25 08:39:32 +00:00
{ lib, stdenv, fetchFromGitHub, rustPlatform, installShellFiles, Security, libiconv }:
2019-05-08 17:01:20 +00:00
rustPlatform.buildRustPackage rec {
pname = "procs";
2022-01-27 12:55:22 +00:00
version = "0.12.1";
2019-05-08 17:01:20 +00:00
src = fetchFromGitHub {
owner = "dalance";
repo = pname;
rev = "v${version}";
2022-01-27 12:55:22 +00:00
sha256 = "sha256-hJe9JAUZZY2fx4I6+pVg1BYwzZrUWCkqPvQUT2OQXDo=";
2019-05-08 17:01:20 +00:00
};
2022-01-27 12:55:22 +00:00
cargoSha256 = "sha256-BChYzSnM9jnLioRhRDez6XOjJwGrU+giV4Ld3rp/57M=";
2019-05-08 17:01:20 +00:00
2021-01-28 16:17:09 +00:00
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
for shell in bash fish zsh; do
2021-09-04 07:00:00 +00:00
$out/bin/procs --completion $shell
2021-01-28 16:17:09 +00:00
done
2021-09-04 07:00:00 +00: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 17:01:20 +00:00
meta = with lib; {
2019-05-08 17:01:20 +00:00
description = "A modern replacement for ps written in Rust";
homepage = "https://github.com/dalance/procs";
2021-09-04 07:00:00 +00: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 17:01:20 +00:00
};
}