tmux-mem-cpu-load: init at 3.4.0 (#111609)
This commit is contained in:
parent
8ac9443503
commit
1d4dec4021
23
pkgs/tools/misc/tmux-mem-cpu-load/default.nix
Normal file
23
pkgs/tools/misc/tmux-mem-cpu-load/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, lib, fetchFromGitHub, cmake }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "tmux-mem-cpu-load";
|
||||
version = "3.4.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "thewtex";
|
||||
repo = "tmux-mem-cpu-load";
|
||||
rev = "v${version}";
|
||||
sha256 = "1ybj513l4953jhayrzb47dlh4yv9bkvs0q1lfvky17v9fdkxgn2j";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "CPU, RAM, and load monitor for use with tmux";
|
||||
homepage = https://github.com/thewtex/tmux-mem-cpu-load;
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ thomasjm ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
@ -8339,6 +8339,8 @@ in
|
||||
|
||||
tmuxinator = callPackage ../tools/misc/tmuxinator { };
|
||||
|
||||
tmux-mem-cpu-load = callPackage ../tools/misc/tmux-mem-cpu-load { };
|
||||
|
||||
tmux-xpanes = callPackage ../tools/misc/tmux-xpanes { };
|
||||
|
||||
tmuxPlugins = recurseIntoAttrs (callPackage ../misc/tmux-plugins { });
|
||||
|
Loading…
Reference in New Issue
Block a user