aboutsummaryrefslogtreecommitdiff
path: root/git-auto-acp.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'git-auto-acp.cabal')
-rw-r--r--git-auto-acp.cabal39
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