procs: init at 0.8.5
This commit is contained in:
parent
a29912c701
commit
dd3b53ce79
27
pkgs/tools/admin/procs/default.nix
Normal file
27
pkgs/tools/admin/procs/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, rustPlatform
|
||||||
|
, Security
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "procs";
|
||||||
|
version = "0.8.5";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "dalance";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0ihww2sm9hnh748723lr1cxw9zyi9nfxbbiij5a465mypa2p7w0v";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "1aq2nhspb9kp9mzj5550xph09qvd0ahlw246hcx2mqkr4frh64x0";
|
||||||
|
|
||||||
|
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";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = [ maintainers.dalance ];
|
||||||
|
platforms = with platforms; linux ++ darwin;
|
||||||
|
};
|
||||||
|
}
|
@ -1739,6 +1739,10 @@ in
|
|||||||
|
|
||||||
pyznap = python3Packages.callPackage ../tools/backup/pyznap {};
|
pyznap = python3Packages.callPackage ../tools/backup/pyznap {};
|
||||||
|
|
||||||
|
procs = callPackage ../tools/admin/procs {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
|
};
|
||||||
|
|
||||||
scour = with python3Packages; toPythonApplication scour;
|
scour = with python3Packages; toPythonApplication scour;
|
||||||
|
|
||||||
s2png = callPackage ../tools/graphics/s2png { };
|
s2png = callPackage ../tools/graphics/s2png { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user