-
Notifications
You must be signed in to change notification settings - Fork 15
/
haskell-editor-setup.cabal
45 lines (39 loc) · 1.63 KB
/
haskell-editor-setup.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
cabal-version: 2.4
name: haskell-editor-setup
version: 0.1.0.0
synopsis: GUI program that will set up Haskell environment with target selected editors or IDEs
license: GPL-3.0-only
license-file: LICENSE
author: Răzvan Flavius Panda
maintainer: razvan.panda@gmail.com
category: Development
extra-source-files: CHANGELOG.md, README.md
executable haskell-editor-setup
main-is: Main.hs
other-modules: OS.Linux,
OS.Linux.Debian,
OS.Common,
Types,
View
build-depends: base ^>= 4.12.0.0
, relude == 0.4.0
, miso == 1.3.0.0
, jsaddle-warp == 0.9.6.0
, ghcjs-dom == 0.9.4.0
, websockets == 0.12.5.3
, directory == 1.3.3.0
, text == 1.2.3.1
, turtle == 1.5.14
, lens == 4.17.1
, placeholders == 0.1
, neat-interpolation == 0.3.2.4
mixins: base hiding (Prelude)
, relude (Relude as Prelude
, Relude.Unsafe)
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -threaded -Wall -Wno-unused-top-binds
default-extensions: LambdaCase,
OverloadedStrings,
QuasiQuotes,
TemplateHaskell