mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 07:31:20 +00:00
32 lines
782 B
Nix
32 lines
782 B
Nix
{ stdenv, fetchFromGitHub, rustPlatform, python3, libxcb }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "kmon";
|
|
version = "1.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "orhun";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1l2zdp5f9spkfx1dhxyj32791kgvc8hqjr1kk75vds4c1wgwq8gk";
|
|
};
|
|
|
|
cargoSha256 = "08a7gr70a3rh7a52gglck16qlwngb6ap723lg3b3mxmkyigdf6i6";
|
|
|
|
nativeBuildInputs = [ python3 ];
|
|
|
|
buildInputs = [ libxcb ];
|
|
|
|
postInstall = ''
|
|
install -D man/kmon.8 -t $out/share/man/man8/
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|