diff options
author | Camil Staps | 2018-02-06 11:56:59 +0100 |
---|---|---|
committer | Camil Staps | 2018-02-06 11:56:59 +0100 |
commit | 5a0971b84e5af2a1be707fa7292ac7b19ba1790a (patch) | |
tree | caea90560b690746d0fa02655f4abd149a13bed2 /SPL-compiler.cabal |
Initial commit
Diffstat (limited to 'SPL-compiler.cabal')
-rw-r--r-- | SPL-compiler.cabal | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/SPL-compiler.cabal b/SPL-compiler.cabal new file mode 100644 index 0000000..8c8c586 --- /dev/null +++ b/SPL-compiler.cabal @@ -0,0 +1,26 @@ +name: SPL-compiler + +-- The package version. See the Haskell package versioning policy (PVP) +-- for standards guiding when and how versions should be incremented. +-- https://wiki.haskell.org/Package_versioning_policy +-- PVP summary: +-+------- breaking API changes +-- | | +----- non-breaking API additions +-- | | | +--- code changes with no API change +version: 0.1.0.0 +license: GPL-2 +license-file: LICENSE +author: Camil Staps and Erin van der Veen +maintainer: eveen@science.ru.nl +copyright: Copyright 2018 Camil Staps and Erin van der Veen +category: Language +build-type: Simple +extra-source-files: ChangeLog.md +cabal-version: >=1.10 + +executable SPL-compiler + main-is: Main.hs + other-extensions: LambdaCase + build-depends: base >=4.9 && <4.10, + MissingH >=1.4 && <1.5 + hs-source-dirs: src + default-language: Haskell2010 |