summaryrefslogtreecommitdiff
path: root/hmatrix.cabal
diff options
context:
space:
mode:
authorJed Brown <jed@59A2.org>2008-02-17 16:22:34 +0000
committerJed Brown <jed@59A2.org>2008-02-17 16:22:34 +0000
commit003b8db7a864bbea3772cd70906153bd36d1f7ac (patch)
tree2336c052eb549d21fdd30ba068676010193b7e57 /hmatrix.cabal
parent63cfdd6dd1b31a303147f26cf72481640f962a3c (diff)
Get Storable instance for Complex from storable-complex.
Diffstat (limited to 'hmatrix.cabal')
-rw-r--r--hmatrix.cabal7
1 files changed, 4 insertions, 3 deletions
diff --git a/hmatrix.cabal b/hmatrix.cabal
index b9c0e78..049036c 100644
--- a/hmatrix.cabal
+++ b/hmatrix.cabal
@@ -1,5 +1,5 @@
1Name: hmatrix 1Name: hmatrix
2Version: 0.2.0.0 2Version: 0.2.0.1
3License: GPL 3License: GPL
4License-file: LICENSE 4License-file: LICENSE
5Author: Alberto Ruiz 5Author: Alberto Ruiz
@@ -16,15 +16,16 @@ Category: Numerical, Math
16tested-with: GHC ==6.6.1, GHC ==6.8.1, GHC ==6.8.2 16tested-with: GHC ==6.6.1, GHC ==6.8.1, GHC ==6.8.2
17 17
18cabal-version: >=1.2 18cabal-version: >=1.2
19build-type: Simple
19 20
20flag splitBase 21flag splitBase
21 description: Choose the new smaller, split-up base package. 22 description: Choose the new smaller, split-up base package.
22 23
23library 24library
24 if flag(splitBase) 25 if flag(splitBase)
25 build-depends: base >= 3, array 26 build-depends: base >= 3, array, storable-complex
26 else 27 else
27 build-depends: base < 3 28 build-depends: base < 3, storable-complex
28 29
29 ghc-options: -O 30 ghc-options: -O
30 31