diff options
author | Murilo <murilo@disroot.org> | 2025-01-31 08:30:37 -0300 |
---|---|---|
committer | John Kehayias <john.kehayias@protonmail.com> | 2025-02-01 14:49:27 -0500 |
commit | 653a35f13c647d5aa9cbd21117fe96e1cc6ec378 (patch) | |
tree | 5e7c862a63305284a30fc57186a3824361d1e324 /gnu/packages/cpp.scm | |
parent | da2193db852e8b31a26018e484d5d5c62f94a379 (diff) |
gnu: hyprlang: Update to 0.6.0.
* gnu/packages/cpp.scm (hyprlang): Update to 0.6.0.
[native-inputs]: Remove gcc-13; add gcc-14.
Change-Id: I33dba5c537bd99f4ea06d86c27457ff4b2bf3ed0
Signed-off-by: John Kehayias <john.kehayias@protonmail.com>
Diffstat (limited to 'gnu/packages/cpp.scm')
-rw-r--r-- | gnu/packages/cpp.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index c8199af9ce..3e6da27fc5 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -704,7 +704,7 @@ utilities used across the hypr* ecosystem.") (define-public hyprlang (package (name "hyprlang") - (version "0.5.3") + (version "0.6.0") (source (origin (method git-fetch) (uri (git-reference @@ -713,7 +713,7 @@ utilities used across the hypr* ecosystem.") (file-name (git-file-name name version)) (sha256 (base32 - "0yvfrz3hdyxzhngzhr0bgc5279ra5fv01hbfi6pdj84pz0lpaw02")))) + "18f8vlg5ypw35gyi8gy0wqh5jvg1q67qywrb750bx8pk9gi1agx2")))) (build-system cmake-build-system) (arguments (list @@ -726,7 +726,7 @@ utilities used across the hypr* ecosystem.") (string-append "set(PKG_CONFIG_EXECUTABLE " #$(pkg-config-for-target) ")\n" all)))))))) - (native-inputs (list gcc-13 pkg-config)) + (native-inputs (list gcc-14 pkg-config)) (inputs (list hyprutils)) (home-page "https://wiki.hyprland.org/Hypr-Ecosystem/hyprlang/") (synopsis "Official implementation library for hypr config language") |