mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add sbcl-stumpwm-disk.
* gnu/packages/wm.scm: (sbcl-stumpwm-disk): New variable. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
This commit is contained in:
parent
77ee8af58c
commit
2e5ac371e7
1 changed files with 20 additions and 0 deletions
|
@ -2020,6 +2020,26 @@ (define-public sbcl-stumpwm-cpu
|
|||
(description "Modeline support for CPU info.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public sbcl-stumpwm-disk
|
||||
(package
|
||||
(inherit stumpwm-contrib)
|
||||
(name "sbcl-stumpwm-disk")
|
||||
(arguments
|
||||
'(#:asd-systems '("disk")
|
||||
#:tests? #f
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'unpack 'chdir
|
||||
(lambda _ (chdir "modeline/disk") #t)))))
|
||||
(inputs
|
||||
`(("stumpwm" ,stumpwm "lib")
|
||||
("cl-diskspace" ,sbcl-cl-diskspace)
|
||||
("cl-mount-info" ,sbcl-cl-mount-info)))
|
||||
(home-page "https://github.com/stumpwm/stumpwm-contrib")
|
||||
(synopsis "StumpWM modeline support to show disk usage")
|
||||
(description "StumpWM modeline support to show disk usage")
|
||||
(license (list license:gpl2+ license:gpl3+))))
|
||||
|
||||
(define-public sbcl-stumpwm-mem
|
||||
(package
|
||||
(inherit stumpwm-contrib)
|
||||
|
|
Loading…
Reference in a new issue