diff options
| author | Oleg Pykhalov <go.wigust@gmail.com> | 2020-05-23 15:13:20 +0300 |
|---|---|---|
| committer | Oleg Pykhalov <go.wigust@gmail.com> | 2020-05-23 15:13:20 +0300 |
| commit | f0ad84af9c87099a6eb20611171d0d67113ba70e (patch) | |
| tree | 3ed8408a55fa414c80ad1dcc72e4a1a6bb30c961 | |
| parent | gnu: Add sbcl-clx-xembed. (diff) | |
| download | guix-wigust-f0ad84af9c87099a6eb20611171d0d67113ba70e.tar.gz | |
gnu: Add sbcl-stumpwm-checkout-stumptray.
* guix/wigust/packages/lisp.scm (sbcl-stumpwm-checkout-stumptray): New variable.
| -rw-r--r-- | guix/wigust/packages/lisp.scm | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/guix/wigust/packages/lisp.scm b/guix/wigust/packages/lisp.scm index 19005ec..b613aeb 100644 --- a/guix/wigust/packages/lisp.scm +++ b/guix/wigust/packages/lisp.scm @@ -152,3 +152,34 @@ (description "This package provides an implementation of the XEMBED protocol that integrates with CLX.") (license license:expat)))) + +(define-public sbcl-stumpwm-checkout-stumptray + (let ((commit "dd5b037923ec7d3cc27c55806bcec5a1b8cf4e91") + (revision "1")) + (package + (name "sbcl-stumptray") + (version (git-version "0.0.1" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/stumpwm/stumpwm-contrib.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ahxdj9f884afpzxczx6mx7l4nwg4kw6afqaq7lwhf7lxcwylldn")))) + (build-system asdf-build-system/sbcl) + (inputs + `(("stumpwm" ,stumpwm-checkout "lib") + ("alexandria" ,sbcl-alexandria) + ("xembed" ,sbcl-clx-xembed))) + (arguments + '(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'chdir + (lambda _ + (chdir "modeline/stumptray")))))) + (home-page "https://github.com/stumpwm/stumpwm-contrib") + (synopsis "") + (description "") + (license #f)))) |
