procs: 0.9.9 -> 0.9.11

This commit is contained in:
Oleksii Filonenko 2020-02-18 03:23:19 +02:00
parent 11342b9ecf
commit 1e1ad96cf6
1 changed files with 4 additions and 7 deletions

View File

@ -2,26 +2,23 @@
rustPlatform.buildRustPackage rec {
pname = "procs";
version = "0.9.9";
version = "0.9.11";
src = fetchFromGitHub {
owner = "dalance";
repo = pname;
rev = "v${version}";
sha256 = "1dvwn991widribk563jn3461f1913bpga0yyfr5mnf4p4p8s59j6";
sha256 = "0nz06q1rdrqgprclgr30la2vp4bx0qgibh22vdlqpd4rzi3x0h2r";
};
# Delete this on next update; see #79975 for details
legacyCargoFetcher = true;
cargoSha256 = "11wv02nn6gp32zzcd6kmsh6ky0dzyk1qqhb5vxvmq2nxhxjlddwv";
cargoSha256 = "0hmz19ndfcg7bsrjk89ck9x99ibsvghqwmvgcd89vxmjr5h13rsg";
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 ];
license = licenses.mit;
maintainers = [ maintainers.dalance ];
platforms = with platforms; linux ++ darwin;
};