diff options
author | Alexander Foremny <aforemny@posteo.de> | 2024-02-20 04:05:43 +0100 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2024-02-20 08:00:58 +0100 |
commit | 8a2d06011a1b74c17963b2715b11d0ca7ba202a8 (patch) | |
tree | 547e894a2f8e58527f6a85b8d070a34a1b2ddcf4 /abuilder.cabal |
init
Diffstat (limited to 'abuilder.cabal')
-rw-r--r-- | abuilder.cabal | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/abuilder.cabal b/abuilder.cabal new file mode 100644 index 0000000..fae0635 --- /dev/null +++ b/abuilder.cabal @@ -0,0 +1,33 @@ +cabal-version: 3.4 +name: abuilder +version: 0.1.0.0 +license: Apache-2.0 +license-file: LICENSE +maintainer: aforemny@posteo.de +author: Alexander Foremny +build-type: Simple +extra-doc-files: CHANGELOG.md + +executable abuilder + main-is: Main.hs + hs-source-dirs: app + default-language: GHC2021 + ghc-options: -Wall -threaded + build-depends: + base, + bytestring, + containers, + directory, + filepath, + gitlib, + gitlib-libgit2, + hinotify, + mtl, + split, + stm, + string-interpolate, + tagged, + temporary, + text, + typed-process, + utf8-string |