[bug#66894] gnu: Add rivercarro layout generator for river wayland compositor
Commit Message
Change-Id: Id9d1d808fae3ac6e0469cbe294a9a3652ce19101
---
gnu/packages/zig-xyz.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
base-commit: 0647f308b46b7ba7aa136068712f8d82d69d1a35
Comments
Also note that the package has no tests (hence why set to =#f=), and
also that the removal of the =validate-runpath= check comes from river itself (see
the definition of the river package for more info).
@@ -70,6 +70,31 @@ (define-public river
directly from a tty using KMS/DRM.")
(license license:gpl3)))
+(define-public rivercarro
+ (package
+ (name "rivercarro")
+ (version "0.2.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://git.sr.ht/~novakane/rivercarro")
+ (commit (string-append "v" version))
+ (recursive? #t)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1a852hkakha3f5djnd8jrmkcq0xcdxbcbidr2kkfbqrhni9p33cl"))))
+ (build-system zig-build-system)
+ (arguments
+ `(#:tests? #f
+ #:phases (modify-phases %standard-phases (delete 'validate-runpath))))
+ (native-inputs (list pkg-config wayland wayland-protocols))
+ (home-page "https://git.sr.ht/~novakane/rivercarro")
+ (synopsis "A slightly modified version of rivertile layout generator for river")
+ (description
+ "A modified version of rivertile which adds: monocle layout, gaps rather than padding, gap size modification at run time, and smart gaps.")
+ (license license:gpl3)))
+
(define-public tigerbeetle
(package
(name "tigerbeetle")