-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhagit.cabal
74 lines (72 loc) · 2.41 KB
/
hagit.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
71
72
73
74
name: hagit
version: 0.1.0.0
synopsis: Version control system based on Git
description: Please see README.md
homepage:
license: BSD-3
license-file: LICENSE
author: Paweł Rzepiński
copyright: 2018 Paweł Rzepiński
category: Development
build-type: Simple
cabal-version: >=1.10
test-suite hagit-testsuite
type: exitcode-stdio-1.0
main-is: TestRunner.hs
hs-source-dirs: tests/src, src
default-language: Haskell2010
other-modules: Args,
Init,
Index,
Commit,
Checkout,
Log,
Status,
Hashing,
Utils,
Diff,
Branch,
ObjectsTests,
StatusTests,
IndexTests
build-depends: base >= 4.7 && < 5,
test-framework,
test-framework-quickcheck2,
test-framework-hunit,
HUnit,
QuickCheck,
cryptohash,
bytestring,
directory,
filepath,
containers,
time,
conduit,
strict,
Diff
executable hagit
ghc-options: -Wall
hs-source-dirs: src
main-is: Main.hs
default-language: Haskell2010
other-modules: Args,
Init,
Index,
Commit,
Checkout,
Log,
Status,
Hashing,
Utils,
Diff,
Branch
build-depends: base >= 4.7 && < 5,
cryptohash,
bytestring,
directory,
filepath,
containers,
time,
conduit,
strict,
Diff