summaryrefslogtreecommitdiff
path: root/examples/examples.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'examples/examples.cabal')
-rw-r--r--examples/examples.cabal21
1 files changed, 21 insertions, 0 deletions
diff --git a/examples/examples.cabal b/examples/examples.cabal
new file mode 100644
index 0000000..c2fed7e
--- /dev/null
+++ b/examples/examples.cabal
@@ -0,0 +1,21 @@
1name: examples
2version: 0.1.0.0
3synopsis: Example usage of the various hmatrix packages
4homepage: https://github.com/albertoruiz/hmatrix
5license: BSD3
6license-file: LICENSE
7author: Dominic Steinitz
8maintainer: dominic@steinitz.org
9copyright: Dominic Steinitz, Novadiscovery
10category: Math
11build-type: Simple
12extra-source-files: ChangeLog.md
13cabal-version: >=1.10
14
15executable sundials
16 main-is: sundials.hs
17 build-depends: base >=4.10 && <4.11,
18 hmatrix,
19 hmatrix-sundials,
20 hmatrix-gsl
21 default-language: Haskell2010