forked from conal/NumInstances
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNumInstances.cabal
36 lines (31 loc) · 1.35 KB
/
NumInstances.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
Name: NumInstances
Version: 1.3
Synopsis: Instances of numeric classes for functions and tuples
Description: Instances of numeric classes for functions and tuples.
Import "Data.NumInstances" to get all the instances.
If you want only function or only tuple instances, import
"Data.NumInstances.Function" or "Data.NumInstances.Tuple".
License: BSD3
License-file: LICENSE
Author: Conal Elliott
Maintainer: [email protected]
Category: Data
Build-type: Simple
Cabal-version: >=1.8
Homepage: https://github.com/conal/NumInstances
Extra-Source-Files: src-draconian-Num/Data/NumInstances/PreRequisites.hs,
src-relaxed-Num/Data/NumInstances/PreRequisites.hs
Source-Repository head
type: git
location: git://github.com/conal/NumInstances.git
Library
hs-Source-Dirs: src
Exposed-modules: Data.NumInstances, Data.NumInstances.Function, Data.NumInstances.Tuple
Build-Depends: base<5
Other-modules: Data.NumInstances.Util, Data.NumInstances.PreRequisites
if impl(ghc < 7.4)
hs-Source-Dirs: src-draconian-Num
else
hs-Source-Dirs: src-relaxed-Num
-- This module used to be part of vector-space
ghc-prof-options: -prof -auto-all