/
/INblobs.cabal
1 Name: INblobs
2 Version: 0.1
3 License: LGPL
4 License-file: LICENCE-LGPL
5 Author: Arjan van IJzendoorn, Martijn Schrage, Malcolm Wallace, Miguel Vilaca
6 Maintainer: jmvilaca@di.uminho.pt, danielgomesmendes@gmail.com
7 Synopsis: Editor and interpreter for Interaction Nets
8 Description:
9 INblobs is a visual tool developed at Minho for integrated development with
10 Interaction Nets (<http://en.wikipedia.org/wiki/Interaction_nets>).
11 INblobs includes a visual editor that allows users to edit both interaction
12 nets and interaction rules; nets may then be reduced within the tool, or
13 else exported in a text format to be given as input to other tools.
14 Homepage: http://haskell.di.uminho.pt/jmvilaca/INblobs/
15
16 Category: Compilers/Interpreters
17
18 Build-type: Simple
19 Cabal-Version: >=1.2
20
21 flag splitBase
22
23 Executable INblobs
24 Main-is: Main.hs
25 Build-Depends: haskell98, wx >= 0.9, wxcore >= 0.9, HaXml >= 1.19, polyparse
26 if flag(splitBase)
27 Build-Depends: base >= 3, process, containers, directory, pretty
28 else
29 Build-Depends: base < 3
30
31 Hs-Source-Dirs: src
32 Extensions: ForeignFunctionInterface, MultiParamTypeClasses, FunctionalDependencies, FlexibleInstances, ParallelListComp
33