gnu: Add ghc-microlens-ghc.

* gnu/packages/haskell.scm (ghc-microlens-ghc): New variable.
This commit is contained in:
Brian Leung 2019-07-18 07:22:31 +02:00 committed by Timothy Sample
parent ef803cb520
commit 38dd4c1da5
No known key found for this signature in database
GPG Key ID: 2AC6A5EC1C357C59
1 changed files with 26 additions and 0 deletions

View File

@ -11880,6 +11880,32 @@ mtl package. This package is a part of the
readme @uref{https://github.com/aelve/microlens#readme, on Github}.")
(license license:bsd-3)))
(define-public ghc-microlens-ghc
(package
(name "ghc-microlens-ghc")
(version "0.4.9.1")
(source
(origin
(method url-fetch)
(uri (string-append
"https://hackage.haskell.org/package/microlens-ghc/microlens-ghc-"
version
".tar.gz"))
(sha256
(base32
"03iwgg8zww9irv59l70c8yy7vzxir1zf66y12210xk91k5hq6jrj"))))
(build-system haskell-build-system)
(inputs `(("ghc-microlens" ,ghc-microlens)))
(home-page "https://github.com/monadfix/microlens")
(synopsis "Use @code{microlens} with GHC libraries like @code{array}")
(description "This library provides everything that @code{microlens}
provides plus instances to make @code{each}, @code{at}, and @code{ix}
usable with arrays, @code{ByteString}, and containers. This package is
a part of the @uref{http://hackage.haskell.org/package/microlens,
microlens} family; see the readme
@uref{https://github.com/aelve/microlens#readme, on Github}.")
(license license:bsd-3)))
(define-public ghc-stylish-haskell
(package
(name "ghc-stylish-haskell")