rosenthal: Add hyprlang.

* rosenthal/packages/wm.scm (hyprlang): New variable.
pull/2/head
Hilton Chain 9 months ago
parent 23c15e0785
commit a079a438da
No known key found for this signature in database
GPG Key ID: ACC66D09CA528292
  1. 23
      rosenthal/packages/wm.scm

@ -4,6 +4,7 @@
(define-module (rosenthal packages wm) (define-module (rosenthal packages wm)
#:use-module ((guix licenses) #:prefix license:) #:use-module ((guix licenses) #:prefix license:)
#:use-module (guix build-system cmake)
#:use-module (guix build-system gnu) #:use-module (guix build-system gnu)
#:use-module (guix build-system meson) #:use-module (guix build-system meson)
#:use-module (guix download) #:use-module (guix download)
@ -241,6 +242,28 @@ effects, has a very flexible IPC model allowing for a lot of customization, and
more.") more.")
(license license:bsd-3))) (license license:bsd-3)))
(define-public hyprlang
(package
(name "hyprlang")
(version "0.4.0")
(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
"12lxqza2crbdszvkgd1sz0rwjf80i835r77k9q69fi3x32pdjvcx"))))
(build-system cmake-build-system)
(native-inputs (list gcc-13))
(home-page "https://hyprland.org/hyprlang/")
(synopsis "Official implementation library for hypr config language")
(description
"This package provides the official implementation for hypr configuration
language used in @code{hyprland}.")
(license license:gpl3+)))
(define-public grimblast (define-public grimblast
(package (package
(name "grimblast") (name "grimblast")

Loading…
Cancel
Save