.
This commit is contained in:
parent
323ed2921d
commit
c6ca83ba29
1 changed files with 61 additions and 38 deletions
|
@ -36,6 +36,28 @@
|
|||
#:use-module (gnu packages wm)
|
||||
#:use-module (gnu packages xorg))
|
||||
|
||||
(define-public tomlplusplus
|
||||
(package
|
||||
(name "tomlplusplus")
|
||||
(version "3.4.0")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/marzer/tomlplusplus")
|
||||
(commit (string-append "v" version))))
|
||||
(sha256
|
||||
(base32
|
||||
"1hvbifzcc97r9jwjzpnq31ynqnj5y93cjz4frmgddnkg8hxmp6w7"))))
|
||||
(build-system cmake-build-system)
|
||||
(native-inputs
|
||||
(list python))
|
||||
(arguments
|
||||
(list #:tests? #f))
|
||||
(home-page "https://marzer.github.io/tomlplusplus/")
|
||||
(synopsis "Header-only TOML config file parser and serializer for C++17")
|
||||
(description "Header-only TOML config file parser and serializer for C++17.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public hwdata
|
||||
(package
|
||||
(name "hwdata")
|
||||
|
@ -323,7 +345,7 @@ Wayland compositor based on wlroots") (description "Hyprland.")
|
|||
(define-public hyprland
|
||||
(package
|
||||
(name "hyprland")
|
||||
(version "0.33.1")
|
||||
(version "0.34.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
|
@ -333,7 +355,7 @@ Wayland compositor based on wlroots") (description "Hyprland.")
|
|||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1b4d6r68cqx09blf5xdr1c23hw7axr8sx21wsxjjygqrhkkabdx7"))
|
||||
"0jsqfg8yk2b1z52fmqw1jjn6b8qkfh5x0xk1j0zx7ng4il2f6ajr"))
|
||||
(modules '((guix build utils)))
|
||||
(snippet
|
||||
#~(begin
|
||||
|
@ -376,6 +398,7 @@ Wayland compositor based on wlroots") (description "Hyprland.")
|
|||
libxkbcommon
|
||||
libdrm-2.4.118
|
||||
mesa
|
||||
tomlplusplus
|
||||
wayland
|
||||
wayland-protocols
|
||||
pango
|
||||
|
|
Loading…
Reference in a new issue