Tuple datatypes are now in GHC.Tuple (they were in base:Data.Tuple before)
[ghc-prim.git] / ghc-prim.cabal
1 name:           ghc-prim
2 version:        0.1
3 license:        BSD3
4 license-file:   LICENSE
5 maintainer:     libraries@haskell.org
6 synopsis:       GHC primitives
7 description:
8     GHC primitives.
9 cabal-version:  >=1.2
10 build-type: Custom
11
12 Library {
13     exposed-modules:
14         GHC.Bool
15         GHC.Generics
16         GHC.Ordering
17         GHC.PrimopWrappers
18         GHC.IntWord32
19         GHC.IntWord64
20         GHC.Tuple
21         GHC.Unit
22     c-sources:
23         cbits/longlong.c
24     extensions: CPP, MagicHash, ForeignFunctionInterface, UnliftedFFITypes
25     -- We need to set the package name to ghc-prim (without a version number)
26     -- as it's magic.
27     ghc-options: -package-name ghc-prim
28 }