gnu: Add libucl.
* gnu/packages/wm.scm (libucl): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>master
parent
ce10e2b3e9
commit
966e61fb8f
|
@ -43,6 +43,7 @@
|
|||
;;; Copyright © 2020 Robert Smith <robertsmith@posteo.net>
|
||||
;;; Copyright © 2021 Zheng Junjie <873216071@qq.com>
|
||||
;;; Copyright © 2021 Sharlatan Hellseher <sharlatanus@gmail.com>
|
||||
;;; Copyright © 2021 qblade <qblade@protonmail.com>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -2371,3 +2372,31 @@ shows a notification for the user on the screen.")
|
|||
for wayland conceptually based on the X11 window manager
|
||||
@command{ratpoison}.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public libucl
|
||||
(package
|
||||
(name "libucl")
|
||||
(version "0.8.1")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/vstakhov/libucl/")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1h52ldxankyhbbm1qbqz1f2q0j03c1b4mig7343bs3mc6fpm18gf"))))
|
||||
(native-inputs
|
||||
`(("autoconf" ,autoconf)
|
||||
("automake" ,automake)
|
||||
("pkg-config" ,pkg-config)
|
||||
("libtool" ,libtool)))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f)) ;; no tests
|
||||
(home-page "https://github.com/vstakhov/libucl")
|
||||
(synopsis "Universal configuration language (UCL) parser")
|
||||
(description "libucl implements a configuration language that is easy to
|
||||
read and write, and compatible with JSON.")
|
||||
(license license:bsd-2)))
|
||||
|
|
Reference in New Issue