diff options
Diffstat (limited to 'examples/examples.cabal')
-rw-r--r-- | examples/examples.cabal | 21 |
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 @@ | |||
1 | name: examples | ||
2 | version: 0.1.0.0 | ||
3 | synopsis: Example usage of the various hmatrix packages | ||
4 | homepage: https://github.com/albertoruiz/hmatrix | ||
5 | license: BSD3 | ||
6 | license-file: LICENSE | ||
7 | author: Dominic Steinitz | ||
8 | maintainer: dominic@steinitz.org | ||
9 | copyright: Dominic Steinitz, Novadiscovery | ||
10 | category: Math | ||
11 | build-type: Simple | ||
12 | extra-source-files: ChangeLog.md | ||
13 | cabal-version: >=1.10 | ||
14 | |||
15 | executable 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 | ||