mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-10 16:50:43 +02:00
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
This commit is contained in:
parent
852bea521d
commit
07b5c33eb3
1 changed files with 22 additions and 24 deletions
|
@ -846,32 +846,30 @@ mathematical functions operating on batches.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public icecream-cpp
|
(define-public icecream-cpp
|
||||||
;; Last release was in 2020.
|
(package
|
||||||
(let ((commit "95c8b91c2214be76a2847cd4ab37dccd9250ed77")
|
(name "icecream-cpp")
|
||||||
(revision "0"))
|
(version "1.0.0")
|
||||||
(package
|
(source
|
||||||
(name "icecream-cpp")
|
(origin
|
||||||
(version (git-version "0.3.1" revision commit))
|
(method git-fetch)
|
||||||
(source
|
(uri (git-reference
|
||||||
(origin
|
(url "https://github.com/renatoGarcia/icecream-cpp")
|
||||||
(method git-fetch)
|
(commit (string-append "v" version))))
|
||||||
(uri (git-reference
|
(file-name (git-file-name name version))
|
||||||
(url "https://github.com/renatoGarcia/icecream-cpp")
|
(sha256
|
||||||
(commit commit)))
|
(base32 "1pl3qibxa9m7qkfpxszablwyhlnn9qz0cgms8kr2wwvxdzipr1p0"))))
|
||||||
(file-name (git-file-name name version))
|
(build-system cmake-build-system)
|
||||||
(sha256
|
(arguments
|
||||||
(base32 "0zw4aj5xs13grf7qj6f33dq7md9hn5i9mf6kz66b5jsx2fly6xxs"))))
|
(list
|
||||||
(build-system cmake-build-system)
|
#:configure-flags #~(list "-DCMAKE_CXX_STANDARD=17")))
|
||||||
(arguments
|
(native-inputs (list boost catch2))
|
||||||
(list #:configure-flags #~(list "-DBUILD_TESTING=ON")))
|
(home-page "https://github.com/renatoGarcia/icecream-cpp")
|
||||||
(native-inputs (list boost catch2))
|
(synopsis "C++ library for @code{printf} debugging")
|
||||||
(home-page "https://github.com/renatoGarcia/icecream-cpp")
|
(description
|
||||||
(synopsis "C++ library for @code{printf} debugging")
|
"IceCream-Cpp is a C++ library for @code{printf} debugging. It is
|
||||||
(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
|
inspired by the @url{https://github.com/gruns/icecream, Python library} of the
|
||||||
same name.")
|
same name.")
|
||||||
(license license:expat))))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public google-highway
|
(define-public google-highway
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue