diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-02-12 20:34:51 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-02-13 13:37:33 +0100 |
commit | 037181ed23a499c0f49c1e0e5473f44182e170de (patch) | |
tree | 0c07d23f6040a4b2ed3d4c9a1388892c6c44861b | |
parent | 82674ed948d55d1d9782db05486147dc1db471bf (diff) | |
download | patches-037181ed23a499c0f49c1e0e5473f44182e170de.tar patches-037181ed23a499c0f49c1e0e5473f44182e170de.tar.gz |
gnu: ghc-old-time: Allow building with GHC 8.
* gnu/packages/haskell.scm (ghc-old-time)[arguments]: Allow building with
newer version of "base".
-rw-r--r-- | gnu/packages/haskell.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index c253deb628..1fd856eb2c 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -1355,6 +1355,8 @@ date and time formats.") (base32 "1h9b26s3kfh2k0ih4383w90ibji6n0iwamxp6rfp2lbq1y5ibjqw")))) (build-system haskell-build-system) + (arguments + `(#:configure-flags (list "--allow-newer=base"))) (inputs `(("ghc-old-locale" ,ghc-old-locale))) (home-page "https://hackage.haskell.org/package/old-time") |