-
Notifications
You must be signed in to change notification settings - Fork 0
/
haskus-studio.cabal
48 lines (46 loc) · 1.47 KB
/
haskus-studio.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
name: haskus-studio
version: 0.1.0.0
-- synopsis:
description: Haskus Haskell IDE
license: BSD3
license-file: LICENSE
author: Sylvain Henry
maintainer: [email protected]
-- copyright:
category: Development
build-type: Simple
cabal-version: >=1.10
executable haskus-studio
main-is: Main.hs
other-modules:
CmdLine
, Profiles
, Pipeline
other-extensions: LambdaCase, TemplateHaskell
build-depends:
base >=4.9
, network >=2.6
, file-embed >=0.0
, containers >=0.5
, vector >=0.11
, blaze-html >=0.8
, bytestring >=0.10
, optparse-applicative >=0.12
, happstack-server >= 7.4
, megaparsec >= 5.0
, HTTP >= 4000
, temporary >= 1.2
, filepath >= 1.4
, highlighting-kate >= 0.6
, directory >= 1.2
, time >= 1.6
, stm >= 2.4
, safe >= 0.3
, extra >= 1.4
, deepseq >= 1.4
, ghc
, ghc-paths
, haskus-web
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -O2