process-viewer: 0.5.5 -> 0.5.6

This commit is contained in:
figsoda 2023-01-13 17:32:47 -05:00
parent de27be4093
commit 654a3bf049
2 changed files with 6 additions and 12 deletions

View file

@ -4,28 +4,24 @@
, pkg-config
, gtk4
, stdenv
, DiskArbitration
, Foundation
, IOKit
, darwin
}:
rustPlatform.buildRustPackage rec {
pname = "process-viewer";
version = "0.5.5";
version = "0.5.6";
src = fetchCrate {
inherit pname version;
sha256 = "sha256-MHVKjbD1/h7G94x6dpyRT/BPWQVUFurW7EvAUJ2xZeU=";
sha256 = "sha256-ELASfcXNhUCE/mhPKBHA78liFMbcT9RB/aoLt4ZRPa0=";
};
cargoSha256 = "sha256-NkJjwB4rBV4hFRwYHILMET8o4x1+95sVsFqNaVN8tMg=";
cargoSha256 = "sha256-K2kyZwKRALh9ImPngijgpoHyLS+c5sDYviN74JxhJLM=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ gtk4 ] ++ lib.optionals stdenv.isDarwin [
DiskArbitration
Foundation
IOKit
darwin.apple_sdk_11_0.frameworks.Foundation
];
postInstall = ''

View file

@ -18044,9 +18044,7 @@ with pkgs;
process-compose = callPackage ../applications/misc/process-compose { };
process-viewer = callPackage ../applications/misc/process-viewer {
inherit (darwin.apple_sdk.frameworks) DiskArbitration Foundation IOKit;
};
process-viewer = callPackage ../applications/misc/process-viewer { };
procodile = callPackage ../tools/system/procodile { };