summaryrefslogtreecommitdiff
path: root/SPL-compiler.cabal
blob: adf84c719dc670ab783bea507e2e9805e22d4aac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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,
                       parsec >=3.1 && <3.2,
                       mtl >=2.2 && <2.3
  hs-source-dirs:      src
  default-language:    Haskell2010