diff options
Diffstat (limited to 'packages/sundials/hmatrix-sundials.cabal')
-rw-r--r-- | packages/sundials/hmatrix-sundials.cabal | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/packages/sundials/hmatrix-sundials.cabal b/packages/sundials/hmatrix-sundials.cabal new file mode 100644 index 0000000..43a83d0 --- /dev/null +++ b/packages/sundials/hmatrix-sundials.cabal | |||
@@ -0,0 +1,33 @@ | |||
1 | -- Initial sundials.cabal generated by cabal init. For further | ||
2 | -- documentation, see http://haskell.org/cabal/users-guide/ | ||
3 | |||
4 | name: sundials | ||
5 | version: 0.1.0.0 | ||
6 | -- synopsis: | ||
7 | -- description: | ||
8 | homepage: https://github.com/idontgetoutmuch/hmatrix/tree/sundials | ||
9 | license: BSD3 | ||
10 | license-file: LICENSE | ||
11 | author: Dominic Steinitz | ||
12 | maintainer: dominic@steinitz.org | ||
13 | -- copyright: | ||
14 | category: Math | ||
15 | build-type: Simple | ||
16 | extra-source-files: ChangeLog.md | ||
17 | cabal-version: >=1.10 | ||
18 | |||
19 | extra-source-files: src/helpers.c, src/helpers.h | ||
20 | |||
21 | executable sundials | ||
22 | main-is: Main.hs | ||
23 | other-modules: Types | ||
24 | other-extensions: QuasiQuotes, TemplateHaskell, MultiWayIf, OverloadedStrings | ||
25 | build-depends: base >=4.10 && <4.11, | ||
26 | inline-c >=0.6 && <0.7, | ||
27 | vector >=0.12 && <0.13, | ||
28 | template-haskell >=2.12 && <2.13, | ||
29 | containers >=0.5 && <0.6 | ||
30 | hs-source-dirs: src | ||
31 | default-language: Haskell2010 | ||
32 | extra-libraries: sundials_arkode | ||
33 | C-sources: src/helpers.c src/helpers.h | ||