diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-02-13 12:03:09 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-02-13 13:37:41 +0100 |
commit | 973075a091843a881d74e74748ff65075376aa2e (patch) | |
tree | 2e43f016349afa776c9a708569bee1bcd70f5e4b /gnu/packages/haskell.scm | |
parent | 54afb52e1fba45e266b4222d2f25f518522671c2 (diff) | |
download | patches-973075a091843a881d74e74748ff65075376aa2e.tar patches-973075a091843a881d74e74748ff65075376aa2e.tar.gz |
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.
Diffstat (limited to 'gnu/packages/haskell.scm')
-rw-r--r-- | gnu/packages/haskell.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index 5336a2149f..1b545e02e9 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 |