blob: aec82867fb4252c48c7523d726f73728775d9969 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
(define-module (ryan-packages hyprland)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix build-system meson)
#:use-module (guix build-system gnu)
#:use-module (guix gexp)
#:use-module (guix git-download)
#:use-module (guix packages)
#:use-module (guix download))
(define aquamarine
(package
(name "aquamarine")
(version "0.4.3")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/hyprwm/aquamarine")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"114fspibmrwvzdmzv4xdy000vg7mn9r5vas3pr1ndb9xyl15ja1s"))))
(build-system cmake-build-system)
(arguments
(list
#:tests? #f))
(native-inputs
(list
gcc-14
pkg-config
mesa-headers
hyprwayland-scanner
hwdata))
(inputs
(list
libglvnd
mesa-libglvnd
libseat
libinput
libxkbcommon
libdisplay-info
libxcb
libxinerama
libxcursor
wayland
wayland-protocols
|