nixpkgs/pkgs/tools/system/kmon/default.nix

32 lines
782 B
Nix
Raw Normal View History

2020-04-04 21:47:57 +01:00
{ stdenv, fetchFromGitHub, rustPlatform, python3, libxcb }:
rustPlatform.buildRustPackage rec {
pname = "kmon";
2020-08-11 05:42:03 +01:00
version = "1.4.0";
2020-04-04 21:47:57 +01:00
src = fetchFromGitHub {
owner = "orhun";
repo = pname;
rev = "v${version}";
2020-08-11 05:42:03 +01:00
sha256 = "1f9q4bc1kr1hgwf8byj13d6vsfs97wz7x10zwa82iv9b0wb1lr5w";
2020-04-04 21:47:57 +01:00
};
2020-08-11 05:42:03 +01:00
cargoSha256 = "1xy8rkba9idd0w4bnczmv4ll9awvar99vb7s0jd25fjbzqqlz820";
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-04-04 21:47:57 +01:00
meta = with stdenv.lib; {
description = "Linux Kernel Manager and Activity Monitor";
homepage = "https://github.com/orhun/kmon";
license = with licenses; [ gpl3 ];
platforms = platforms.linux;
maintainers = with maintainers; [ misuzu ];
};
}