From ae0f8943268c42b1985f3b8a0c5bcf2102ed3a87 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Fri, 25 Jun 2021 12:08:47 +0200 Subject: Add initial files --- org-zk.cabal | 70 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 org-zk.cabal (limited to 'org-zk.cabal') diff --git a/org-zk.cabal b/org-zk.cabal new file mode 100644 index 0000000..6ef80cf --- /dev/null +++ b/org-zk.cabal @@ -0,0 +1,70 @@ +cabal-version: 2.4 +name: org-zk +version: 0.1.0.0 +license: AGPL-3.0-only +copyright: 2021 Sridhar Ratnakumar +maintainer: srid@srid.ca +author: Sridhar Ratnakumar +category: Web + +-- TODO: Before hackage release. +-- A short (one-line) description of the package. +-- synopsis: + +-- A longer description of the package. +-- description: + +-- A URL where users can report bugs. +-- bug-reports: + +extra-source-files: + LICENSE + README.md + +executable org-zk + build-depends: + , aeson + , async + , base + , bytestring + , containers + , data-default + , directory + , filepath + , lens + , megaparsec + , monad-logger + , mtl + , neat-interpolation + , profunctors + , relude + , shower + , tagged + , text + , time + , unliftio + , with-utf8 + + mixins: + base hiding (Prelude), + relude (Relude as Prelude, Relude.Container.One), + relude + + ghc-options: + -Wall -Wincomplete-record-updates -Wincomplete-uni-patterns + + default-extensions: + FlexibleContexts + FlexibleInstances + KindSignatures + LambdaCase + MultiParamTypeClasses + MultiWayIf + OverloadedStrings + ScopedTypeVariables + TupleSections + ViewPatterns + + main-is: Main.hs + hs-source-dirs: src + default-language: Haskell2010 -- cgit