mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add mako.
* gnu/packages/wm.scm (mako): New variable.
This commit is contained in:
parent
4c32f116cd
commit
46dc940c9a
1 changed files with 28 additions and 0 deletions
|
@ -1365,3 +1365,31 @@ (define-public waybar
|
||||||
(description "Waybar is a highly customisable Wayland bar for Sway and
|
(description "Waybar is a highly customisable Wayland bar for Sway and
|
||||||
Wlroots based compositors.")
|
Wlroots based compositors.")
|
||||||
(license license:expat))) ; MIT license
|
(license license:expat))) ; MIT license
|
||||||
|
|
||||||
|
(define-public mako
|
||||||
|
(package
|
||||||
|
(name "mako")
|
||||||
|
(version "1.3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/emersion/mako.git")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "17azdc37xsbmx13fkfp23vg9lznrv9fh6nhagn64wdq3nhsxm3b6"))))
|
||||||
|
(build-system meson-build-system)
|
||||||
|
(inputs `(("cairo" ,cairo)
|
||||||
|
("elogind" ,elogind)
|
||||||
|
("gdk-pixbuf" ,gdk-pixbuf)
|
||||||
|
("pango" ,pango)
|
||||||
|
("wayland" ,wayland)))
|
||||||
|
(native-inputs `(("pkg-config" ,pkg-config)
|
||||||
|
("scdoc" ,scdoc)
|
||||||
|
("wayland-protocols" ,wayland-protocols)))
|
||||||
|
(home-page "https://wayland.emersion.fr/mako")
|
||||||
|
(synopsis "Lightweight Wayland notification daemon")
|
||||||
|
(description "Mako is a lightweight notification daemon for Wayland
|
||||||
|
compositors that support the layer-shell protocol.")
|
||||||
|
(license license:expat))) ; MIT license
|
||||||
|
|
Loading…
Reference in a new issue