* [bug#63454] [PATCH] gnu: Add tmux-plugin-mem-cpu-load.
@ 2023-05-11 21:47 Greg Hogan
2023-06-02 14:25 ` bug#63454: " Ludovic Courtès
0 siblings, 1 reply; 2+ messages in thread
From: Greg Hogan @ 2023-05-11 21:47 UTC (permalink / raw)
To: 63454; +Cc: Greg Hogan
* gnu/packages/tmux.scm (tmux-plugin-mem-cpu-load): New variable.
---
gnu/packages/tmux.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/tmux.scm b/gnu/packages/tmux.scm
index ec6bf78559..a0c877b795 100644
--- a/gnu/packages/tmux.scm
+++ b/gnu/packages/tmux.scm
@@ -30,6 +30,7 @@ (define-module (gnu packages tmux)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix git-download)
+ #:use-module (guix build-system cmake)
#:use-module (guix build-system gnu)
#:use-module (guix build-system trivial)
#:use-module (guix build-system python)
@@ -357,3 +358,30 @@ (define-public tmux-plugin-continuum
left it off the last time it was used.")
(home-page "https://github.com/tmux-plugins/tmux-continuum/")
(license license:expat))))
+
+(define-public tmux-plugin-mem-cpu-load
+ (package
+ (name "tmux-plugin-mem-cpu-load")
+ (version "3.7.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/thewtex/tmux-mem-cpu-load")
+ (commit (string-append "v" version))))
+ (sha256
+ (base32
+ "03bax7g9jlsci44ccs50drh617ya3fzvlplwyvxfyb7mgmh85r72"))
+ (file-name (git-file-name name version))))
+ (build-system cmake-build-system)
+ (synopsis "CPU, RAM, and load monitor for use with tmux")
+ (description "A simple, lightweight program for system monitoring in the
+status line of tmux.
+
+The memory monitor displays the used and available memory.
+
+The CPU usage monitor outputs a percent CPU usage over all processors. It also
+displays a textual bar graph of the current percent usage.
+
+The system load average is also displayed.")
+ (home-page "https://github.com/thewtex/tmux-mem-cpu-load")
+ (license license:asl2.0)))
--
2.40.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* bug#63454: [PATCH] gnu: Add tmux-plugin-mem-cpu-load.
2023-05-11 21:47 [bug#63454] [PATCH] gnu: Add tmux-plugin-mem-cpu-load Greg Hogan
@ 2023-06-02 14:25 ` Ludovic Courtès
0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2023-06-02 14:25 UTC (permalink / raw)
To: Greg Hogan; +Cc: 63454-done
[-- Attachment #1: Type: text/plain, Size: 152 bytes --]
Greg Hogan <code@greghogan.com> skribis:
> * gnu/packages/tmux.scm (tmux-plugin-mem-cpu-load): New variable.
Applied with the changes below, thanks!
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Type: text/x-patch, Size: 1044 bytes --]
diff --git a/gnu/packages/tmux.scm b/gnu/packages/tmux.scm
index d1587ed58e..55b7c7a498 100644
--- a/gnu/packages/tmux.scm
+++ b/gnu/packages/tmux.scm
@@ -334,13 +334,13 @@ (define-public tmux-plugin-mem-cpu-load
(file-name (git-file-name name version))))
(build-system cmake-build-system)
(synopsis "CPU, RAM, and load monitor for use with tmux")
- (description "A simple, lightweight program for system monitoring in the
-status line of tmux.
+ (description "This package provides a lightweight program for system
+monitoring in the status line of tmux.
The memory monitor displays the used and available memory.
-The CPU usage monitor outputs a percent CPU usage over all processors. It also
-displays a textual bar graph of the current percent usage.
+The CPU usage monitor outputs a percent CPU usage over all processors. It
+also displays a textual bar graph of the current percent usage.
The system load average is also displayed.")
(home-page "https://github.com/thewtex/tmux-mem-cpu-load")
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-06-02 14:27 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-11 21:47 [bug#63454] [PATCH] gnu: Add tmux-plugin-mem-cpu-load Greg Hogan
2023-06-02 14:25 ` bug#63454: " Ludovic Courtès
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.