-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSigns.cabal
34 lines (29 loc) · 939 Bytes
/
Signs.cabal
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
29
30
31
32
33
34
name: Signs
version: 0.1.0.0
synopsis: Interpreter for Abstract Categorial Grammar
homepage: https://github.com/ChrisBlom/Signs
license: MIT
license-file: LICENSE
author: Chris Blom
maintainer: [email protected]
category: Language
build-type: Simple
cabal-version: >=1.8
executable Signs
HS-Source-Dirs: src
main-is: Signs.hs
extensions: DoAndIfThenElse
, UnicodeSyntax
, ScopedTypeVariables
, FlexibleInstances
, FlexibleContexts
, MultiParamTypeClasses
, FunctionalDependencies
build-depends: base ==4.8.*
, filepath ==1.4.*
, directory ==1.2.*
, containers ==0.5.*
, pretty ==1.1.*
, transformers ==0.4.*
, parsec ==3.1.*
, mtl