diff options
author | idontgetoutmuch <dominic@steinitz.org> | 2018-04-22 03:17:40 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-22 03:17:40 -0700 |
commit | df9980a1bc95cbe96b6766dc232c4abc8ca28c38 (patch) | |
tree | 72eae1364abfd4ef4b022f94cb126c189f5cde85 /packages/sundials/hmatrix-sundials.cabal | |
parent | 94db29b5d25f28708c1d430554f0c337c26172df (diff) | |
parent | 492b7e13c47bc7e42583c6a1754bdb2bb445b94f (diff) |
Merge pull request #264 from idontgetoutmuch/sundials-clean
Add Sundials as an ODE Engine
Diffstat (limited to 'packages/sundials/hmatrix-sundials.cabal')
-rw-r--r-- | packages/sundials/hmatrix-sundials.cabal | 55 |
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 @@ | |||
1 | name: hmatrix-sundials | ||
2 | version: 0.1.0.0 | ||
3 | synopsis: hmatrix interface to sundials | ||
4 | description: Foo bar baz | ||
5 | homepage: https://github.com/idontgetoutmuch/hmatrix/tree/sundials | ||
6 | license: BSD3 | ||
7 | license-file: LICENSE | ||
8 | author: Dominic Steinitz | ||
9 | maintainer: dominic@steinitz.org | ||
10 | copyright: Dominic Steinitz 2018, Novadiscovery 2018 | ||
11 | category: Math | ||
12 | build-type: Simple | ||
13 | extra-source-files: ChangeLog.md, README.md, diagrams/*.png | ||
14 | extra-doc-files: diagrams/*.png | ||
15 | cabal-version: >=1.10 | ||
16 | |||
17 | |||
18 | library | ||
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 | |||
34 | test-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 | ||