3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/system/kmon/default.nix

32 lines
772 B
Nix
Raw Normal View History

2020-10-11 00:38:58 +01:00
{ lib, fetchFromGitHub, rustPlatform, python3, libxcb }:
2020-04-04 21:47:57 +01:00
rustPlatform.buildRustPackage rec {
pname = "kmon";
2020-10-11 00:38:58 +01:00
version = "1.5.1";
2020-04-04 21:47:57 +01:00
src = fetchFromGitHub {
owner = "orhun";
repo = pname;
rev = "v${version}";
2020-10-11 00:38:58 +01:00
sha256 = "0j6w4rg2gybcy1cv812qixravy0z0xpp33snrng11q802zq3mkmq";
2020-04-04 21:47:57 +01:00
};
2020-10-11 00:38:58 +01:00
cargoSha256 = "0x5s3yi5bv3h1k54lrgcvkpdkmfphvwhnrmk5lmk6xd9pxfh218p";
2020-04-04 21:47:57 +01:00
nativeBuildInputs = [ python3 ];
buildInputs = [ libxcb ];
2020-04-08 16:44:50 +01:00
postInstall = ''
install -D man/kmon.8 -t $out/share/man/man8/
'';
2020-10-11 00:38:58 +01:00
meta = with lib; {
2020-04-04 21:47:57 +01:00
description = "Linux Kernel Manager and Activity Monitor";
homepage = "https://github.com/orhun/kmon";
license = with licenses; [ gpl3 ];
platforms = platforms.linux;
maintainers = with maintainers; [ misuzu ];
};
}