[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#64137] [PATCH v2 1/8] gnu: Add mpark-variant.
From: |
David Elsing |
Subject: |
[bug#64137] [PATCH v2 1/8] gnu: Add mpark-variant. |
Date: |
Sun, 18 Jun 2023 20:53:00 +0000 |
* gnu/packages/cpp.scm (mpark-variant): New variable.
---
gnu/packages/cpp.scm | 37 ++++++++++++++++++++++++++++++++++++-
1 file changed, 36 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index 39a34c20dd..5a6298fc4d 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -29,7 +29,7 @@
;;; Copyright © 2022 muradm <mail@muradm.net>
;;; Copyright © 2022 Attila Lendvai <attila@lendvai.name>
;;; Copyright © 2022 Arun Isaac <arunisaac@systemreboot.net>
-;;; Copyright © 2022 David Elsing <david.elsing@posteo.net>
+;;; Copyright © 2022, 2023 David Elsing <david.elsing@posteo.net>
;;; Copyright © 2022, 2023 Zheng Junjie <873216071@qq.com>
;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2023 Sughosha <Sughosha@proton.me>
@@ -2553,3 +2553,38 @@ (define-public ftxui
@item No dependencies.
@end itemize")
(license license:expat)))
+
+(define-public mpark-variant
+ (package
+ (name "mpark-variant")
+ (version "1.4.0")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/mpark/variant")
+ (commit (string-append "v" version))))
+ (sha256
+ (base32
+ "0gz8d5qprlfqb42cfyyc4nbwhgarhw027a9nr52h3gbdn560j0j4"))
+ (file-name (git-file-name name version))))
+ (build-system cmake-build-system)
+ (arguments
+ (list
+ #:configure-flags #~(list "-DMPARK_VARIANT_INCLUDE_TESTS=mpark")
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'find-googletest
+ (lambda _
+ (substitute* "test/CMakeLists.txt"
+ (("add_subdirectory.*3rdparty/googletest.*\n")
+ "find_package(GTest REQUIRED)\n")
+ ((".*3rdparty/googletest.*\n") "")
+ ((".*config_compiler_and_linker.*\n") "")
+ (("gtest_main") "gtest gtest_main")))))))
+ (native-inputs (list googletest))
+ (home-page "https://github.com/mpark/variant")
+ (synopsis "Implementation of the C++17 std::variant for C++11/14/17")
+ (description
+ "MPark.Variant provides the C++17 std::variant for C++11/14/17. It is
+based on the implementation of std::variant in libc++.")
+ (license license:boost1.0)))
--
2.40.1
- [bug#64137] [PATCH 0/2] Build catch2@3 with CMake and update to 3.3.2, David Elsing, 2023/06/17
- [bug#64137] [PATCH 1/2] gnu: catch2-3.1: Rename to catch2-3.3., David Elsing, 2023/06/17
- [bug#64137] [PATCH 2/2] gnu: Add catch2-static-3.3., David Elsing, 2023/06/17
- [bug#64137] [PATCH 0/2] Build catch2@3 with CMake and update to 3.3.2, Liliana Marie Prikler, 2023/06/18
- [bug#64137] [PATCH v2 7/8] gnu: catch2-3.1: Rename to catch2-3.3., David Elsing, 2023/06/18
- [bug#64137] [PATCH v2 7/8] gnu: catch2-3.1: Rename to catch2-3.3., Liliana Marie Prikler, 2023/06/22
- [bug#64137] [PATCH v2 6/8] gnu: clingo: Unbundle dependencies., David Elsing, 2023/06/18
- [bug#64137] [PATCH v2 6/8] gnu: clingo: Unbundle dependencies., Liliana Marie Prikler, 2023/06/22
- [bug#64137] [PATCH v2 3/8] gnu: Add tsl-sparse-map., David Elsing, 2023/06/18
- [bug#64137] [PATCH v2 4/8] gnu: Add tsl-ordered-map., David Elsing, 2023/06/18