diff options
| author | Ian Lynagh <igloo@earth.li> | 2009-07-22 13:15:07 +0000 |
|---|---|---|
| committer | Ian Lynagh <igloo@earth.li> | 2009-07-22 13:15:07 +0000 |
| commit | 12e1e1f54dca1776facdf66af1c8724f1a954683 (patch) | |
| tree | 631213a4bbba6c61854b96d50e784db3a2515522 /libraries/integer-simple/integer-simple.cabal | |
| parent | 24afeb6dea9ebe0b5bf59eef237ba11c78244c5b (diff) | |
| download | haskell-12e1e1f54dca1776facdf66af1c8724f1a954683.tar.gz | |
Follow changes in GHC and the other libraries
Diffstat (limited to 'libraries/integer-simple/integer-simple.cabal')
| -rw-r--r-- | libraries/integer-simple/integer-simple.cabal | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/libraries/integer-simple/integer-simple.cabal b/libraries/integer-simple/integer-simple.cabal new file mode 100644 index 0000000000..b137dd8997 --- /dev/null +++ b/libraries/integer-simple/integer-simple.cabal @@ -0,0 +1,22 @@ +name: integer-simple +version: 0.1 +license: BSD3 +license-file: LICENSE +maintainer: igloo@earth.li +synopsis: Simple Integer library +description: + This package contains an simple Integer library. +cabal-version: >=1.2 +build-type: Simple + +Library { + build-depends: ghc-prim + exposed-modules: GHC.Integer + GHC.Integer.Simple.Internals + other-modules: GHC.Integer.Type + extensions: CPP, MagicHash, BangPatterns, UnboxedTuples, + ForeignFunctionInterface, UnliftedFFITypes + -- We need to set the package name to integer-simple + -- (without a version number) as it's magic. + ghc-options: -package-name integer-simple -Wall -Werror +} |
