* [bug#51844] [PATCH] gnu: Add libconfini.
@ 2021-11-14 13:48 Liliana Marie Prikler
2021-12-02 14:38 ` bug#51844: " Mathieu Othacehe
0 siblings, 1 reply; 2+ messages in thread
From: Liliana Marie Prikler @ 2021-11-14 13:48 UTC (permalink / raw)
To: 51844
* gnu/packages/cpp.scm (libconfini): New variable.
---
gnu/packages/cpp.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index d7a83ae727..a3061a9601 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -1141,6 +1141,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")
+ (synopsis "INI file parser")
+ (description "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")
--
2.33.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-12-02 14:40 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-11-14 13:48 [bug#51844] [PATCH] gnu: Add libconfini Liliana Marie Prikler
2021-12-02 14:38 ` bug#51844: " Mathieu Othacehe
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.