1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 13:10:33 +02:00

gnu: Add wayout.

* gnu/packages/xdisorg.scm (wayout): New variable.

Change-Id: Ibe4c302ff273e84f9baf444a56c10970d59ba120
Signed-off-by: jgart <jgart@dismail.de>
This commit is contained in:
jgart
2025-12-01 23:17:22 -06:00
parent d3aa1a72ee
commit df96ee97e9

View File

@@ -1937,6 +1937,27 @@ night to daytime temperature to allow your eyes to slowly adapt. At night the
color temperature should be set to match the lamps in your room.") color temperature should be set to match the lamps in your room.")
(license license:gpl3+))) (license license:gpl3+)))
(define-public wayout
(package
(name "wayout")
(version "0.1.5")
(home-page "https://git.sr.ht/~proycon/wayout")
(source (origin
(method git-fetch)
(uri (git-reference (url home-page) (commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"1i7bab1dcdyybwarhy44xawb6661zv4z8rfdicjyljg320vj79a2"))))
(build-system meson-build-system)
(native-inputs (list cmake-minimal pkg-config scdoc))
(inputs (list cairo pango wayland wayland-protocols))
(synopsis "Output simple text to a wayland desktop widget")
(description
"Wayout takes text from standard input and outputs it to a desktop-widget
on Wayland desktops.")
(license license:gpl3+)))
(define-public redshift-wayland (define-public redshift-wayland
(let ((commit "7da875d34854a6a34612d5ce4bd8718c32bec804") (let ((commit "7da875d34854a6a34612d5ce4bd8718c32bec804")
(revision "1")) (revision "1"))