summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Hogan <code@greghogan.com>2025-05-14 17:44:00 +0000
committerGreg Hogan <code@greghogan.com>2025-07-30 16:28:26 +0000
commit72bca2cafb00e5a0ad250cbb9f4efafe92ebc464 (patch)
tree1ab0c5d5da9de28f342aea4e244b20fb310028b8
parent1216a043bd5e4714d5ec1c72e00f5f91fe175916 (diff)
gnu: icecream-cpp: Update to 1.0.0.
* gnu/packages/cpp.scm (icecream-cpp): Update to 1.0.0. [arguments]<#:configure-flags>: Add CMAKE_CXX_STANDARD and remove BUILD_TESTING. Change-Id: I9847a1928dd16f3e3ec092882cce8777fe119632
-rw-r--r--gnu/packages/cpp.scm46
1 files changed, 22 insertions, 24 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index 1eb034ff96..391cfe73ac 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -849,32 +849,30 @@ 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
+ (package
+ (name "icecream-cpp")
+ (version "1.0.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/renatoGarcia/icecream-cpp")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1pl3qibxa9m7qkfpxszablwyhlnn9qz0cgms8kr2wwvxdzipr1p0"))))
+ (build-system cmake-build-system)
+ (arguments
+ (list
+ #:configure-flags #~(list "-DCMAKE_CXX_STANDARD=17")))
+ (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))))
+ (license license:expat)))
(define-public google-highway
(package