diff options
author | ng0 <[email protected]> | 2017-01-12 00:39:22 +0000 |
---|---|---|
committer | Leo Famulari <[email protected]> | 2017-01-13 14:12:57 -0500 |
commit | 4f5a0f32f4d826595705332ba54acb4bffee3c07 (patch) | |
tree | 1899aff514351ab5c7a11d3c7572eb31ebac3e1b /gnu/packages/suckless.scm | |
parent | fa3346b85265adf52ac985353dc7f67d71132939 (diff) |
gnu: Add xbattmon.
* gnu/packages/suckless.scm (xbattmon): New variable.
Signed-off-by: Leo Famulari <[email protected]>
Diffstat (limited to 'gnu/packages/suckless.scm')
-rw-r--r-- | gnu/packages/suckless.scm | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/gnu/packages/suckless.scm b/gnu/packages/suckless.scm index a00420312d..1d35e93893 100644 --- a/gnu/packages/suckless.scm +++ b/gnu/packages/suckless.scm @@ -2,7 +2,7 @@ ;;; Copyright © 2013 Cyril Roelandt <[email protected]> ;;; Copyright © 2015 Amirouche Boubekki <[email protected]> ;;; Copyright © 2016 Al McElrath <[email protected]> -;;; Copyright © 2016 ng0 <[email protected]> +;;; Copyright © 2016, 2017 ng0 <[email protected]> ;;; Copyright © 2015 Dmitry Bogatov <[email protected]> ;;; Copyright © 2015 Leo Famulari <[email protected]> ;;; Copyright © 2016 Eric Bavier <[email protected]> @@ -257,3 +257,28 @@ allows you to write down the presentation for a quick lightning talk within a few minutes.") (home-page "http://tools.suckless.org/sent") (license license:x11))) + +(define-public xbattmon + (package + (name "xbattmon") + (version "0.9") + (source + (origin + (method url-fetch) + (uri (string-append "http://dl.2f30.org/releases/" + name "-" version ".tar.gz")) + (sha256 + (base32 + "0n2rrjq03pgqrdkl7cz5snsfdanf4s58w9h6dbvnl7p8bbd3j2kn")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; No tests + #:make-flags (list "CC=gcc" + (string-append "PREFIX=" %output)))) + (inputs + `(("libx11" ,libx11))) + (home-page "http://git.2f30.org/xbattmon/") + (synopsis "Simple battery monitor for X") + (description + "Xbattmon is a simple battery monitor for X.") + (license license:isc))) |