diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2022-08-22 10:39:44 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2022-08-23 16:37:35 +0300 |
commit | 47316120b73dd0a00b3b7fc38a2e7caaf5e30816 (patch) | |
tree | d39983af8a754e795178113a73e3ad611ebdfc7a /gnu/packages/haskell.scm | |
parent | b4b7b236fa4a19aa9985e57499d2714436e69cdc (diff) | |
download | guix-47316120b73dd0a00b3b7fc38a2e7caaf5e30816.tar.gz |
gnu: ghc-8.10: Build using ghc-8.6.
* gnu/packages/haskell.scm (ghc-8.10)[native-inputs]: Replace ghc-8.8 with ghc-8.6.
Diffstat (limited to 'gnu/packages/haskell.scm')
-rw-r--r-- | gnu/packages/haskell.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm index 547af248e4..8a3c8d44c7 100644 --- a/gnu/packages/haskell.scm +++ b/gnu/packages/haskell.scm @@ -876,7 +876,8 @@ interactive environment for the functional language Haskell.") (sha256 (base32 "179ws2q0dinl1a39wm9j37xzwm84zfz3c5543vz8v479khigdvp3")))) (native-inputs - `(("ghc-bootstrap" ,ghc-8.8) + `(;; GHC 8.10.7 must be built with GHC >= 8.6. + ("ghc-bootstrap" ,ghc-8.6) ("ghc-testsuite" ,(origin (method url-fetch) |