summary refs log tree commit diff
diff options
context:
space:
mode:
authorLars-Dominik Braun <lars@6xq.net>2021-09-14 13:15:07 +0200
committerLars-Dominik Braun <lars@6xq.net>2021-10-08 09:13:51 +0200
commit8b4d3a523fc20ba7c3c65e6a60d6dd11e789831f (patch)
tree2eeefe894994bbe3a2afc44ff7ce5a4878f9e0c5
parent75c91e6b43ea6a6e7d4b877abdf8f675aa498763 (diff)
downloadguix-8b4d3a523fc20ba7c3c65e6a60d6dd11e789831f.tar.gz
import: hackage: Update GHC’s standard libraries.
* guix/import/hackage.scm (ghc-standard-libraries): Add exceptions
library.
-rw-r--r--guix/import/hackage.scm5
1 files changed, 3 insertions, 2 deletions
diff --git a/guix/import/hackage.scm b/guix/import/hackage.scm
index f94a1e7087..0a10c421bb 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"