From 4c62406371e7b986eb69398dbc90003a7d1b2160 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Mon, 29 Nov 2021 21:34:18 +0100 Subject: gnu: simdjson: Update to 1.0.2. * gnu/packages/cpp.scm (simdjson): Update to 1.0.2. --- gnu/packages/cpp.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/cpp.scm') diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index 9520a164f1..e2f2279418 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -1376,7 +1376,7 @@ syntax with variables, conditions, functions and more.") (define-public simdjson (package (name "simdjson") - (version "1.0.0") + (version "1.0.2") (source (origin (method git-fetch) (uri (git-reference @@ -1385,7 +1385,7 @@ syntax with variables, conditions, functions and more.") (file-name (git-file-name name version)) (sha256 (base32 - "08qpsw0i8481xlyyghzyszb1vh4c8i7krzzghvr9m4yg394vf6zn")))) + "05i5jnqd7ngps79cws16ls48gnx08ykkkib3n2hbrdhr1wwrnv7a")))) (build-system cmake-build-system) (arguments '(#:tests? #f ; tests require downloading dependencies -- cgit v1.2.3 From e8d5dd5c9b4c1a3d07f0c02727134e3542aa58e8 Mon Sep 17 00:00:00 2001 From: jgart Date: Sun, 21 Nov 2021 05:00:02 -0500 Subject: gnu: ccls: Update to 0.20210330. * gnu/packages/cpp.scm (ccls): Update to 0.20210330. Signed-off-by: Mathieu Othacehe --- gnu/packages/cpp.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/cpp.scm') diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index e2f2279418..5af0979e22 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -486,7 +486,7 @@ tools (containers, algorithms) used by other QuantStack packages.") (define-public ccls (package (name "ccls") - (version "0.20201219") + (version "0.20210330") (source (origin (method git-fetch) @@ -494,7 +494,7 @@ tools (containers, algorithms) used by other QuantStack packages.") (url "https://github.com/MaskRay/ccls") (commit version))) (sha256 - (base32 "0nkg92rgb1x6scpiwdamfrd1ag87j7ajxyn5qi861r916m5mh9m8")) + (base32 "0zzdn7c7a244djqwcsd7rvgclcdacyf9d0vkxpfspl83k2554alf")) (file-name (git-file-name name version)))) (build-system cmake-build-system) (arguments -- cgit v1.2.3 From df4f960cb8ef43ba49345f26df266683beca2bbf Mon Sep 17 00:00:00 2001 From: Liliana Marie Prikler Date: Sun, 14 Nov 2021 14:48:08 +0100 Subject: gnu: Add libconfini. * gnu/packages/cpp.scm (libconfini): New variable. Signed-off-by: Mathieu Othacehe --- gnu/packages/cpp.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'gnu/packages/cpp.scm') diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index 5af0979e22..9ab6e0b835 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -1144,6 +1144,36 @@ output randomness while retaining speed, simplicity, and conciseness.") (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") -- cgit v1.2.3