Pad version number to 0.1.0.0
[ghc-prim.git] / ghc-prim.cabal
1 name:           ghc-prim
2 version:        0.1.0.0
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.Types
22         GHC.Unit
23     c-sources:
24         cbits/longlong.c
25     extensions: CPP, MagicHash, ForeignFunctionInterface, UnliftedFFITypes,
26                 UnboxedTuples, EmptyDataDecls, NoImplicitPrelude
27     -- We need to set the package name to ghc-prim (without a version number)
28     -- as it's magic.
29     ghc-options: -package-name ghc-prim
30 }