diff options
| author | Kei Yamashita <kei@openmailbox.org> | 2016-04-06 13:50:36 -0400 |
|---|---|---|
| committer | Leo Famulari <leo@famulari.name> | 2016-04-06 14:51:27 -0400 |
| commit | bd688698b682dcec68ed004f262e71850ee7b528 (patch) | |
| tree | 4bee46211658041e3a23bd75bcf20866fd3b7b95 /gnu | |
| parent | 4323a5f0fd50ac247c835757546e3496b91300db (diff) | |
gnu: Add wmcpuload.
* gnu/packages/gnustep.scm (wmcpuload): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/gnustep.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/gnustep.scm b/gnu/packages/gnustep.scm index 8ca32e47cfc..8c43085eaf8 100644 --- a/gnu/packages/gnustep.scm +++ b/gnu/packages/gnustep.scm | |||
| @@ -152,3 +152,32 @@ graph), and battery status (high - green, low - yellow, or critical - red).") | |||
| 152 | "WMND is a dockapp for monitoring network interfaces under WindowMaker and | 152 | "WMND is a dockapp for monitoring network interfaces under WindowMaker and |
| 153 | other compatible window managers.") | 153 | other compatible window managers.") |
| 154 | (license gpl2+))) | 154 | (license gpl2+))) |
| 155 | |||
| 156 | (define-public wmcpuload | ||
| 157 | (package | ||
| 158 | (name "wmcpuload") | ||
| 159 | (version "1.0.1") | ||
| 160 | (source (origin | ||
| 161 | (method url-fetch) | ||
| 162 | (uri (string-append | ||
| 163 | "mirror://debian/pool/main/w/wmcpuload/" | ||
| 164 | name "_" version ".orig.tar.gz")) | ||
| 165 | (sha256 | ||
| 166 | (base32 | ||
| 167 | "0irlns4cvxy2mnicx75bya166hdxq7h8bphds3ligijcl9fzgs6n")))) | ||
| 168 | (build-system gnu-build-system) | ||
| 169 | (inputs | ||
| 170 | `(("libx11" ,libx11) | ||
| 171 | ("libxext" ,libxext) | ||
| 172 | ("libxpm" ,libxpm))) | ||
| 173 | (native-inputs | ||
| 174 | `(("pkg-config" ,pkg-config))) | ||
| 175 | (home-page "http://windowmaker.org/dockapps/?name=wmcpuload") | ||
| 176 | (synopsis "Monitor CPU usage") | ||
| 177 | (description | ||
| 178 | "Wmcpuload displays the current CPU usage, expressed as a percentile and a | ||
| 179 | chart, and has an LCD look-alike user interface. The back-light may be turned | ||
| 180 | on and off by clicking the mouse button over the application. If the CPU usage | ||
| 181 | hits a certain threshold, an alarm-mode will alert you by turning back-light | ||
| 182 | on.") | ||
| 183 | (license gpl2+))) | ||
