-
Notifications
You must be signed in to change notification settings - Fork 0
/
myproject.cabal
56 lines (52 loc) · 1.38 KB
/
myproject.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
-- This file has been generated from package.yaml by hpack version 0.20.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: 78687488a8d5459d9bf253bf438c29396221028090fcc6987e4c48c9c372507e
name: myproject
version: 0.1.0.0
synopsis: Project synopsis here
description: Project description here
homepage: https://github.com/myname/myproject#readme
bug-reports: https://github.com/myname/myproject/issues
license: BSD3
license-file: LICENSE
author: My Name
maintainer: myname@example.org
copyright: 2017 My Name
category: Web
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/myname/myproject
executable myproj
ghc-options: -Wall -ferror-spans -threaded -rtsopts -with-rtsopts=-N
js-sources:
jsbits/index.compiled.js
hs-source-dirs:
src
main-is: Main.hs
build-depends:
base
, concur-core
, concur-react
, free >=4.12
, mtl >=2.2
, stm >=2.4
, transformers >=0.5
if impl(ghcjs -any)
hs-source-dirs:
src-ghcjs
build-depends:
ghcjs-base
else
hs-source-dirs:
src-ghc
build-depends:
ghcjs-base-stub >=0.1
other-modules:
Paths_myproject
default-language: Haskell2010