-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitmap.cabal
More file actions
42 lines (40 loc) · 1.34 KB
/
gitmap.cabal
File metadata and controls
42 lines (40 loc) · 1.34 KB
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
-- Initial gitmap.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: gitmap
version: 0.1.0.0
-- synopsis:
-- description:
homepage: https://github.com/ryanreich/gitmap
license: MIT
license-file: LICENSE
author: Ryan Reich
maintainer: ryan.reich@gmail.com
-- copyright:
category: Development
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
executable gitmap
main-is: Main.hs
other-modules: FileNames,
GitMapConfig,
Handlers,
Options,
Output
ghc-options: -O2
-Wall
-fno-warn-unused-do-bind
-fno-warn-missing-signatures
build-depends: ansi-terminal,
base,
directory,
either,
process,
split,
text,
transformers,
unordered-containers,
vector,
yaml
hs-source-dirs: src, exec_src
default-language: Haskell2010