mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add hyprwayland-scanner.
* gnu/packages/wm.scm (hyprwayland-scanner): New variable. Change-Id: I492006356e3abc68609d6c73738a0dfd3b15681c
This commit is contained in:
parent
812512413a
commit
9a56e3e0ad
1 changed files with 25 additions and 0 deletions
|
@ -95,6 +95,7 @@
|
||||||
#:use-module (gnu packages file)
|
#:use-module (gnu packages file)
|
||||||
#:use-module (gnu packages fontutils)
|
#:use-module (gnu packages fontutils)
|
||||||
#:use-module (gnu packages gawk)
|
#:use-module (gnu packages gawk)
|
||||||
|
#:use-module (gnu packages gcc)
|
||||||
#:use-module (gnu packages gettext)
|
#:use-module (gnu packages gettext)
|
||||||
#:use-module (gnu packages ghostscript)
|
#:use-module (gnu packages ghostscript)
|
||||||
#:use-module (gnu packages gl)
|
#:use-module (gnu packages gl)
|
||||||
|
@ -1339,6 +1340,30 @@ For information about libevdev, see:
|
||||||
Python.")
|
Python.")
|
||||||
(license license:lgpl2.0)))
|
(license license:lgpl2.0)))
|
||||||
|
|
||||||
|
(define-public hyprwayland-scanner
|
||||||
|
(package
|
||||||
|
(name "hyprwayland-scanner")
|
||||||
|
(version "0.4.2")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/hyprwm/hyprwayland-scanner")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0r7ay4zjkfyr0xd73wz99qhnqjq7nma98gm51wm9lmai4igw90qw"))))
|
||||||
|
(build-system cmake-build-system)
|
||||||
|
(arguments (list #:tests? #f)) ;No tests.
|
||||||
|
(inputs (list pugixml))
|
||||||
|
(native-inputs (list gcc-13 pkg-config))
|
||||||
|
(home-page "https://github.com/hyprwm/hyprwayland-scanner")
|
||||||
|
(synopsis "Hyprland implementation of @code{wayland-scanner}")
|
||||||
|
(description
|
||||||
|
"This package provides a Hyprland implementation of @code{wayland-scanner},
|
||||||
|
in and for C++.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public wayland
|
(define-public wayland
|
||||||
(package
|
(package
|
||||||
(name "wayland")
|
(name "wayland")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue