mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add tomlplusplus.
* gnu/packages/cpp.scm (tomlplusplus): New variable. Change-Id: I4b5c79e9fdcfdaa80c0c24bb89bf5b783f1a581f Modified-by: Hilton Chain <hako@ultrarare.space> Signed-off-by: Hilton Chain <hako@ultrarare.space>
This commit is contained in:
parent
d66bfbeeb2
commit
0797fff8b8
1 changed files with 36 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue