samplet pushed a commit to branch wip-haskell-updates
in repository guix.
commit fd61dbf14a1c4f9a7c3bfdb88b94a1ee8b04a323
Author: Timothy Sample <[email protected]>
Date: Thu Oct 31 13:07:45 2019 -0400
gnu: ghc-haskell-src-meta: Update to 0.8.3.
* gnu/packages/haskell-xyz.scm (ghc-haskell-src-meta): Update to 0.8.3.
[native-inputs]: Remove 'ghc-test-framework' and
'ghc-test-framework-hunit'; add 'ghc-tasty' and 'ghc-tasty-hunit'.
---
gnu/packages/haskell-xyz.scm | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index 46026eb..a1e94f4 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -4584,7 +4584,7 @@ patterns as per the HaRP extension as well as HSX-style
embedded XML syntax.")
(define-public ghc-haskell-src-meta
(package
(name "ghc-haskell-src-meta")
- (version "0.8.0.3")
+ (version "0.8.3")
(source (origin
(method url-fetch)
(uri (string-append "https://hackage.haskell.org/package/"
@@ -4592,7 +4592,7 @@ patterns as per the HaRP extension as well as HSX-style
embedded XML syntax.")
version ".tar.gz"))
(sha256
(base32
- "08jq156zv4m0fjq6712n99c1jwxnpa6kj6sq8ch0r1l0a1ay6ww4"))))
+ "17znnaqj2hnnfyc9p9xjzbs97h2jh1h4f4qbw648y3xa14wx5ra9"))))
(build-system haskell-build-system)
(inputs
`(("ghc-haskell-src-exts" ,ghc-haskell-src-exts)
@@ -4600,8 +4600,8 @@ patterns as per the HaRP extension as well as HSX-style
embedded XML syntax.")
("ghc-th-orphans" ,ghc-th-orphans)))
(native-inputs
`(("ghc-hunit" ,ghc-hunit)
- ("ghc-test-framework" ,ghc-test-framework)
- ("ghc-test-framework-hunit" ,ghc-test-framework-hunit)))
+ ("ghc-tasty" ,ghc-tasty)
+ ("ghc-tasty-hunit" ,ghc-tasty-hunit)))
(home-page "https://hackage.haskell.org/package/haskell-src-meta")
(synopsis "Parse source to template-haskell abstract syntax")
(description