diff options
Diffstat (limited to 'haddock-to-standalone.cabal')
-rw-r--r-- | haddock-to-standalone.cabal | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/haddock-to-standalone.cabal b/haddock-to-standalone.cabal new file mode 100644 index 0000000..795914a --- /dev/null +++ b/haddock-to-standalone.cabal @@ -0,0 +1,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.15, + 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 |