summaryrefslogtreecommitdiff
path: root/base32-bytestring.cabal
diff options
context:
space:
mode:
authorjoe <joe@jerkface.net>2016-08-20 03:59:31 -0400
committerjoe <joe@jerkface.net>2016-08-20 03:59:31 -0400
commit119f0e5fede64007be968bb038f562099a87267f (patch)
treeed437347d4f9e84cc4004fa457b0f901bfcd50b7 /base32-bytestring.cabal
parent3a6fe39aa734fd053baababdc8afa413999c8cd1 (diff)
Removed dependency on bits-extras.HEADmaster
Diffstat (limited to 'base32-bytestring.cabal')
-rw-r--r--base32-bytestring.cabal7
1 files changed, 6 insertions, 1 deletions
diff --git a/base32-bytestring.cabal b/base32-bytestring.cabal
index a96d3fa..aa82911 100644
--- a/base32-bytestring.cabal
+++ b/base32-bytestring.cabal
@@ -20,6 +20,10 @@ description:
20extra-source-files: README.md 20extra-source-files: README.md
21 , ChangeLog 21 , ChangeLog
22 22
23flag bits-extras
24 description: Use more-effecient bits-extras bitwise operations.
25 default: False
26
23source-repository head 27source-repository head
24 type: git 28 type: git
25 location: git://github.com/pxqr/base32-bytestring.git 29 location: git://github.com/pxqr/base32-bytestring.git
@@ -41,7 +45,8 @@ library
41 build-depends: base == 4.* 45 build-depends: base == 4.*
42 , bytestring >= 0.9 46 , bytestring >= 0.9
43 , cpu == 0.1.* 47 , cpu == 0.1.*
44 , bits-extras == 0.1.* 48 if flag(bits-extras)
49 build-depends: bits-extras == 0.1.*
45 ghc-options: -O2 -Wall 50 ghc-options: -O2 -Wall
46 51
47test-suite spec 52test-suite spec