civodul pushed a commit to branch master
in repository guix.
commit 83861b64e6ba66f4612e452f629704dbde0e267f
Author: Nicolas Graves <[email protected]>
AuthorDate: Fri Aug 11 13:22:32 2023 +0200
gnu: Add cage.
* gnu/packages/wm.scm (cage): New variable.
Signed-off-by: Ludovic Courtès <[email protected]>
---
gnu/packages/wm.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm
index 8cc1f43e38..ae571965e6 100644
--- a/gnu/packages/wm.scm
+++ b/gnu/packages/wm.scm
@@ -63,6 +63,7 @@
;;; Copyright © 2023 Gabriel Wicki <[email protected]>
;;; Copyright © 2023 Jonathan Brielamier <[email protected]>
;;; Copyright © 2023 Vessel Wave <[email protected]>
+;;; Copyright © 2023 Nicolas Graves <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -193,6 +194,27 @@
the leaves of a full binary tree.")
(license license:bsd-2)))
+(define-public cage
+ (package
+ (name "cage")
+ (version "0.1.5")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/cage-kiosk/cage")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256 (base32
"11sg9x08zl2nr7a723h462knz5lf58sgvkhv1mgc9z3hhkhvbsja"))))
+ (build-system meson-build-system)
+ (native-inputs (list pkg-config scdoc))
+ (inputs (list wayland wlroots libxkbcommon))
+ (home-page "https://github.com/cage-kiosk/cage")
+ (synopsis "Wayland kiosk")
+ (description "This package provides a Wayland @dfn{kiosk}, which runs a
+single, maximized application.")
+ (license license:expat)))
+
(define-public herbstluftwm
(package
(name "herbstluftwm")