-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshortcut-links.cabal
69 lines (65 loc) · 2.44 KB
/
shortcut-links.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
cabal-version: 2.4
name: shortcut-links
version: 0.5.1.1
synopsis: Link shortcuts for use in text markup
description:
This package is a database of link shortcuts. A Markdown example:
@\[Google\](\@w)@ turns into <http://en.wikipedia.org/wiki/Google>.
.
See the "ShortcutLinks.All" module for a full list of shortcuts.
homepage: http://github.com/kowainik/shortcut-links
bug-reports: http://github.com/kowainik/shortcut-links/issues
license: MPL-2.0
license-file: LICENSE
author: Artyom
maintainer: Kowainik <xrom.xkov@gmail.com>
copyright: 2015–2019 Aelve (BSD-3-Clause)
2019-2021 Kowainik
category: Text, Web, Markdown
build-type: Simple
stability: stable
extra-doc-files: README.md
CHANGELOG.md
tested-with: GHC == 8.4.4
GHC == 8.6.5
GHC == 8.8.4
GHC == 8.10.3
source-repository head
type: git
location: git://github.com/kowainik/shortcut-links.git
common common-options
build-depends: base >= 4.11 && < 4.15
ghc-options: -Wall
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wcompat
-Widentities
-Wredundant-constraints
-fhide-source-paths
if impl(ghc >= 8.4)
ghc-options: -Wmissing-export-lists
-Wpartial-fields
if impl(ghc >= 8.8.1)
ghc-options: -Wmissing-deriving-strategies
-Werror=missing-deriving-strategies
if impl(ghc >= 8.10.1)
ghc-options: -Wunused-packages
default-language: Haskell2010
default-extensions: DerivingStrategies
InstanceSigs
OverloadedStrings
ViewPatterns
library
import: common-options
hs-source-dirs: src
exposed-modules: ShortcutLinks
ShortcutLinks.All
ShortcutLinks.Utils
build-depends: text >= 1.1 && < 1.3
test-suite shortcut-links-doctest
import: common-options
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Doctest.hs
build-depends: doctest ^>= 0.16
ghc-options: -threaded