summaryrefslogtreecommitdiff
path: root/gnu/packages/cpp.scm
diff options
context:
space:
mode:
authorMurilo <murilo@disroot.org>2025-12-30 18:34:50 -0300
committerJohn Kehayias <john@guixotic.coop>2026-01-14 15:04:38 -0500
commitc3f1640acef40beb9f4610ed4da9c22ba3a4f9fd (patch)
tree582a7e8c1fdb743076c6c6d3044be05a92610394 /gnu/packages/cpp.scm
parent0932150cf19710fca6b1f0b8f6740a37063e79be (diff)
gnu: Add hyprland-guiutils.
* gnu/packages/cpp.scm (hyprland-guiutils): New variable. Change-Id: I42064ddfffe4948c60aea2044b198fd622688148 Signed-off-by: John Kehayias <john@guixotic.coop>
Diffstat (limited to 'gnu/packages/cpp.scm')
-rw-r--r--gnu/packages/cpp.scm32
1 files changed, 32 insertions, 0 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index a77befd56ff..ba198290e2c 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -1115,6 +1115,38 @@ and its implementation. This is essentially a method for processes to talk to
1115each other.") 1115each other.")
1116 (license license:bsd-3))) 1116 (license license:bsd-3)))
1117 1117
1118(define-public hyprland-guiutils
1119 (package
1120 (name "hyprland-guiutils")
1121 (version "0.2.1")
1122 (source (origin
1123 (method git-fetch)
1124 (uri (git-reference
1125 (url "https://github.com/hyprwm/hyprland-guiutils")
1126 (commit (string-append "v" version))))
1127 (file-name (git-file-name name version))
1128 (sha256
1129 (base32
1130 "0x5757ch8rvgbph66fkf5cg39r37isvfy450429746xmajsy0qa7"))))
1131 (build-system cmake-build-system)
1132 (arguments (list #:tests? #f)) ; There are no tests
1133 (native-inputs (list pkg-config gcc-15))
1134 (inputs
1135 (list aquamarine
1136 cairo
1137 hyprgraphics
1138 hyprlang
1139 hyprtoolkit
1140 hyprutils
1141 mesa
1142 libxkbcommon
1143 pixman))
1144 (home-page "https://github.com/hyprwm/hyprland-guiutils")
1145 (synopsis "Hyprland GUI utilities")
1146 (description "This package provides GUI utilities for hyprland. It is the
1147successor of hyprland-qtutils.")
1148 (license license:bsd-3)))
1149
1118(define-public xsimd-benchmark 1150(define-public xsimd-benchmark
1119 (package 1151 (package
1120 (inherit xsimd) 1152 (inherit xsimd)