diff options
author | Alexander Foremny <aforemny@posteo.de> | 2023-12-20 15:10:34 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2023-12-20 15:10:34 +0100 |
commit | 1b574f472e6ca052db3ab5041e2fc1ab9923f163 (patch) | |
tree | 27016f165ad0bef99ece1b2b86b2da200d575052 /apaperless.cabal |
chore: init
Diffstat (limited to 'apaperless.cabal')
-rw-r--r-- | apaperless.cabal | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/apaperless.cabal b/apaperless.cabal new file mode 100644 index 0000000..5001d21 --- /dev/null +++ b/apaperless.cabal @@ -0,0 +1,31 @@ +cabal-version: 3.4 +name: apaperless +version: 0.1.0.0 +-- synopsis: +-- description: +license: Apache-2.0 +license-file: LICENSE +author: Alexander Foremny +maintainer: aforemny@posteo.de +-- copyright: +category: Text +build-type: Simple +extra-doc-files: CHANGELOG.md +-- extra-source-files: + +common warnings + ghc-options: -Wall + +executable apaperless + import: warnings + main-is: Main.hs + -- other-modules: + -- other-extensions: + build-depends: base ^>=4.16.4.0, + typed-process, + bytestring, + temporary, + directory, + filepath + hs-source-dirs: app + default-language: GHC2021 |