diff options
author | Timothy Sample <samplet@ngyro.com> | 2019-10-31 10:09:43 -0400 |
---|---|---|
committer | Timothy Sample <samplet@ngyro.com> | 2019-11-20 20:48:07 -0500 |
commit | b45de2bf24fce0bad6c3c1791ce3c60f52dd901a (patch) | |
tree | 973778d50fd8457150a9391d23376baa9803f1a4 | |
parent | ca01f8d3af44494c1b030230fc34fcc925dfc8f2 (diff) | |
download | patches-b45de2bf24fce0bad6c3c1791ce3c60f52dd901a.tar patches-b45de2bf24fce0bad6c3c1791ce3c60f52dd901a.tar.gz |
gnu: ghc-math-functions: Update to 0.3.3.0.
* gnu/packages/haskell-xyz.scm (ghc-math-functions): Update to 0.3.3.0.
[inputs]: Add 'ghc-data-default-class'.
-rw-r--r-- | gnu/packages/haskell-xyz.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index d830dad95d..799b3d8306 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -6039,7 +6039,7 @@ same time is a literate Haskell program.") (define-public ghc-math-functions (package (name "ghc-math-functions") - (version "0.2.1.0") + (version "0.3.3.0") (source (origin (method url-fetch) @@ -6048,11 +6048,12 @@ same time is a literate Haskell program.") "math-functions-" version ".tar.gz")) (sha256 (base32 - "1sv5vabsx332v1lpb6v3jv4zrzvpx1n7yprzd8wlcda5vsc5a6zp")))) + "1s5nbs40sc3r4z08n0j8bw40cy0zkp03fjjn3p27zkd4fvm9kib3")))) (build-system haskell-build-system) (arguments `(#:tests? #f)) ; FIXME: 1 test fails. (inputs - `(("ghc-vector" ,ghc-vector) + `(("ghc-data-default-class" ,ghc-data-default-class) + ("ghc-vector" ,ghc-vector) ("ghc-vector-th-unbox" ,ghc-vector-th-unbox))) (native-inputs `(("ghc-hunit" ,ghc-hunit) |