diff options
author | Kei Yamashita <kei@openmailbox.org> | 2016-04-05 16:34:48 -0400 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2016-04-06 09:05:37 +0300 |
commit | 7407f7fef6b82adf89d28a4c7dc1e8ed1614f215 (patch) | |
tree | 1e4257046fe07ff37a4db16951ca0e2788df9017 /gnu/packages/gnustep.scm | |
parent | aae03c484f21832bf48ac579f91d7fa01aad9f88 (diff) | |
download | guix-7407f7fef6b82adf89d28a4c7dc1e8ed1614f215.tar guix-7407f7fef6b82adf89d28a4c7dc1e8ed1614f215.tar.gz |
gnu: Add wmnd.
* gnu/packages/gnustep.scm (wmnd): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu/packages/gnustep.scm')
-rw-r--r-- | gnu/packages/gnustep.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/gnustep.scm b/gnu/packages/gnustep.scm index ae97eb7936..8ca32e47cf 100644 --- a/gnu/packages/gnustep.scm +++ b/gnu/packages/gnustep.scm @@ -127,3 +127,28 @@ of battery life remain, battery life remaining (with both a percentage and a graph), and battery status (high - green, low - yellow, or critical - red).") (license gpl2))) +(define-public wmnd + (package + (name "wmnd") + (version "0.4.17") + (source (origin + (method url-fetch) + (uri (string-append + "http://www.thregr.org/~wavexx/software/wmnd/releases/" + name "-" version ".tar.gz")) + (sha256 + (base32 + "1amkbiwgr31gwkcp7wrjsr7aj1kns8bpmjpv70n86wb8v9mpm828")))) + (build-system gnu-build-system) + (inputs + `(("libx11" ,libx11) + ("libxext" ,libxext) + ("libxpm" ,libxpm))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (home-page "http://www.thregr.org/~wavexx/software/wmnd/") + (synopsis "Network interface monitor") + (description + "WMND is a dockapp for monitoring network interfaces under WindowMaker and +other compatible window managers.") + (license gpl2+))) |