diff options
author | Timothy Sample <samplet@ngyro.com> | 2018-08-29 01:14:48 -0400 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-10-01 12:12:21 +0200 |
commit | bc368781b6b3d81442a1dda44d93361b18eb987a (patch) | |
tree | bf646448b3897c1285ea120420e1c75e9d066ead /gnu/packages/haskell.scm | |
parent | b9f67d10bcbd969884e3f579d1dd9ff585b2016a (diff) | |
download | guix-bc368781b6b3d81442a1dda44d93361b18eb987a.tar guix-bc368781b6b3d81442a1dda44d93361b18eb987a.tar.gz |
gnu: ghc-persistent: Update to 2.8.2.
* gnu/packages/haskell.scm (ghc-persistent): Update to 2.8.2.
[inputs]: Add ghc-void.
Diffstat (limited to 'gnu/packages/haskell.scm')
-rw-r--r-- | gnu/packages/haskell.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index 351420c108..e07b3423fd 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -10027,7 +10027,7 @@ Haskell data types to and from HTTP API data.") (define-public ghc-persistent (package (name "ghc-persistent") - (version "2.7.3.1") + (version "2.8.2") (source (origin (method url-fetch) @@ -10036,7 +10036,7 @@ Haskell data types to and from HTTP API data.") "persistent-" version ".tar.gz")) (sha256 (base32 - "1jbvavdvr9qz5ld7vf6l1jgiadhmxx6zc4vqsdk9ivfq6d5wlg1p")))) + "1h0yijbf1yiwl50klyafy4ln99j8bib4kgbzviw7fc4y4mwv4sv9")))) (build-system haskell-build-system) (inputs `(("ghc-old-locale" ,ghc-old-locale) ("ghc-text" ,ghc-text) @@ -10061,7 +10061,8 @@ Haskell data types to and from HTTP API data.") ("ghc-silently" ,ghc-silently) ("ghc-fast-logger" ,ghc-fast-logger) ("ghc-scientific" ,ghc-scientific) - ("ghc-tagged" ,ghc-tagged))) + ("ghc-tagged" ,ghc-tagged) + ("ghc-void" ,ghc-void))) (native-inputs `(("ghc-hspec" ,ghc-hspec))) (home-page "https://www.yesodweb.com/book/persistent") (synopsis "Type-safe, multi-backend data serialization for Haskell") |