mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: Add libconfini.
* gnu/packages/cpp.scm (libconfini): New variable. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
parent
2d92b3bbb6
commit
df4f960cb8
1 changed files with 30 additions and 0 deletions
|
@ -1144,6 +1144,36 @@ (define-public pcg-cpp
|
|||
(home-page "https://www.pcg-random.org")
|
||||
(license (list license:expat license:asl2.0))))) ; dual licensed
|
||||
|
||||
(define-public libconfini
|
||||
(package
|
||||
(name "libconfini")
|
||||
(version "1.16.3")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/madmurphy/libconfini")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"01g8ai2z4fwshk06k824j6ib8nfb3cwxs5kqpqjvv4k5ayzm892h"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'bootstrap
|
||||
(lambda _ (invoke "sh" "bootstrap" "--noconfigure"))))))
|
||||
(native-inputs
|
||||
`(("autoconf" ,autoconf)
|
||||
("automake" ,automake)
|
||||
("libtool" ,libtool)))
|
||||
(home-page "https://madmurphy.github.io/libconfini/html/index.html")
|
||||
(synopsis "INI file parser")
|
||||
(description "@code{libconfini} is an INI file parser library written in
|
||||
C. It focuses on standardization and parsing exactness and is at ease with
|
||||
almost every type of file containing key/value pairs.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public libcutl
|
||||
(package
|
||||
(name "libcutl")
|
||||
|
|
Loading…
Reference in a new issue