diff options
author | ng0 <ng0@libertad.pw> | 2017-01-12 00:39:24 +0000 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2017-01-13 14:13:01 -0500 |
commit | c2b4c06391906011bcad95656648f2e19eddce46 (patch) | |
tree | bde5c125a2ca7cd6219f6eb33560e5e815060d2f | |
parent | f63abd0d10384522a0da14f0d0ad683a5ff83b33 (diff) | |
download | guix-c2b4c06391906011bcad95656648f2e19eddce46.tar guix-c2b4c06391906011bcad95656648f2e19eddce46.tar.gz |
gnu: Add spoon.
* gnu/packages/suckless.scm (spoon): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name>
-rw-r--r-- | gnu/packages/suckless.scm | 32 |
1 files changed, 31 insertions, 1 deletions
diff --git a/gnu/packages/suckless.scm b/gnu/packages/suckless.scm index bcfa16922b..c9465b9fea 100644 --- a/gnu/packages/suckless.scm +++ b/gnu/packages/suckless.scm @@ -36,7 +36,9 @@ #:use-module (gnu packages fonts) #:use-module (gnu packages pkg-config) #:use-module (gnu packages webkit) - #:use-module (gnu packages fontutils)) + #:use-module (gnu packages fontutils) + #:use-module (gnu packages mpd) + #:use-module (gnu packages linux)) (define-public dwm (package @@ -114,6 +116,34 @@ optimising the environment for the application in use and the task performed.") numbers of user-defined menu items efficiently.") (license license:x11))) +(define-public spoon + (package + (name "spoon") + (version "0.3") + (source + (origin + (method url-fetch) + (uri (string-append "http://dl.2f30.org/releases/" + name "-" version ".tar.gz")) + (sha256 + (base32 + "10c5i7ykpy7inzzfiw1dh0srpkljycr3blxhvd8160wsvplbws48")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; No tests + #:make-flags (list "CC=gcc" + (string-append "PREFIX=" %output)))) + (inputs + `(("libx11" ,libx11) + ("libxkbfile" ,libxkbfile) + ("alsa-lib" ,alsa-lib) + ("libmpdclient" ,libmpdclient))) + (home-page "http://git.2f30.org/spoon/") + (synopsis "Set dwm status") + (description + "Spoon can be used to set the dwm status.") + (license license:isc))) + (define-public slock (package (name "slock") |