-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathhgit.cabal
More file actions
41 lines (39 loc) · 918 Bytes
/
Copy pathhgit.cabal
File metadata and controls
41 lines (39 loc) · 918 Bytes
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
Name: hgit
Version: 0.0
Description: Git for Haskell
License-file: LICENSE
Author: Sakari Jokinen
Maintainer: sakariij@gmail.com
Build-Type: Simple
Cabal-Version: >=1.10
-- test-suite git_test
-- main-is: Main.hs
-- default-language: Haskell98
-- type: exitcode-stdio-1.0
-- hs-source-dirs: tests
-- build-depends:
-- base >= 4,
-- hgit,
-- filepath >= 1.2.0.0,
-- QuickCheck >= 2.4.0.0,
-- directory,
-- unix,
-- containers
-- extra-libraries: git2
-- default-extensions:
-- ScopedTypeVariables
-- NamedFieldPuns
-- GeneralizedNewtypeDeriving
library
default-language: Haskell98
hs-source-dirs: src
build-depends:
base >= 3 && < 5,
hlibgit2,
bytestring
exposed-modules:
Git.Commit,
Git.Repository,
Git.Oid
default-extensions:
NamedFieldPuns