diff options
author | John Kehayias <john.kehayias@protonmail.com> | 2024-04-16 20:58:06 -0400 |
---|---|---|
committer | John Kehayias <john.kehayias@protonmail.com> | 2024-04-16 20:58:06 -0400 |
commit | 2d5736cc3e869fadd2592cc13a8d332fac63b144 (patch) | |
tree | 3ff2045099afb796eaa294e693ce4708e2021af9 /gnu/packages/cpp.scm | |
parent | dbfb691c5b4bc66682657ebf124815f5b93fcdbd (diff) | |
parent | 953253eff32197863d223e5fece42b3c2440df01 (diff) |
Merge branch 'mesa-updates'
Key updates:
cairo 1.16.0 -> 1.18.0
libdrm 2.4.117 -> 2.4.120
mesa 23.3.2 -> 24.0.3
sdl2 2.28.5 -> 2.30.1
vulkan packages 1.3.231.1 -> 1.3.280.0
openexr 3.1.3 -> 3.2.4
Change-Id: Iece081158251d1d5836f6b264ba232dc751c9fe2
Diffstat (limited to 'gnu/packages/cpp.scm')
-rw-r--r-- | gnu/packages/cpp.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index b4a0abb525..a2a3eb226e 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -39,6 +39,7 @@ ;;; Copyright © 2023 Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> ;;; Copyright © 2023 Foundation Devices, Inc. <hello@foundationdevices.com> ;;; Copyright © 2023 Paul A. Patience <paul@apatience.com> +;;; Copyright © 2024 dan <i@dan.games> ;;; ;;; This file is part of GNU Guix. ;;; @@ -1875,7 +1876,7 @@ queues header library based on circular buffer with @code{std::atomic}.") (define-public magic-enum (package (name "magic-enum") - (version "0.7.3") + (version "0.9.5") (home-page "https://github.com/Neargye/magic_enum") (source (origin (method git-fetch) @@ -1885,7 +1886,7 @@ queues header library based on circular buffer with @code{std::atomic}.") (file-name (git-file-name name version)) (sha256 (base32 - "1x47radgsifgz3vn2561mlvf4cq46ii33cpyqf01znm56iirwq89")))) + "14ys5sn2v1mai8bclvi81cp65g6jblqpdsi94639hphca5v8gka3")))) (build-system cmake-build-system) (synopsis "C++17 header only library for compile time reflection of enums") (description "Magic Enum offers static reflection of enums, with |