2022-10-06 05:37:35 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, rustPlatform, installShellFiles, Security, libiconv, Libsystem }:
|
2019-05-08 17:01:20 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "procs";
|
2022-10-18 19:05:41 +00:00
|
|
|
version = "0.13.3";
|
2019-05-08 17:01:20 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dalance";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-10-18 19:05:41 +00:00
|
|
|
sha256 = "sha256-JVxlfwCA+EetV4QYB6uEKe1yWt3sCvMPZwyIr6Td7Bw=";
|
2019-05-08 17:01:20 +00:00
|
|
|
};
|
|
|
|
|
2022-10-18 19:05:41 +00:00
|
|
|
cargoSha256 = "sha256-uUxwQIQTzQkKgR4F4sf4J1G2LaXiGbIvA6VM55zLK2E=";
|
2019-05-08 17:01:20 +00:00
|
|
|
|
2021-01-28 16:17:09 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
2022-05-30 12:12:40 +00:00
|
|
|
LIBCLANG_PATH = lib.optionals stdenv.isDarwin "${stdenv.cc.cc.lib}/lib/";
|
|
|
|
|
2021-01-28 16:17:09 +00:00
|
|
|
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
|
|
|
'';
|
|
|
|
|
2022-10-06 05:37:35 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ Security libiconv Libsystem ];
|
2019-05-08 17:01:20 +00:00
|
|
|
|
2021-01-11 07:54:33 +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;
|
2022-05-30 12:12:40 +00:00
|
|
|
maintainers = with maintainers; [ Br1ght0ne SuperSandro2000 sciencentistguy ];
|
2019-05-08 17:01:20 +00:00
|
|
|
};
|
|
|
|
}
|