diff options
author | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2024-07-09 09:38:36 +0200 |
---|---|---|
committer | Liliana Marie Prikler <liliana.prikler@gmail.com> | 2024-07-27 11:25:23 +0200 |
commit | e165382c16fb846e987cfc8fe9da6db90c17afc9 (patch) | |
tree | a2042dc5daba7512c677a1fa3e76907451a01fa8 /gnu | |
parent | 009fb462efcc42585e34b939f800b5f6785f85cf (diff) | |
download | guix-e165382c16fb846e987cfc8fe9da6db90c17afc9.tar.gz guix-e165382c16fb846e987cfc8fe9da6db90c17afc9.zip |
gnu: zug: Update to 0.1.1.
* gnu/packages/cpp.scm (zug): Update to 0.1.1.
Change-Id: I0e86256f986bab5d97081ddd9ef85375643a6997
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cpp.scm | 42 |
1 files changed, 20 insertions, 22 deletions
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm index ee945fcc68..fe822e8311 100644 --- a/gnu/packages/cpp.scm +++ b/gnu/packages/cpp.scm @@ -1816,29 +1816,27 @@ written in C++.") (license license:boost1.0))) (define-public zug - (let ((commit "d7e814b45fceceee3cb1442997d8b46cee4764ec") - (revision "0")) - (package - (name "zug") - (version (git-version "0.0.0" revision commit)) - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/arximboldi/zug") - (commit commit))) - (file-name (git-file-name name version)) - (sha256 - (base32 "1ww4prh763n81kzzijak8z495varlvqml4ip7i09klqnw6ya72fc")) - (modules '((guix build utils))) - (snippet #~(delete-file-recursively "tools")))) - (build-system cmake-build-system) - (arguments (list #:test-target "check")) - (native-inputs (list boost catch2)) - (home-page "https://sinusoid.es/zug") - (synopsis "Higher-order sequence transformers") - (description "Zug is a C++ library providing transducers, that is, + (package + (name "zug") + (version "0.1.1") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/arximboldi/zug") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "06vsbzx4ripidpb6ia7y1y8pmjk6gxzr93ilby90ahj6p2x08baf")) + (modules '((guix build utils))) + (snippet #~(delete-file-recursively "tools")))) + (build-system cmake-build-system) + (arguments (list #:test-target "check")) + (native-inputs (list boost catch2)) + (home-page "https://sinusoid.es/zug") + (synopsis "Higher-order sequence transformers") + (description "Zug is a C++ library providing transducers, that is, composable sequential transformations.") - (license license:boost1.0)))) + (license license:boost1.0))) (define-public lager (let ((commit "2016df38be90ee176bcb73ea414be2318bc1ef31") |