-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpetit.cabal
54 lines (46 loc) · 1.35 KB
/
petit.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
name: petit
version: 0.1.0.0
synopsis: Paris Functional Programming Meetup
description: Petit compiler
license: MIT
license-file: LICENSE
author: Stephen Diehl
maintainer: [email protected]
category: Development
build-type: Simple
cabal-version: >=1.10
library
default-language: Haskell2010
hs-source-dirs: src
exposed-modules:
Entry
default-extensions:
NoImplicitPrelude
OverloadedStrings
GeneralizedNewtypeDeriving
LambdaCase
build-depends:
base >=4.8 && <5.0,
protolude >= 0.1.8,
text >= 1.2 && <1.3,
containers >= 0.5 && <0.6,
transformers -any,
mtl -any,
wl-pprint-text -any,
repline >= 0.1.4 && <0.1.8,
haskeline >= 0.7 && <0.8,
parsec >= 3.1 && <3.2,
llvm-general-pure >= 3.5 && <3.6,
llvm-general >= 3.5 && <3.6,
pretty-show >= 1.6 && <1.7
executable petit
default-language: Haskell2010
hs-source-dirs: exec
main-is: Main.hs
default-extensions:
NoImplicitPrelude
OverloadedStrings
build-depends:
base >=4.8 && <5.0,
protolude >= 0.1.8,
petit == 0.1.0.0