mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-28 14:01:29 -05:00
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>
This commit is contained in:
parent
2e568050d7
commit
5f00e0363c
1 changed files with 24 additions and 0 deletions
|
@ -1731,6 +1731,30 @@ (define-public libconfini
|
||||||
almost every type of file containing key/value pairs.")
|
almost every type of file containing key/value pairs.")
|
||||||
(license license:gpl3+)))
|
(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
|
(define-public libcutl
|
||||||
(package
|
(package
|
||||||
(name "libcutl")
|
(name "libcutl")
|
||||||
|
|
Loading…
Reference in a new issue