summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul van der Walt <paul@denknerd.org>2015-10-21 15:46:25 +0200
committerPaul van der Walt <paul@denknerd.org>2015-10-23 09:10:52 +0200
commit759756a992625940e26bdb6cc1f96731b1c8b90f (patch)
tree22fe417a459beb3c18327954df6177f064f209db
parentaa6f39127e7d4bd5783b4454f5b6b7cd243aa8b8 (diff)
import: hackage: Update GHC libraries for 7.10.2.
Update ghc-standard-libraries to match the output of `ghc-pkg list` when using GHC 7.10.2. * guix/import/hackage.scm (ghc-standard-libraries): Sort and update list of core GHC libraries.
-rw-r--r--guix/import/hackage.scm40
1 files changed, 19 insertions, 21 deletions
diff --git a/guix/import/hackage.scm b/guix/import/hackage.scm
index b5574a8d9fe..3baa514aa11 100644
--- a/guix/import/hackage.scm
+++ b/guix/import/hackage.scm
@@ -32,37 +32,35 @@
32 #:export (hackage->guix-package)) 32 #:export (hackage->guix-package))
33 33
34(define ghc-standard-libraries 34(define ghc-standard-libraries
35 ;; List of libraries distributed with ghc (7.8.4). We include GHC itself as 35 ;; List of libraries distributed with ghc (7.10.2). We include GHC itself as
36 ;; some packages list it. 36 ;; some packages list it.
37 '("ghc" 37 '("array"
38 "haskell98"
39 "hoopl"
40 "base" 38 "base"
41 "transformers" 39 "bin-package-db"
42 "deepseq"
43 "array"
44 "binary" 40 "binary"
45 "bytestring" 41 "bytestring"
42 "cabal" ;; in the output of `ghc-pkg list` Cabal is uppercased, but
43 ;; hackage-name->package-name takes this into account.
46 "containers" 44 "containers"
47 "time" 45 "deepseq"
48 "cabal" 46 "directory"
49 "bin-package-db" 47 "filepath"
48 "ghc"
50 "ghc-prim" 49 "ghc-prim"
50 "haskeline"
51 "hoopl"
52 "hpc"
51 "integer-gmp" 53 "integer-gmp"
52 "integer-simple" 54 "pretty"
53 "win32"
54 "template-haskell"
55 "process" 55 "process"
56 "haskeline" 56 "rts"
57 "template-haskell"
57 "terminfo" 58 "terminfo"
58 "directory" 59 "time"
59 "filepath" 60 "transformers"
60 "old-locale"
61 "unix" 61 "unix"
62 "old-time" 62 "win32"
63 "pretty" 63 "xhtml"))
64 "xhtml"
65 "hpc"))
66 64
67(define package-name-prefix "ghc-") 65(define package-name-prefix "ghc-")
68 66