rekado pushed a commit to branch master
in repository guix.
commit 973075a091843a881d74e74748ff65075376aa2e
Author: Ricardo Wurmus <[email protected]>
Date: Tue Feb 13 12:03:09 2018 +0100
gnu: ghc-haskeline: Update to 0.7.4.2.
* gnu/packages/haskell.scm (ghc-haskeline): Update to 0.7.4.2.
[inputs]: Add ghc-stm.
---
gnu/packages/haskell.scm | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index 5336a21..1b545e0 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -6211,7 +6211,7 @@ been observed, so this library should be suitable for
high performance scenarios
(define-public ghc-haskeline
(package
(name "ghc-haskeline")
- (version "0.7.2.3")
+ (version "0.7.4.2")
(source
(origin
(method url-fetch)
@@ -6220,12 +6220,13 @@ been observed, so this library should be suitable for
high performance scenarios
version ".tar.gz"))
(sha256
(base32
- "09wd6sxgn65xxpk7dhy1cg3ywlbk0ccqq7xylycwk4zazy3gjgkd"))))
+ "1sxhdhy9asinxn0gvd4zandbk6xkb04vy1y7lmh66f9jv66fqhsm"))))
(build-system haskell-build-system)
- (inputs
- `(("ncurses" ,ncurses)))
(arguments
`(#:configure-flags (list "-fterminfo")))
+ (inputs
+ `(("ncurses" ,ncurses)
+ ("ghc-stm" ,ghc-stm)))
(home-page "https://github.com/judah/haskeline")
(synopsis "Command-line interface for user input")
(description