1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 18:40:57 +02:00

gnu: Add icecream-cpp.

* gnu/packages/cpp.scm (icecream-cpp): New variable.

Change-Id: I18f793ae63b6c677d99aa131da0ef97d6ffe6dc2
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
Paul A. Patience 2025-03-01 12:27:10 +01:00 committed by Nicolas Goaziou
parent 867ec3a41c
commit b4ef91ab8c
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -686,6 +686,34 @@ single values. It also provides accelerated implementation of common
mathematical functions operating on batches.")
(license license:bsd-3)))
(define-public icecream-cpp
;; Last release was in 2020.
(let ((commit "95c8b91c2214be76a2847cd4ab37dccd9250ed77")
(revision "0"))
(package
(name "icecream-cpp")
(version (git-version "0.3.1" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/renatoGarcia/icecream-cpp")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "0zw4aj5xs13grf7qj6f33dq7md9hn5i9mf6kz66b5jsx2fly6xxs"))))
(build-system cmake-build-system)
(arguments
(list #:configure-flags #~(list "-DBUILD_TESTING=ON")))
(native-inputs (list boost catch2))
(home-page "https://github.com/renatoGarcia/icecream-cpp")
(synopsis "C++ library for @code{printf} debugging")
(description
"IceCream-Cpp is a C++ library for @code{printf} debugging. It is
inspired by the @url{https://github.com/gruns/icecream, Python library} of the
same name.")
(license license:expat))))
(define-public google-highway
(package
(name "google-highway")