diff options
author | Hilton Chain <hako@ultrarare.space> | 2024-11-06 08:39:40 +0800 |
---|---|---|
committer | Hilton Chain <hako@ultrarare.space> | 2024-12-08 15:28:42 +0800 |
commit | 4b9a950a209eb36cce1a74ec709810b2a9937485 (patch) | |
tree | 0c9409b36f9434962a641086f3cf628b12be2ab0 | |
parent | 0e79732c3f66de6b1eaace67c08264cfe9296a50 (diff) | |
download | guix-4b9a950a209eb36cce1a74ec709810b2a9937485.tar.gz guix-4b9a950a209eb36cce1a74ec709810b2a9937485.zip |
gnu: Add hyprlang.
* gnu/packages/wm.scm (hyprlang): New variable.
Change-Id: Ie585412bd26bff2c5949ed3aef15c37f6958dc0b
-rw-r--r-- | gnu/packages/cpp.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index fdace00ef8..2904061489 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -664,6 +664,29 @@ operating on batches.") library for SIMD (Single Instruction, Multiple Data) with runtime dispatch.") (license license:asl2.0))) +(define-public hyprlang + (package + (name "hyprlang") + (version "0.5.3") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hyprwm/hyprlang") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0yvfrz3hdyxzhngzhr0bgc5279ra5fv01hbfi6pdj84pz0lpaw02")))) + (build-system cmake-build-system) + (native-inputs (list gcc-13 pkg-config)) + (inputs (list hyprutils)) + (home-page "https://wiki.hyprland.org/Hypr-Ecosystem/hyprlang/") + (synopsis "Official implementation library for hypr config language") + (description + "This package provides the official implementation for hypr configuration +language used in Hyprland.") + (license license:lgpl3))) + (define-public hyprutils (package (name "hyprutils") |