guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#63330] [PATCH 0/4] Functional programming? In my C++?! It's more li


From: Maxim Cournoyer
Subject: [bug#63330] [PATCH 0/4] Functional programming? In my C++?! It's more likely than you think!
Date: Sun, 07 May 2023 11:25:56 -0400
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux)

Hello,

Liliana Marie Prikler <liliana.prikler@gmail.com> writes:

> * gnu/packages/cpp.scm (zug): New variable.
> ---
>  gnu/packages/cpp.scm | 25 +++++++++++++++++++++++++
>  1 file changed, 25 insertions(+)
>
> diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
> index da3567b5ef..0ab7d0785b 100644
> --- a/gnu/packages/cpp.scm
> +++ b/gnu/packages/cpp.scm
> @@ -1423,6 +1423,31 @@ (define-public immer
>  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 
> composable

                                                                        ^,
I'd add a coma after "that is".

Otherwise LGTM.

-- 
Thanks,
Maxim





reply via email to

[Prev in Thread] Current Thread [Next in Thread]