forked from purescript/trypurescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
trypurescript.cabal
41 lines (40 loc) · 1.32 KB
/
trypurescript.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
name: trypurescript
version: 1.0.0
cabal-version: >=1.8
build-type: Simple
license: BSD3
license-file: LICENSE
copyright: (c) Phil Freeman 2013
maintainer: paf31@cantab.net
synopsis: Interactive PureScript in the Browser
description: A simple web app for trying out the PureScript compiler
category: Web
author: Phil Freeman
data-dir: ""
executable trypurescript
-- Since no one depends on this project as a library,
-- packages below are `-any` because their versions are determined
-- by the `stack.yml` file. Versions correspond to the ones
-- specified in the resolver (i.e. the package set)
-- unless it is a versioned library added via `extra-deps` field.
build-depends: base -any,
aeson -any,
bytestring -any,
data-default -any,
directory -any,
filepath -any,
Glob -any,
scotty -any,
purescript,
containers -any,
http-types -any,
transformers -any,
mtl -any,
text -any,
time -any,
warp -any
hs-source-dirs: server
main-is: Main.hs
buildable: True
other-modules: Main
ghc-options: -Werror -O2 -threaded -rtsopts