summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorKei Yamashita <kei@openmailbox.org>2016-04-05 16:34:48 -0400
committerEfraim Flashner <efraim@flashner.co.il>2016-04-06 09:05:37 +0300
commit7407f7fef6b82adf89d28a4c7dc1e8ed1614f215 (patch)
tree1e4257046fe07ff37a4db16951ca0e2788df9017 /gnu
parentaae03c484f21832bf48ac579f91d7fa01aad9f88 (diff)
gnu: Add wmnd.
* gnu/packages/gnustep.scm (wmnd): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/gnustep.scm25
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/gnustep.scm b/gnu/packages/gnustep.scm
index ae97eb79366..8ca32e47cfc 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
127graph), and battery status (high - green, low - yellow, or critical - red).") 127graph), and battery status (high - green, low - yellow, or critical - red).")
128 (license gpl2))) 128 (license gpl2)))
129 129
130(define-public wmnd
131 (package
132 (name "wmnd")
133 (version "0.4.17")
134 (source (origin
135 (method url-fetch)
136 (uri (string-append
137 "http://www.thregr.org/~wavexx/software/wmnd/releases/"
138 name "-" version ".tar.gz"))
139 (sha256
140 (base32
141 "1amkbiwgr31gwkcp7wrjsr7aj1kns8bpmjpv70n86wb8v9mpm828"))))
142 (build-system gnu-build-system)
143 (inputs
144 `(("libx11" ,libx11)
145 ("libxext" ,libxext)
146 ("libxpm" ,libxpm)))
147 (native-inputs
148 `(("pkg-config" ,pkg-config)))
149 (home-page "http://www.thregr.org/~wavexx/software/wmnd/")
150 (synopsis "Network interface monitor")
151 (description
152 "WMND is a dockapp for monitoring network interfaces under WindowMaker and
153other compatible window managers.")
154 (license gpl2+)))