summaryrefslogtreecommitdiff
path: root/gnu/packages/cpp.scm
diff options
context:
space:
mode:
authorMurilo <murilo@disroot.org>2025-12-30 13:00:54 -0300
committerJohn Kehayias <john@guixotic.coop>2026-01-14 15:04:34 -0500
commit0c4cbfe0c47627919f78fa390024888740889135 (patch)
tree1f5e6a35a29267ba952b15ab4dacb67593f65dfa /gnu/packages/cpp.scm
parent7c0d9f6a2c197e1959e9bcd1fec53e548c0f4adc (diff)
gnu: Add hyprtoolkit.
* gnu/packages/cpp.scm (hyprtoolkit): New variable. Change-Id: Ie528e4bc317c63d0b7f4493d6dcefb4203c648e3 Signed-off-by: John Kehayias <john@guixotic.coop>
Diffstat (limited to 'gnu/packages/cpp.scm')
-rw-r--r--gnu/packages/cpp.scm40
1 files changed, 40 insertions, 0 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index 368b7ae3819..691661330a0 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -50,6 +50,7 @@
;;; Copyright © 2024, 2025 Janneke Nieuwenhuizen <janneke@gnu.org>
;;; Copyright © 2025 Andreas Enge <andreas@enge.fr>
;;; Copyright © 2025 Philippe Swartvagher <phil.swart@gmx.fr>
+;;; Copyright © 2025 Murilo <murilo@disroot.org>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -102,6 +103,7 @@
#:use-module (gnu packages disk)
#:use-module (gnu packages documentation)
#:use-module (gnu packages fontutils)
+ #:use-module (gnu packages freedesktop)
#:use-module (gnu packages gcc)
#:use-module (gnu packages gl)
#:use-module (gnu packages glib)
@@ -125,6 +127,7 @@
#:use-module (gnu packages popt)
#:use-module (gnu packages pretty-print)
#:use-module (gnu packages pulseaudio)
+ #:use-module (gnu packages samba)
#:use-module (gnu packages sdl)
#:use-module (gnu packages tls)
#:use-module (gnu packages tex)
@@ -1048,6 +1051,43 @@ language used in Hyprland.")
ecosystem.")
(license license:bsd-3)))
+(define-public hyprtoolkit
+ (package
+ (name "hyprtoolkit")
+ (version "0.5.2")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/hyprwm/hyprtoolkit")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1lyc5mmk7i83q3rq11yyggwxpcx3kmav3hg3ss1xl723v27cnj80"))))
+ (build-system cmake-build-system)
+ (arguments (list #:tests? #f)) ; No tests in Release build type
+ (native-inputs (list pkg-config hyprwayland-scanner))
+ (inputs
+ (list aquamarine
+ cairo
+ googletest
+ hyprgraphics
+ hyprlang
+ hyprutils
+ iniparser
+ mesa
+ libglvnd
+ libxkbcommon
+ pango
+ pixman
+ wayland
+ wayland-protocols))
+ (home-page "https://github.com/hyprwm/hyprtoolkit")
+ (synopsis "Modern C++ Wayland-native GUI toolkit")
+ (description "This package provides a C++ toolkit for making wayland GUI
+apps.")
+ (license license:bsd-3)))
+
(define-public xsimd-benchmark
(package
(inherit xsimd)