kmon: init at 1.0.0
This commit is contained in:
parent
3420bd63b9
commit
220ce926b3
27
pkgs/tools/system/kmon/default.nix
Normal file
27
pkgs/tools/system/kmon/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, rustPlatform, python3, libxcb }:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "kmon";
|
||||||
|
version = "1.0.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "orhun";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1zsgyigr6k0zqhhv0icpvvfij7r7fj0l2f77i5zh1vyb89pni50h";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "15lj6ryll24xdmv8gil04prhcri2d3b1rxqjrwx70blfrlvvhxa8";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ python3 ];
|
||||||
|
|
||||||
|
buildInputs = [ libxcb ];
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -25373,6 +25373,8 @@ in
|
|||||||
|
|
||||||
keynav = callPackage ../tools/X11/keynav { };
|
keynav = callPackage ../tools/X11/keynav { };
|
||||||
|
|
||||||
|
kmon = callPackage ../tools/system/kmon { };
|
||||||
|
|
||||||
kompose = callPackage ../applications/networking/cluster/kompose { };
|
kompose = callPackage ../applications/networking/cluster/kompose { };
|
||||||
|
|
||||||
kontemplate = callPackage ../applications/networking/cluster/kontemplate { };
|
kontemplate = callPackage ../applications/networking/cluster/kontemplate { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user