This repository has been archived by the owner on May 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgit-fmt.cabal
57 lines (49 loc) · 1.48 KB
/
git-fmt.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
name: git-fmt
version: 0.4.1.0
author: Henry J. Wylde
maintainer: public@hjwylde.com
homepage: https://github.com/hjwylde/git-fmt
synopsis: Custom git command for formatting code.
description: git-fmt provides a wrapper around omnifmt, an automatic code formatter.
It adds the ability to operate on specific tracked files in the repository.
license: BSD3
license-file: LICENSE
cabal-version: >= 1.10
category: Development
build-type: Simple
extra-source-files: CHANGELOG.md README.md
source-repository head
type: git
location: git@github.com:hjwylde/git-fmt
executable git-fmt
main-is: Main.hs
hs-source-dirs: app/
ghc-options: -threaded -with-rtsopts=-N
other-modules:
Git.Fmt.Options,
Git.Fmt.Pipes,
Git.Fmt.Version,
Paths_git_fmt
default-language: Haskell2010
other-extensions:
BangPatterns
FlexibleContexts
MultiParamTypeClasses
OverloadedStrings
build-depends:
base == 4.8.*,
exceptions == 0.8.*,
extra == 1.4.*,
fast-logger == 2.4.*,
filepath == 1.4.*,
omnifmt == 0.2.*,
mtl == 2.2.*,
monad-logger == 0.3.*,
monad-parallel == 0.7.*,
optparse-applicative == 0.11.*,
pipes == 4.1.*,
pipes-concurrency == 2.0.*,
process == 1.2.*,
temporary == 1.2.*,
text == 1.2.*,
time == 1.5.*