binary-bits/binary-bits.cabal
Lennart Kolmodin 8bb6f37f03 Need to set default-language when forcing cabal-1.10
Setting it to Haskell98
2011-06-02 02:44:43 +04:00

42 lines
1.2 KiB
Plaintext

-- http://www.haskell.org/cabal/release/cabal-latest/doc/users-guide/authors.html#pkg-descr.
name: binary-bits
version: 0.1
synopsis: Bit parsing on top of binary.
description: Bit parsing on top of binary. Provides functions to
read parts of 8/16/32/64 words.
license: BSD3
license-file: LICENSE
author: Lennart Kolmodin <kolmodin@gentoo.org>
maintainer: Lennart Kolmodin <kolmodin@gentoo.org>
-- copyright:
category: Data
build-type: Simple
-- Extra files to be distributed with the package, such as examples or
-- a README.
-- extra-source-files:
-- Constraint on the version of Cabal needed to build this package.
cabal-version: >=1.10
library
exposed-modules: BitsGet, BitsPut, Bits
build-depends: base==4.*, binary, bytestring
default-language: Haskell98
-- other-modules:
-- build-tools:
test-suite qc
type: exitcode-stdio-1.0
main-is: BitsQC.hs
default-language: Haskell98
build-depends: binary-bits, binary,
base==4.*, haskell98, bytestring,
QuickCheck>=2, random,
test-framework,
test-framework-quickcheck2
ghc-options: -fhpc