-
Notifications
You must be signed in to change notification settings - Fork 1
/
agda2scala.cabal
65 lines (59 loc) · 2.21 KB
/
agda2scala.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
cabal-version: 3.8
-- Further docs http://haskell.org/cabal/users-guide/
name: agda2scala
-- See the Haskell package versioning policy (PVP) for standards
-- https://pvp.haskell.org
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.1.0.3
description: Allows to export Scala source files from formal specification in Agda
license: MIT
license-file: LICENSE
author: lemastero
maintainer: piotr.paradzinski@gmail.com
category: Language, Compiler
build-type: Simple
synopsis: Compiling Agda code to Scala.
extra-doc-files: README.md, CHANGELOG.md
source-repository head
type: git
location: https://github.com/lemastero/agda2scala.git
common warnings
ghc-options: -Wall
library
hs-source-dirs: src
exposed-modules: Agda.Compiler.Scala.Backend
Agda.Compiler.Scala.ScalaExpr
Agda.Compiler.Scala.AgdaToScalaExpr
Agda.Compiler.Scala.PrintScala2
Agda.Compiler.Scala.PrintScala3
Paths_agda2scala
autogen-modules: Paths_agda2scala
build-depends: base >= 4.13 && < 4.21,
containers > 0.6 && < 0.8,
Agda >= 2.7 && < 2.8,
deepseq >= 1.4.4 && < 1.6,
text >= 1.2.3.1
default-language: Haskell2010
import: warnings
executable agda2scala
hs-source-dirs: app
main-is: Main.hs
other-modules: Paths_agda2scala
autogen-modules: Paths_agda2scala
build-depends: base >= 4.13 && < 4.21,
Agda >= 2.7 && < 2.8,
agda2scala
default-language: Haskell2010
import: warnings
test-suite agda2scala-test
import: warnings
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends: base >= 4.13 && < 4.21,
Agda >= 2.7 && < 2.8,
HUnit >= 1.6.2.0,
agda2scala