summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/tomlplusplus/package.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/tomlplusplus/package.py b/var/spack/repos/builtin/packages/tomlplusplus/package.py
new file mode 100644
index 0000000000..d165127d3e
--- /dev/null
+++ b/var/spack/repos/builtin/packages/tomlplusplus/package.py
@@ -0,0 +1,20 @@
+# Copyright 2013-2024 Lawrence Livermore National Security, LLC and other
+# Spack Project Developers. See the top-level COPYRIGHT file for details.
+#
+# SPDX-License-Identifier: (Apache-2.0 OR MIT)
+
+from spack.package import *
+
+
+class Tomlplusplus(CMakePackage):
+ """Header-only TOML config file parser and serializer for C++17"""
+
+ homepage = "https://marzer.github.io/tomlplusplus/"
+ url = "https://github.com/marzer/tomlplusplus/archive/refs/tags/v3.4.0.tar.gz"
+
+ license("MIT", checked_by="pranav-sivaraman")
+
+ version("3.4.0", sha256="8517f65938a4faae9ccf8ebb36631a38c1cadfb5efa85d9a72e15b9e97d25155")
+
+ depends_on("cxx", type="build")
+ depends_on("cmake@3.14:", type="build")