summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2022-04-22 01:04:55 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2022-04-22 01:04:55 +0200
commit4a1d1efa92f653a33e26ea16844cd0d3b1a9a13f (patch)
treeddc4753bd1ee7433635dc80b8044d336e1794266
parenths work. (diff)
downloadvimwiki-scripts-4a1d1efa92f653a33e26ea16844cd0d3b1a9a13f.tar.gz
vimwiki-scripts-4a1d1efa92f653a33e26ea16844cd0d3b1a9a13f.tar.xz
Add .cabal file.
-rw-r--r--hs/vimwiki.cabal42
1 files changed, 42 insertions, 0 deletions
diff --git a/hs/vimwiki.cabal b/hs/vimwiki.cabal
new file mode 100644
index 0000000..339f0c3
--- /dev/null
+++ b/hs/vimwiki.cabal
@@ -0,0 +1,42 @@
+cabal-version: >= 1.10
+
+name: vimwiki
+version: 0.1
+-- synopsis:
+-- description:
+-- bug-reports:
+license: AGPL
+license-file: LICENSE
+author: Hugo Hörnquist
+maintainer: hugo@lysator.liu.se
+copyright: Hugo Hörnquist 2022
+homepage: https://git.hornquist.se/git/vimwiki-scripts
+category: Network
+build-type: Simple
+
+executable Main
+ -- import: deps
+ main-is: main.hs
+ ghc-options: -Wall -W
+ -- "needed" for generated code, could be fixed with better TemplateHaskell
+ -Wno-missing-signatures
+ -- common names are to useful
+ -Wno-name-shadowing
+ -- this one is just silly
+ -Wno-unused-do-bind
+ -Wno-type-defaults
+ other-modules:
+ build-depends:
+ base >=4.9,
+ directory,
+ filepath,
+ unix,
+ pandoc,
+ pandoc-types,
+ text,
+ containers,
+ blaze-markup,
+ blaze-html,
+ doctemplates,
+ extra
+ default-language: Haskell2010