-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhex.cabal
More file actions
38 lines (29 loc) · 816 Bytes
/
hex.cabal
File metadata and controls
38 lines (29 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: hex
version: 0.1
category: Codec
synopsis: A library for creating hexadecimal representations
license: BSD3
license-file: LICENSE
author: Ian Taylor
maintainer: Ian Taylor <ibtaylor@gmail.com>
stability: Experimental
extra-source-files: README
-- -- -- -- -- -- -- -- -- --
cabal-version: >= 1.6
build-type: Custom
-- -- -- -- -- -- -- -- -- --
library
exposed-modules: Codec.Hex
build-depends:
base == 4.*,
vector == 0.*,
bytestring == 0.9.*
ghc-options: -Wall -O2
if impl(ghc >= 6.8)
ghc-options: -fwarn-tabs
hs-source-dirs:
src
-- -- -- -- -- -- -- -- -- --
source-repository head
type: git
location: git://github.com/ibtaylor/hex.git