tmux-mem-cpu-load: init at 3.4.0 (#111609)

This commit is contained in:
Tom McLaughlin 2021-02-02 13:39:14 -08:00 committed by GitHub
parent 8ac9443503
commit 1d4dec4021
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

View 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;
};
}

View file

@ -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 { });