-
Notifications
You must be signed in to change notification settings - Fork 0
/
units.cabal
52 lines (43 loc) · 1.49 KB
/
units.cabal
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: units
version: 0.1.0
synopsis: Calculations with type-safe physical units
homepage: http://hub.darcs.net/nand/units
license: BSD3
license-file: LICENSE
author: [email protected]
maintainer: [email protected]
stability: Experimental
category: Units
build-type: Simple
cabal-version: >=1.8
tested-with: GHC == 7.7.20121228
source-repository head
type: darcs
location: http://hub.darcs.net/nand/units
library
exposed-modules: Units
Units.TH
Units.Prelude
Units.SI
Units.Metric
Units.Convert
Units.Currency
other-modules: Units.Internal.Types
hs-source-dirs: src
build-depends: base == 4.7.*,
containers == 0.5.*,
template-haskell == 2.9.*,
singletons >= 0.10
ghc-options:
-Wall
-fno-warn-unused-matches
-fno-warn-name-shadowing
-fno-warn-type-defaults
-fno-warn-orphans
-fno-warn-unused-binds
test-suite tests
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Tests.hs
build-depends: base == 4.7.*,
units