summaryrefslogtreecommitdiff
path: root/packages/sundials/hmatrix-sundials.cabal
diff options
context:
space:
mode:
authorDominic Steinitz <dominic@steinitz.org>2018-03-19 17:59:00 +0000
committerDominic Steinitz <dominic@steinitz.org>2018-03-19 17:59:00 +0000
commit17ba35af029cee0122f91fc91427a307a5f11dfa (patch)
tree2a57ed3cda8d8125c545f5a64ea915495526688d /packages/sundials/hmatrix-sundials.cabal
parentfce6059d26b0cdaa211232b4812c614fc0076818 (diff)
Fix naming
Diffstat (limited to 'packages/sundials/hmatrix-sundials.cabal')
-rw-r--r--packages/sundials/hmatrix-sundials.cabal33
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
4name: sundials
5version: 0.1.0.0
6-- synopsis:
7-- description:
8homepage: https://github.com/idontgetoutmuch/hmatrix/tree/sundials
9license: BSD3
10license-file: LICENSE
11author: Dominic Steinitz
12maintainer: dominic@steinitz.org
13-- copyright:
14category: Math
15build-type: Simple
16extra-source-files: ChangeLog.md
17cabal-version: >=1.10
18
19extra-source-files: src/helpers.c, src/helpers.h
20
21executable 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