import: hackage: Update list of ghc-included packages.

It turns out the list in the release notes is incomplete.
This updates the list from /gnu/store/<hash>-ghc-8.4.3/lib/ghc-8.4.3.

* guix/import/hackage.scm (ghc-standard-libraries): Update list.

Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
Robert Vollmert 2019-07-04 09:57:30 +02:00 committed by Ricardo Wurmus
parent 6657b0711e
commit 1daca4f3e5
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 7 additions and 1 deletions

View File

@ -3,6 +3,7 @@
;;; Copyright © 2016 Eric Bavier <bavier@member.fsf.org> ;;; Copyright © 2016 Eric Bavier <bavier@member.fsf.org>
;;; Copyright © 2016 ng0 <ng0@n0.is> ;;; Copyright © 2016 ng0 <ng0@n0.is>
;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net> ;;; Copyright © 2018 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2019 Robert Vollmert <rob@vllmrt.net>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -52,7 +53,7 @@
(define ghc-standard-libraries (define ghc-standard-libraries
;; List of libraries distributed with ghc (8.4.3). ;; List of libraries distributed with ghc (8.4.3).
;; https://downloads.haskell.org/~ghc/8.4.3/docs/html/users_guide/8.4.3-notes.html ;; Contents of ...-ghc-8.4.3/lib/ghc-8.4.3.
'("ghc" '("ghc"
"cabal" ;; in the output of `ghc-pkg list` Cabal is uppercased, but "cabal" ;; in the output of `ghc-pkg list` Cabal is uppercased, but
;; hackage-name->package-name takes this into account. ;; hackage-name->package-name takes this into account.
@ -65,7 +66,9 @@
"deepseq" "deepseq"
"directory" "directory"
"filepath" "filepath"
"ghc"
"ghc-boot" "ghc-boot"
"ghc-boot-th"
"ghc-compact" "ghc-compact"
"ghc-prim" "ghc-prim"
"ghci" "ghci"
@ -74,8 +77,11 @@
"integer-gmp" "integer-gmp"
"mtl" "mtl"
"parsec" "parsec"
"pretty"
"process" "process"
"stm"
"template-haskell" "template-haskell"
"terminfo"
"text" "text"
"time" "time"
"transformers" "transformers"