summaryrefslogtreecommitdiff
path: root/gnu/packages/cpp.scm
diff options
context:
space:
mode:
authorMurilo <murilo@disroot.org>2025-10-04 12:49:20 -0300
committerJohn Kehayias <john@guixotic.coop>2025-10-05 20:13:41 -0400
commit249c59a3993afed63d6843a4c734b309631e1815 (patch)
tree92f63c811ca5a32c92d1f7f689b70eadb6dd968a /gnu/packages/cpp.scm
parent0548de4cf0c94dfc7654d63393d80c6808c72bd3 (diff)
gnu: hyprgraphics: Update to 0.2.0.
Note: we use librsvg-for-system but for non-Rust systems the current version is too old for this package to build there. * gnu/packages/cpp.scm (hyprgraphics): Update to 0.2.0. [inputs]: Add librsvg-for-system, pango. Change-Id: I2437fa12278ee33de098a25fdb3e5a52f17ce6b1 Signed-off-by: John Kehayias <john@guixotic.coop> Modified-by: John Kehayias <john@guixotic.coop>
Diffstat (limited to 'gnu/packages/cpp.scm')
-rw-r--r--gnu/packages/cpp.scm9
1 files changed, 7 insertions, 2 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index 03f05934fea..7e1888f1deb 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -104,6 +104,7 @@
#:use-module (gnu packages gcc)
#:use-module (gnu packages gl)
#:use-module (gnu packages glib)
+ #:use-module (gnu packages gnome)
#:use-module (gnu packages gtk)
#:use-module (gnu packages image)
#:use-module (gnu packages libevent)
@@ -913,7 +914,7 @@ library for SIMD (Single Instruction, Multiple Data) with runtime dispatch.")
(define-public hyprgraphics
(package
(name "hyprgraphics")
- (version "0.1.5")
+ (version "0.2.0")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -924,14 +925,18 @@ library for SIMD (Single Instruction, Multiple Data) with runtime dispatch.")
(snippet #~(substitute* "CMakeLists.txt" (("libjxl_cms") "")))
(sha256
(base32
- "0q7bpywn8ljsj3dymvv19cm7n0r51vg5hj1jsapdl5bwpwf7bf41"))))
+ "1xr2pbawwnnwjwzkgsy9s4wq1j85x4qhj3m4s2pwb9wp6g69da2g"))))
(build-system cmake-build-system)
(native-inputs (list gcc-15 pkg-config))
(inputs (list cairo
hyprutils
libjpeg-turbo
libjxl
+ ;; Note: The current librsvg-2.40 for non-Rust architectures
+ ;; is too old.
+ (librsvg-for-system)
libwebp
+ pango
pixman
spng))
(home-page "https://wiki.hypr.land/Hypr-Ecosystem/hyprgraphics/")