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 0
/
Copy pathomnifmt.cabal
83 lines (73 loc) · 2.08 KB
/
omnifmt.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
name: omnifmt
version: 0.2.1.1
author: Henry J. Wylde
maintainer: [email protected]
homepage: https://github.com/hjwylde/omnifmt
synopsis: A pretty-printer wrapper to faciliate ease of formatting during development.
description: omnifmt automatically formats code via external pretty-printers.
The idea was taken from gofmt, just with a bit of expansion to more languages.
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: [email protected]:hjwylde/omnifmt
executable omnifmt
main-is: Main.hs
hs-source-dirs: app/
ghc-options: -threaded -with-rtsopts=-N
other-modules:
Omnifmt.Options,
Omnifmt.Version,
Paths_omnifmt
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,
mtl == 2.2.*,
monad-logger == 0.3.*,
monad-parallel == 0.7.*,
optparse-applicative == 0.11.*,
pipes == 4.1.*,
pipes-concurrency == 2.0.*,
temporary == 1.2.*,
text == 1.2.*,
time == 1.5.*
library
hs-source-dirs: src/
exposed-modules:
Omnifmt.Directory,
Omnifmt.Config,
Omnifmt.Exit,
Omnifmt.Pipes,
Omnifmt.Process
default-language: Haskell2010
other-extensions:
FlexibleContexts
MultiParamTypeClasses
OverloadedStrings
TupleSections
build-depends:
aeson == 0.8.*,
base == 4.8.*,
exceptions == 0.8.*,
extra == 1.4.*,
filepath == 1.4.*,
monad-logger == 0.3.*,
mtl == 2.2.*,
pipes == 4.1.*,
text == 1.2.*,
unordered-containers == 0.2.*,
yaml == 0.8.*