gnu: Add sbcl-stumpwm-pass.
* gnu/packages/wm.scm (sbcl-stumpwm-pass): New variable. Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>master
parent
fb5bb6bd9e
commit
fd65311cf4
|
@ -34,6 +34,7 @@
|
||||||
;;; Copyright © 2020 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
;;; Copyright © 2020 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
||||||
;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
|
;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
|
||||||
;;; Copyright © 2020 Boris A. Dekshteyn <harlequin78@gmail.com>
|
;;; Copyright © 2020 Boris A. Dekshteyn <harlequin78@gmail.com>
|
||||||
|
;;; Copyright © 2020 Marcin Karpezo <sirmacik@wioo.waw.pl>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -1730,6 +1731,36 @@ productive, customizable lisp based systems.")
|
||||||
rendering.")
|
rendering.")
|
||||||
(license (list license:gpl2+ license:gpl3+ license:bsd-2)))))
|
(license (list license:gpl2+ license:gpl3+ license:bsd-2)))))
|
||||||
|
|
||||||
|
(define-public sbcl-stumpwm-pass
|
||||||
|
(let ((commit "dd5b037923ec7d3cc27c55806bcec5a1b8cf4e91")
|
||||||
|
(revision "1"))
|
||||||
|
(package
|
||||||
|
(name "sbcl-pass")
|
||||||
|
(version (git-version "0.0.1" revision commit)) ;no upstream release
|
||||||
|
(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"))))
|
||||||
|
(inputs
|
||||||
|
`(("stumpwm" ,stumpwm "lib")))
|
||||||
|
(build-system asdf-build-system/sbcl)
|
||||||
|
(arguments
|
||||||
|
'(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'chdir
|
||||||
|
(lambda _
|
||||||
|
(chdir "util/pass"))))))
|
||||||
|
(home-page "https://github.com/stumpwm/stumpwm-contrib")
|
||||||
|
(synopsis "Integrate @code{pass} wih StumpWM")
|
||||||
|
(description "This package provides an interface which integrates
|
||||||
|
password-store into StumpWM.")
|
||||||
|
(license (list license:gpl2+ license:gpl3+ license:bsd-2)))))
|
||||||
|
|
||||||
(define-public sbcl-stumpwm-globalwindows
|
(define-public sbcl-stumpwm-globalwindows
|
||||||
(let ((commit "dd5b037923ec7d3cc27c55806bcec5a1b8cf4e91")
|
(let ((commit "dd5b037923ec7d3cc27c55806bcec5a1b8cf4e91")
|
||||||
(revision "1"))
|
(revision "1"))
|
||||||
|
|
Reference in New Issue