forked from haskellbook/hello
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hello.cabal
27 lines (25 loc) · 826 Bytes
/
hello.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
name: hello
version: 0.1.0.0
synopsis: Simple project template from stack
description: Please see README.md
homepage: https://github.com/bitemyapp/hello#readme
license: BSD3
license-file: LICENSE
author: Your Name Here
maintainer: example@email.com
copyright: 2016, Your Name Here
category: Web
build-type: Simple
cabal-version: >=1.10
executable hello
hs-source-dirs: exe
main-is: Main.hs
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, hello
library
hs-source-dirs: src
exposed-modules: CatsRule
, Hello
default-language: Haskell2010
build-depends: base >= 4.7 && < 5