-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathcommonmark-cli.cabal
47 lines (44 loc) · 1.42 KB
/
commonmark-cli.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
name: commonmark-cli
version: 0.2.1
synopsis: Command-line commonmark converter and highlighter.
description: This package provides a command-line tool, `commonmark`,
for converting and syntax-highlighting commonmark documents.
category: Text
homepage: https://github.com/jgm/commonmark-hs
bug-reports: https://github.com/jgm/commonmark-hs/issues
author: John MacFarlane
maintainer: [email protected]
copyright: 2018-2021 John MacFarlane
license: BSD3
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
changelog.md
README.md
source-repository head
type: git
location: https://github.com/jgm/commonmark-hs
executable commonmark
main-is: convert.hs
hs-source-dirs: src
if impl(ghc >= 8.8)
ghc-options: -fwrite-ide-info -hiedir=.hie
if impl(ghc >= 8.10)
ghc-options: -Wunused-packages
ghc-options: -threaded -rtsopts
build-depends: base >= 4.9 && <5
, commonmark >= 0.2.4.1 && < 0.3
, commonmark-extensions >= 0.2.5 && < 0.3
, commonmark-pandoc >= 0.2.2 && < 0.3
, pandoc-types
, aeson
, bytestring
, containers
, mtl
, bytestring
, text
, ansi-terminal
other-modules:
Paths_commonmark_cli
default-language: Haskell2010