forked from christian-marie/git-vogue
-
Notifications
You must be signed in to change notification settings - Fork 2
/
git-vogue.cabal
111 lines (102 loc) · 3.48 KB
/
git-vogue.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
name: git-vogue
version: 0.2.1.1
synopsis: A framework for pre-commit checks.
description: Make your Haskell git repositories fashionable.
homepage: https://github.com/oswynb/git-vogue
license: BSD3
license-file: LICENSE
author: Anchor Engineering <[email protected]>
maintainer: Oswyn Brent <[email protected]>
copyright: (c) 2015 Anchor Systems, Pty Ltd and Others
category: Development
build-type: Custom
extra-source-files: README.md, changelog.txt
cabal-version: >=1.10
data-files: templates/pre-commit
source-repository HEAD
type: git
location: https://github.com/oswynb/git-vogue
flag gpl
default: True
description: Use GPL libraries, specifically hscolour
library
default-language: Haskell2010
hs-source-dirs: lib
exposed-modules: Git.Vogue
Git.Vogue.Types
Git.Vogue.VCS.Git
Git.Vogue.PluginDiscoverer.Libexec
Git.Vogue.PluginCommon
other-modules: Paths_git_vogue
build-depends: base >=4.6 && <5
, containers
, directory
, extra >= 1.4 && < 1.6
, filepath
, formatting
, optparse-applicative >= 0.11
, process
, split
, text
, transformers
, unix
executable git-vogue
default-language: Haskell2010
hs-source-dirs: src
main-is: git-vogue.hs
build-depends: base
, git-vogue
, optparse-applicative
, text
executable git-vogue-cabal
default-language: Haskell2010
hs-source-dirs: src
main-is: git-vogue-cabal.hs
build-depends: base
, Cabal
, git-vogue
executable git-vogue-hlint
default-language: Haskell2010
hs-source-dirs: src
main-is: git-vogue-hlint.hs
build-depends: base
, bifunctors
, cpphs
, directory
, git-vogue
, haskell-src-exts
, hlint >= 1.9.27 && < 1.10
, hscolour
if !flag(gpl)
cpp-options: -DGPL_SCARES_ME
executable git-vogue-stylish
default-language: Haskell2010
hs-source-dirs: src
main-is: git-vogue-stylish.hs
build-depends: base
, Diff
, git-vogue
, strict
, stylish-haskell >= 0.5.16 && < 0.7
executable git-vogue-ghc-mod
default-language: Haskell2010
hs-source-dirs: src
main-is: git-vogue-ghc-mod.hs
build-depends: base
, ghc-mod >= 5.2 && < 5.6
, git-vogue
test-suite unit
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: tests
main-is: unit.hs
build-depends: base
, containers
, directory
, filepath
, git-vogue
, hspec
, process
, temporary
build-tools: git
-- vim: set tabstop=21 expandtab: