2020-01-26 09:20:00 +00:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform, Security }:
|
2019-05-08 18:01:20 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "procs";
|
2020-02-18 01:23:19 +00:00
|
|
|
version = "0.9.11";
|
2019-05-08 18:01:20 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "dalance";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2020-02-18 01:23:19 +00:00
|
|
|
sha256 = "0nz06q1rdrqgprclgr30la2vp4bx0qgibh22vdlqpd4rzi3x0h2r";
|
2019-05-08 18:01:20 +01:00
|
|
|
};
|
|
|
|
|
2020-02-18 01:23:19 +00:00
|
|
|
cargoSha256 = "0hmz19ndfcg7bsrjk89ck9x99ibsvghqwmvgcd89vxmjr5h13rsg";
|
2019-05-08 18:01:20 +01:00
|
|
|
|
|
|
|
buildInputs = stdenv.lib.optional stdenv.isDarwin Security;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
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-02-18 01:25:35 +00:00
|
|
|
maintainers = with maintainers; [ dalance filalex77 ];
|
2019-05-08 18:01:20 +01:00
|
|
|
platforms = with platforms; linux ++ darwin;
|
|
|
|
};
|
|
|
|
}
|