-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdfal-pandoc-filters.cabal
82 lines (75 loc) · 2.68 KB
/
dfal-pandoc-filters.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
-- Initial dfal-pandoc-filters.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: dfal-pandoc-filters
version: 0.1.1.0
synopsis: "A collection of pandoc filters. Written for personal use."
-- description:
homepage: http://www.github.com/dfaligertwood/pandoc-filters
license: BSD3
license-file: LICENSE
author: Douglas Ligertwood
maintainer: dfaligertwood@dunelm.org.uk
-- copyright:
category: Text
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
executable pandoc-divs
main-is: pandoc-divs.hs
hs-source-dirs: ./
other-modules: Utils
-- other-extensions:
build-depends: base >=4.8 && <5,
pandoc-types >= 1.12,
containers >= 0.5
ghc-options: -Wall
default-language: Haskell2010
executable pandoc-ednotes
main-is: pandoc-ednotes.hs
hs-source-dirs: ./
other-modules: Utils
build-depends: base >=4.8 && <5,
pandoc-types >= 1.12,
containers >= 0.5,
split >= 0.2.2
ghc-options: -Wall
default-language: Haskell2010
executable pandoc-sidenotes
main-is: pandoc-sidenotes.hs
hs-source-dirs: ./
other-modules: Utils
build-depends: base >=4.8 && <5,
pandoc-types >= 1.12,
containers >= 0.5
ghc-options: -Wall
default-language: Haskell2010
executable pandoc-filter-manager
main-is: pandoc-filter-manager.hs
hs-source-dirs: ./
build-depends: base >= 4.8 && <5,
pandoc-types >= 1.12,
containers >= 0.5,
aeson >= 0.8,
bytestring >= 0.10.6,
HSH >= 2.1.2
ghc-options: -Wall
default-language: Haskell2010
executable pandoc-multibib
main-is: pandoc-multibib.hs
hs-source-dirs: ./
build-depends: base >= 4.8 && <5,
pandoc-types >= 1.12,
containers >= 0.5,
pandoc-citeproc >= 0.7
ghc-options: -Wall
default-language: Haskell2010
executable pandoc-cv
main-is: pandoc-cv.hs
hs-source-dirs: ./
other-modules: Utils
build-depends: base >= 4.8 && < 5,
pandoc-types >= 1.12,
containers >= 0.5,
pandoc >= 1.13
ghc-options: -Wall
default-language: Haskell2010