lbraun pushed a commit to branch wip-haskell
in repository guix.
commit e66d75857950e6ee949aed662b367e647c3bc006
Author: Lars-Dominik Braun <[email protected]>
AuthorDate: Tue Sep 14 13:15:07 2021 +0200
import: hackage: Update GHC’s standard libraries.
* guix/import/hackage.scm (ghc-standard-libraries): Add exceptions
library.
---
guix/import/hackage.scm | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/guix/import/hackage.scm b/guix/import/hackage.scm
index f94a1e7..0a10c42 100644
--- a/guix/import/hackage.scm
+++ b/guix/import/hackage.scm
@@ -54,8 +54,8 @@
hackage-package?))
(define ghc-standard-libraries
- ;; List of libraries distributed with ghc (8.6.5).
- ;; Contents of ...-ghc-8.6.5/lib/ghc-8.6.5.
+ ;; List of libraries distributed with ghc (as of 8.10.7).
+ ;; Contents of …-ghc-8.10.7/lib/ghc-8.10.7
'("ghc"
"cabal" ;; in the output of `ghc-pkg list` Cabal is uppercased, but
;; hackage-name->package-name takes this into account.
@@ -67,6 +67,7 @@
"containers"
"deepseq"
"directory"
+ "exceptions"
"filepath"
"ghc"
"ghc-boot"