blob: 609b80b5c59f3fd357c22742dae96a99f8817202 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
cabal-version: 2.0
name: haddock-to-standalone
synopsis: Replace links in rendered haddocks with hackage links
version: 0.1.0.0
license: MIT
author: Tom Smeding
maintainer: tom@tomsmeding.com
build-type: Simple
executable haddock-to-standalone
main-is:
Main.hs
build-depends:
base >= 4.13 && < 4.19,
bytestring >= 0.11.3.1 && < 0.12,
directory >= 1.3.7.0 && < 1.4,
filepath >= 1.4.2.2 && < 1.5
hs-source-dirs: .
default-language: Haskell2010
ghc-options: -Wall -threaded
|