diff options
| author | Mirek Kratochvil <exa.exa@gmail.com> | 2026-09-10 16:42:26 +0200 |
|---|---|---|
| committer | Mirek Kratochvil <exa.exa@gmail.com> | 2026-09-10 16:42:26 +0200 |
| commit | 9e81c17e3dc5acfce46da91369b52974c525e5ff (patch) | |
| tree | 6bc28ac71821e6661a094d0c12c5c98075b48ba0 /git-auto-acp.cabal | |
| download | git-auto-acp-9e81c17e3dc5acfce46da91369b52974c525e5ff.tar.gz git-auto-acp-9e81c17e3dc5acfce46da91369b52974c525e5ff.tar.bz2 | |
initial undebugged version
Diffstat (limited to 'git-auto-acp.cabal')
| -rw-r--r-- | git-auto-acp.cabal | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/git-auto-acp.cabal b/git-auto-acp.cabal new file mode 100644 index 0000000..47aafe8 --- /dev/null +++ b/git-auto-acp.cabal @@ -0,0 +1,39 @@ +cabal-version: 3.0 +name: git-auto-acp +version: 0.1.0.0 +synopsis: + auto-git-add-commit-push over a watched directory, via filesystems notifications + +license: LGPL-3.0-or-later +license-file: LICENSE +author: Mirek Kratochvil +maintainer: exa.exa@gmail.com +copyright: (C) 2026 Mirek Kratochvil +category: Development +build-type: Simple +extra-doc-files: + CHANGELOG.md + README.md + +-- extra-source-files: + +common warnings + ghc-options: -Wall + +executable git-auto-acp + import: warnings + main-is: Main.hs + autogen-modules: Paths_git_auto_acp + other-modules: Paths_git_auto_acp + build-depends: + , base >=4.17 && <5 + , clock + , containers + , filepath + , fsnotify + , Glob + , optparse-applicative + , process + + hs-source-dirs: . + default-language: Haskell2010 |
