mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: cagebreak: Update to 2.2.0, install man pages.
* gnu/packages/wm.scm (cagebreak): Update to 2.2.0. [arguments]: Add '-Dman-pages=true' to configure-flags. [native-inputs]: Replace pandoc with scdoc.
This commit is contained in:
parent
a0d305005e
commit
423d5964eb
1 changed files with 4 additions and 4 deletions
|
@ -2838,7 +2838,7 @@ (define-public xnotify
|
|||
(define-public cagebreak
|
||||
(package
|
||||
(name "cagebreak")
|
||||
(version "2.1.2")
|
||||
(version "2.2.0")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
|
@ -2847,11 +2847,11 @@ (define-public cagebreak
|
|||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"09ky8wili3ym8qi4dasckdcdcvn4g6ak08dg0yccnwmnlwxiyps6"))))
|
||||
"0yhn77hdy7c80hd6r8nmvs206pmp76bx4zr94imfvgs8fh5gb8cy"))))
|
||||
(build-system meson-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:configure-flags #~(list "-Dxwayland=true")
|
||||
#:configure-flags #~(list "-Dxwayland=true" "-Dman-pages=true")
|
||||
;; XXX: Running cagebreak tests need more tools, such as: clang-format,
|
||||
;; shellcheck, git, gnupg ...
|
||||
#:tests? #f
|
||||
|
@ -2862,7 +2862,7 @@ (define-public cagebreak
|
|||
(substitute* '("cagebreak.c" "meson.build")
|
||||
(("/etc/") (string-append #$output "/etc/"))
|
||||
(("/usr/share/") (string-append #$output "/usr/share/"))))))))
|
||||
(native-inputs (list pandoc pkg-config))
|
||||
(native-inputs (list pkg-config scdoc))
|
||||
(inputs (list libevdev pango wlroots))
|
||||
(home-page "https://github.com/project-repo/cagebreak")
|
||||
(synopsis "Tiling wayland compositor inspired by ratpoison")
|
||||
|
|
Loading…
Reference in a new issue