mirror of
https://codeberg.org/hako/Rosenthal.git
synced 2025-04-17 03:24:31 +00:00
rosenthal: Add hyprlang.
* rosenthal/packages/wm.scm (hyprlang): New variable.
This commit is contained in:
parent
23c15e0785
commit
a079a438da
@ -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…
Reference in New Issue
Block a user