[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/07: gnu: Add libcppgenerate.
From: |
guix-commits |
Subject: |
05/07: gnu: Add libcppgenerate. |
Date: |
Fri, 1 Sep 2023 11:11:17 -0400 (EDT) |
apteryx pushed a commit to branch master
in repository guix.
commit 5f00e0363c194cd1f52eeb8da2417325af7c5acb
Author: 宋文武 <iyzsong@member.fsf.org>
AuthorDate: Fri Sep 1 20:44:55 2023 +0800
gnu: Add libcppgenerate.
* gnu/packages/cpp.scm (libcppgenerate): New variable.
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Reviewed-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
---
gnu/packages/cpp.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index 2f8cc2ce25..11777340ef 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -1731,6 +1731,30 @@ 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 libcppgenerate
+ ;; dbus-cxx requires an unreleased fix.
+ (let ((commit "930c5503f76c877b72b9ff8546353d6f422bd010")
+ (revision "0"))
+ (package
+ (name "libcppgenerate")
+ (version (git-version "0.2" revision commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/rm5248/libcppgenerate")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "0csdg9b406i85aqgivjmvqjdnqbyiyjh3s0xsfsxppv7wlh7j85r"))))
+ (build-system cmake-build-system)
+ (arguments (list #:configure-flags #~'("-DENABLE_TESTS=ON")))
+ (home-page "https://github.com/rm5248/libcppgenerate")
+ (synopsis "C++ code generator library for C++")
+ (description "@code{libcppgenerate} is a library for generating C++ code
+from C++.")
+ (license license:asl2.0))))
+
(define-public libcutl
(package
(name "libcutl")
- branch master updated (4e531e55dc -> 4d4bf9ab1f), guix-commits, 2023/09/01
- 05/07: gnu: Add libcppgenerate.,
guix-commits <=
- 04/07: gnu: Add tcptrack., guix-commits, 2023/09/01
- 07/07: gnu: sound-juicer: Update to 3.40.0., guix-commits, 2023/09/01
- 01/07: doc: cookbook: Document the configuration of a Yubikey with KeePassXC., guix-commits, 2023/09/01
- 03/07: gnu: Add usbrelay., guix-commits, 2023/09/01
- 06/07: gnu: dbus-cxx: Update to 2.4.0., guix-commits, 2023/09/01
- 02/07: cookbook: Add a recipe for running Guix System on a Kimsufi server., guix-commits, 2023/09/01