mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: Add ghc-aeson-better-errors.
* gnu/packages/haskell-web.scm (ghc-aeson-better-errors): New variable. Signed-off-by: Christopher Baines <mail@cbaines.net>
This commit is contained in:
parent
03d4ea83bf
commit
e345d93825
1 changed files with 33 additions and 0 deletions
|
@ -1005,6 +1005,39 @@ (define-public ghc-aeson-qq
|
|||
of a JSON value into a @code{Data.Aeson.Value}.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ghc-aeson-better-errors
|
||||
(package
|
||||
(name "ghc-aeson-better-errors")
|
||||
(version "0.9.1.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"mirror://hackage/package/aeson-better-errors/aeson-better-errors-"
|
||||
version
|
||||
".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"09vkyrhwak3bmpfsqcd2az8hfqqkxyhg468hv5avgisy0nzh3w38"))))
|
||||
(build-system haskell-build-system)
|
||||
(inputs
|
||||
`(("ghc-aeson" ,ghc-aeson)
|
||||
("ghc-unordered-containers" ,ghc-unordered-containers)
|
||||
("ghc-dlist" ,ghc-dlist)
|
||||
("ghc-scientific" ,ghc-scientific)
|
||||
("ghc-vector" ,ghc-vector)
|
||||
("ghc-transformers-compat" ,ghc-transformers-compat)
|
||||
("ghc-void" ,ghc-void)))
|
||||
(home-page
|
||||
"https://github.com/hdgarrood/aeson-better-errors")
|
||||
(synopsis
|
||||
"Better error messages when decoding JSON values in Haskell")
|
||||
(description
|
||||
"Gives you the tools to build parsers to decode JSON values, and gives
|
||||
good error messages when parsing fails. See also
|
||||
@url{http://harry.garrood.me/blog/aeson-better-errors/}.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ghc-multipart
|
||||
(package
|
||||
(name "ghc-multipart")
|
||||
|
|
Loading…
Reference in a new issue