2021-02-05 17:12:51 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, cmake }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "tmux-mem-cpu-load";
|
2023-04-29 16:46:19 +00:00
|
|
|
version = "3.7.0";
|
2021-02-05 17:12:51 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "thewtex";
|
|
|
|
repo = "tmux-mem-cpu-load";
|
|
|
|
rev = "v${version}";
|
2023-04-29 16:46:19 +00:00
|
|
|
sha256 = "sha256-4uSCYH31LO/69pxeur8byp9gYG6gaMYIiUxTmd7pag0=";
|
2021-02-05 17:12:51 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "CPU, RAM, and load monitor for use with tmux";
|
2021-08-18 13:19:15 +00:00
|
|
|
homepage = "https://github.com/thewtex/tmux-mem-cpu-load";
|
2021-02-05 17:12:51 +00:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ thomasjm ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|