From 0797fff8b8b3feb1e421aad170b4c12a87091663 Mon Sep 17 00:00:00 2001 From: Daniel Ziltener Date: Mon, 18 Mar 2024 23:07:04 +0100 Subject: gnu: Add tomlplusplus. * gnu/packages/cpp.scm (tomlplusplus): New variable. Change-Id: I4b5c79e9fdcfdaa80c0c24bb89bf5b783f1a581f Modified-by: Hilton Chain Signed-off-by: Hilton Chain --- gnu/packages/cpp.scm | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index a2a3eb226e..77083e9a19 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -79,6 +79,7 @@ (define-module (gnu packages cpp) #:use-module (gnu packages build-tools) #:use-module (gnu packages c) #:use-module (gnu packages check) + #:use-module (gnu packages cmake) #:use-module (gnu packages code) #:use-module (gnu packages compression) #:use-module (gnu packages crypto) @@ -857,6 +858,41 @@ (define-public nlohmann-json (define-public json-modern-cxx (deprecated-package "json-modern-cxx" nlohmann-json)) +(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)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1hvbifzcc97r9jwjzpnq31ynqnj5y93cjz4frmgddnkg8hxmp6w7")))) + (build-system meson-build-system) + (arguments + (list #:configure-flags + #~(list "-Dbuild_tests=true") + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'set-test-locales + (lambda _ + (substitute* "tests/meson.build" + (("foreach locale : test_locales" all) + (format #f "test_locales = ['C', ~{'~a.utf8', ~}]~%~a" + ;; %default-utf8-locales in (gnu packages base). + '("de_DE" "el_GR" "en_US" "fr_FR" "tr_TR") + all)))))))) + (native-inputs (list cmake-minimal)) + (home-page "https://marzer.github.io/tomlplusplus/") + (synopsis "Header-only TOML config file parser and serializer for C++17") + (description + "This package provides header-only TOML config file parser and serializer +for C++17.") + (license license:expat))) + (define-public xtl (package (name "xtl") -- cgit v1.2.3