packages: xdisorg: Add wlrctl
parent
8aa4328c3a
commit
af0c4dd668
|
@ -0,0 +1,33 @@
|
|||
(define-module (radix packages xdisorg)
|
||||
#:use-module (gnu packages wm)
|
||||
#:use-module (gnu packages cmake)
|
||||
#:use-module (gnu packages pkg-config)
|
||||
#:use-module (gnu packages xdisorg)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix git-download)
|
||||
#:use-module (guix build-system meson)
|
||||
#:use-module ((guix licenses) #:prefix license:))
|
||||
|
||||
(define-public wlrctl
|
||||
(package
|
||||
(name "wlrctl")
|
||||
(version "0.2.2")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://git.sr.ht/~brocellous/wlrctl")
|
||||
(commit "693bf26c06b65b8161028378a08a2b454b3054eb")))
|
||||
(sha256
|
||||
(base32 "1wba07avg4gbcxd05ap4z9lbjckypksb9zmg31vy87fp8dkmv4jh"))))
|
||||
(build-system meson-build-system)
|
||||
(native-inputs
|
||||
(list cmake
|
||||
pkg-config
|
||||
libxkbcommon
|
||||
wlroots))
|
||||
(home-page "https://git.sr.ht/~brocellous/wlrctl")
|
||||
(synopsis "wlrctl is a command line utility for miscellaneous wlroots
|
||||
Wayland extensions.")
|
||||
(description "wlrctl is a command line utility for miscellaneous wlroots
|
||||
Wayland extensions.")
|
||||
(license license:expat)))
|
Loading…
Reference in New Issue