summaryrefslogtreecommitdiff
path: root/packages/sundials/hmatrix-sundials.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'packages/sundials/hmatrix-sundials.cabal')
-rw-r--r--packages/sundials/hmatrix-sundials.cabal55
1 files changed, 55 insertions, 0 deletions
diff --git a/packages/sundials/hmatrix-sundials.cabal b/packages/sundials/hmatrix-sundials.cabal
new file mode 100644
index 0000000..532e9b4
--- /dev/null
+++ b/packages/sundials/hmatrix-sundials.cabal
@@ -0,0 +1,55 @@
1name: hmatrix-sundials
2version: 0.1.0.0
3synopsis: hmatrix interface to sundials
4description: Foo bar baz
5homepage: https://github.com/idontgetoutmuch/hmatrix/tree/sundials
6license: BSD3
7license-file: LICENSE
8author: Dominic Steinitz
9maintainer: dominic@steinitz.org
10copyright: Dominic Steinitz 2018, Novadiscovery 2018
11category: Math
12build-type: Simple
13extra-source-files: ChangeLog.md, README.md, diagrams/*.png
14extra-doc-files: diagrams/*.png
15cabal-version: >=1.10
16
17
18library
19 build-depends: base >=4.10 && <4.11,
20 inline-c >=0.6 && <0.7,
21 vector >=0.12 && <0.13,
22 template-haskell >=2.12 && <2.13,
23 containers >=0.5 && <0.6,
24 hmatrix>=0.18
25 extra-libraries: sundials_arkode
26 other-extensions: QuasiQuotes
27 hs-source-dirs: src
28 exposed-modules: Numeric.Sundials.ARKode.ODE
29 other-modules: Types,
30 Arkode
31 c-sources: src/helpers.c src/helpers.h
32 default-language: Haskell2010
33
34test-suite hmatrix-sundials-testsuite
35 type: exitcode-stdio-1.0
36 main-is: Main.hs
37 other-modules: Types,
38 Numeric.Sundials.ARKode.ODE,
39 Arkode
40 build-depends: base >=4.10 && <4.11,
41 inline-c >=0.6 && <0.7,
42 vector >=0.12 && <0.13,
43 template-haskell >=2.12 && <2.13,
44 containers >=0.5 && <0.6,
45 hmatrix>=0.18,
46 plots,
47 diagrams-lib,
48 diagrams-rasterific,
49 lens,
50 hspec
51 hs-source-dirs: src
52 default-language: Haskell2010
53 extra-libraries: sundials_arkode
54 c-sources: src/helpers.c src/helpers.h
55 default-language: Haskell2010