-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgit-checklist.cabal
More file actions
42 lines (36 loc) · 1.56 KB
/
git-checklist.cabal
File metadata and controls
42 lines (36 loc) · 1.56 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 git-checklist.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: git-checklist
version: 1.0.0.0
synopsis: Maintain per-branch checklists in Git
description: Manage lists of TODO items for private branches
from the command line. No configuration required
and fast to learn, with human-editable storage
format and comprehensive help information.
license: GPL
license-file: LICENSE
author: Dougal Stanton
maintainer: dougal@dougalstanton.net
homepage: https://github.com/dougalstanton/git-checklist
bug-reports: https://github.com/dougalstanton/git-checklist/issues
category: Desktop, Development
build-type: Simple
data-files: README.md
-- extra-source-files:
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/dougalstanton/git-checklist
executable git-checklist
main-is: Main.hs
other-modules: Paths_git_checklist
-- other-extensions:
build-depends: base >=4.6 && <4.7,
process >= 1.1 && <1.2,
filepath >=1.3 && <1.4,
directory >= 1.2 && <1.3,
optparse-applicative >= 0.7 && <0.8,
pretty >= 1.1 && <1.2,
parsec >= 3.1 && <3.2
hs-source-dirs: src
default-language: Haskell2010