Archived
1
0
Fork 0

gnu: zug: Update to 0.1.1.

* gnu/packages/cpp.scm (zug): Update to 0.1.1.

Change-Id: I0e86256f986bab5d97081ddd9ef85375643a6997
This commit is contained in:
Liliana Marie Prikler 2024-07-09 09:38:36 +02:00
parent 009fb462ef
commit e165382c16
No known key found for this signature in database
GPG key ID: 442A84B8C70E2F87

View file

@ -1816,29 +1816,27 @@ written in C++.")
(license license:boost1.0))) (license license:boost1.0)))
(define-public zug (define-public zug
(let ((commit "d7e814b45fceceee3cb1442997d8b46cee4764ec") (package
(revision "0")) (name "zug")
(package (version "0.1.1")
(name "zug") (source (origin
(version (git-version "0.0.0" revision commit)) (method git-fetch)
(source (origin (uri (git-reference
(method git-fetch) (url "https://github.com/arximboldi/zug")
(uri (git-reference (commit (string-append "v" version))))
(url "https://github.com/arximboldi/zug") (file-name (git-file-name name version))
(commit commit))) (sha256
(file-name (git-file-name name version)) (base32 "06vsbzx4ripidpb6ia7y1y8pmjk6gxzr93ilby90ahj6p2x08baf"))
(sha256 (modules '((guix build utils)))
(base32 "1ww4prh763n81kzzijak8z495varlvqml4ip7i09klqnw6ya72fc")) (snippet #~(delete-file-recursively "tools"))))
(modules '((guix build utils))) (build-system cmake-build-system)
(snippet #~(delete-file-recursively "tools")))) (arguments (list #:test-target "check"))
(build-system cmake-build-system) (native-inputs (list boost catch2))
(arguments (list #:test-target "check")) (home-page "https://sinusoid.es/zug")
(native-inputs (list boost catch2)) (synopsis "Higher-order sequence transformers")
(home-page "https://sinusoid.es/zug") (description "Zug is a C++ library providing transducers, that is,
(synopsis "Higher-order sequence transformers")
(description "Zug is a C++ library providing transducers, that is,
composable sequential transformations.") composable sequential transformations.")
(license license:boost1.0)))) (license license:boost1.0)))
(define-public lager (define-public lager
(let ((commit "2016df38be90ee176bcb73ea414be2318bc1ef31") (let ((commit "2016df38be90ee176bcb73ea414be2318bc1ef31")