mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-24 11:39:46 -05:00
gnu: Add rofi-wayland.
* gnu/packages/xdisorg.scm (rofi-wayland): New variable. Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
fc7c8fe063
commit
04b5450ad8
1 changed files with 24 additions and 0 deletions
|
@ -1873,6 +1873,30 @@ (define-public rofi
|
||||||
by name.")
|
by name.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rofi-wayland
|
||||||
|
(let ((base rofi))
|
||||||
|
(package
|
||||||
|
(inherit rofi)
|
||||||
|
(name "rofi-wayland")
|
||||||
|
(version "1.7.5+wayland1")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "https://github.com/lbonn/rofi"
|
||||||
|
"/releases/download/" version
|
||||||
|
"/rofi-" version ".tar.xz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"09n71wv3nxpzpjmvqmxlxk0zfln3x2l8admfq571781p9hw0w6wp"))))
|
||||||
|
(build-system meson-build-system)
|
||||||
|
(inputs
|
||||||
|
(modify-inputs (package-inputs base)
|
||||||
|
(append wayland wayland-protocols)))
|
||||||
|
(description
|
||||||
|
(string-append
|
||||||
|
(package-description base)
|
||||||
|
" This package, @code{rofi-wayland}, provides additional wayland
|
||||||
|
support.")))))
|
||||||
|
|
||||||
(define-public rofi-calc
|
(define-public rofi-calc
|
||||||
(package
|
(package
|
||||||
(name "rofi-calc")
|
(name "rofi-calc")
|
||||||
|
|
Loading…
Reference in a new issue