blob: 908873062037e1aef43bfb5b5755db8035d76332 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
cabal-version: 3.0
name: git-auto-acp
version: 0.1.1.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
-- sometimes useful: -ddump-minimal-imports
ghc-options: -Wall -Wmissing-import-lists -Wunused-imports
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
, optparse-applicative
, process
, unix
hs-source-dirs: .
default-language: Haskell2010
|