blob: 47aafe8f3fad13d318526b4477bec8aab94f8f63 (
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
|
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
|