-
Notifications
You must be signed in to change notification settings - Fork 0
/
haskgit.cabal
70 lines (67 loc) · 2.2 KB
/
haskgit.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
cabal-version: 2.2
name: haskgit
version: 0.1.0.0
-- synopsis:
-- description:
homepage: https://github.com/QuietMisdreavus/haskgit#readme
license: MPL-2.0
license-file: LICENSE
author: QuietMisdreavus
maintainer: grey@quietmisdreavus.net
copyright: 2020 QuietMisdreavus
category: Web
build-type: Simple
extra-source-files: README.md
common build-info
ghc-options: -W -Wmissing-export-lists
other-modules: Command,
Command.Add,
Command.Base,
Command.Commit,
Command.Init,
Command.Status,
Database,
Database.Author,
Database.Blob,
Database.Commit,
Database.Tree,
Index,
Index.Checksum,
Index.Entry,
Entry,
Lockfile,
Refs,
Repository,
Util,
Util.Hash,
Workspace
build-depends: base >= 4.7 && < 5,
directory,
filepath,
bytestring,
cryptonite,
zlib,
time,
extra,
containers,
unix,
memory,
binary
executable haskgit
import: build-info
hs-source-dirs: src
main-is: Main.hs
default-language: Haskell2010
test-suite unit
import: build-info
type: exitcode-stdio-1.0
other-modules: Tests.Command,
Tests.Command.Add,
Tests.Command.Status,
Tests.CommandHelper,
Tests.Index
build-depends: HUnit,
random
hs-source-dirs: src
main-is: TestMain.hs
default-language: Haskell2010