guix-devel
[Top][All Lists]
Advanced

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

Re: [PATCH 19/43] gnu: Add ghc-stringbuilder.


From: Eric Bavier
Subject: Re: [PATCH 19/43] gnu: Add ghc-stringbuilder.
Date: Mon, 19 Oct 2015 09:20:04 -0500

On Thu, 15 Oct 2015 14:21:13 +0200
Paul van der Walt <address@hidden> wrote:

> * gnu/packages/haskell.scm (ghc-stringbuilder): New variable.

> diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
> index cb2af0a..ad6547b 100644
> --- a/gnu/packages/haskell.scm
> +++ b/gnu/packages/haskell.scm
> @@ -652,6 +675,29 @@ bindings are a direct translation of the C bindings.")
>  parts.")
>      (license lgpl2.1)))
>  
> +(define-public ghc-stringbuilder
> +  (package
> +    (name "ghc-stringbuilder")
> +    (version "0.5.0")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri (string-append
> +             
> "http://hackage.haskell.org/package/stringbuilder/stringbuilder-";
> +             version
> +             ".tar.gz"))
> +       (sha256
> +        (base32
> +         "1ap95xphqnrhv64c2a137wqslkdmb2jjd9ldb17gs1pw48k8hrl9"))))
> +    (build-system haskell-build-system)
> +    (arguments `(#:tests? #f)) ; circular dependencies with tests enabled
> +    (inputs
> +     `(("ghc-quickcheck" ,ghc-quickcheck)))

Is this input still necessary with tests disabled?

> +    (home-page "http://hackage.haskell.org/package/stringbuilder";)
> +    (synopsis "A writer monad for multi-line string literals")
> +    (description "A writer monad for multi-line string literals")
> +    (license expat)))
> +
>  (define-public ghc-zlib
>    (package
>      (name "ghc-zlib")




reply via email to

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