summaryrefslogtreecommitdiff
path: root/gnu/packages/haskell-web.scm
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2018-02-13 10:43:15 +0100
committerRicardo Wurmus <rekado@elephly.net>2018-02-13 13:37:39 +0100
commit95796f81a68696f13e345654f1424aeaa45a0d07 (patch)
tree3a7adf95fca46f8ca59b940e2c201af1809565e4 /gnu/packages/haskell-web.scm
parent64b5cce93a3fcaa54944193095f401b1c0fd83c6 (diff)
downloadguix-patches-95796f81a68696f13e345654f1424aeaa45a0d07.tar
guix-patches-95796f81a68696f13e345654f1424aeaa45a0d07.tar.gz
gnu: ghc-aeson-pretty: Update to 0.8.5.
* gnu/packages/haskell-web.scm (ghc-aeson-pretty): Update to 0.8.5. [inputs]: Add ghc-base-compat and ghc-scientific.
Diffstat (limited to 'gnu/packages/haskell-web.scm')
-rw-r--r--gnu/packages/haskell-web.scm9
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/haskell-web.scm b/gnu/packages/haskell-web.scm
index 1973e635cc..a24ee4b7c0 100644
--- a/gnu/packages/haskell-web.scm
+++ b/gnu/packages/haskell-web.scm
@@ -780,7 +780,7 @@ naming: in Greek mythology, Aeson was the father of Jason.)")
(define-public ghc-aeson-pretty
(package
(name "ghc-aeson-pretty")
- (version "0.8.2")
+ (version "0.8.5")
(source (origin
(method url-fetch)
(uri (string-append
@@ -788,14 +788,15 @@ naming: in Greek mythology, Aeson was the father of Jason.)")
version ".tar.gz"))
(sha256
(base32
- "1c5r1w1hcv297pmj9yjpz9al22k3mh61gimi37wddga02212kd3c"))))
+ "1yd98972srlbkn0f2jhrb3f443j9wnq2fnw5gbxjxzmkcinfh5yx"))))
(build-system haskell-build-system)
(inputs
`(("ghc-aeson" ,ghc-aeson)
+ ("ghc-base-compat" ,ghc-base-compat)
+ ("ghc-scientific" ,ghc-scientific)
("ghc-vector" ,ghc-vector)
("ghc-text" ,ghc-text)
- ("ghc-unordered-containers"
- ,ghc-unordered-containers)
+ ("ghc-unordered-containers" ,ghc-unordered-containers)
("ghc-attoparsec" ,ghc-attoparsec)
("ghc-cmdargs" ,ghc-cmdargs)))
(home-page "https://github.com/informatikr/aeson-pretty")