diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2021-10-25 14:28:34 +0200 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2021-11-02 09:32:49 +0100 |
commit | 8216e89c8bdcee6e6bde27efe6620d45b4222318 (patch) | |
tree | 2c3e2a9d9c3f4b8dfef2c0f7159ec48029963f89 /gnu/packages | |
parent | cf4ee324a502eaed687cf5d803e152745d924097 (diff) | |
download | guix-8216e89c8bdcee6e6bde27efe6620d45b4222318.tar.gz guix-8216e89c8bdcee6e6bde27efe6620d45b4222318.zip |
gnu: ghc-async: Update to 2.2.4.
* gnu/packages/haskell-xyz.scm (ghc-async): Update to 2.2.4.
[inputs]: Remove ghc-hunit, ghc-test-framework, and ghc-test-framework-hunit.
[native-inputs]: Add ghc-hunit, ghc-test-framework, and ghc-test-framework-hunit.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/haskell-xyz.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index d87c457380..561080de36 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -501,7 +501,7 @@ similar operations (e.g. @code{Either}, @code{These}).") (define-public ghc-async (package (name "ghc-async") - (version "2.2.3") + (version "2.2.4") (source (origin (method url-fetch) @@ -511,11 +511,12 @@ similar operations (e.g. @code{Either}, @code{These}).") ".tar.gz")) (sha256 (base32 - "0p4k6872pj0aykbnc19ilam1h8fgskxlwpyg5qisaivr0fhg6yj6")))) + "09d7w3krfhnmf9dp6yffa9wykinhw541wibnjgnlyv77w1dzhka8")))) (build-system haskell-build-system) (inputs - `(("ghc-hashable" ,ghc-hashable) - ("ghc-hunit" ,ghc-hunit) + `(("ghc-hashable" ,ghc-hashable))) + (native-inputs + `(("ghc-hunit" ,ghc-hunit) ("ghc-test-framework" ,ghc-test-framework) ("ghc-test-framework-hunit" ,ghc-test-framework-hunit))) (home-page "https://github.com/simonmar/async") |