-
Notifications
You must be signed in to change notification settings - Fork 4
/
fswatch.cabal
44 lines (41 loc) · 1.58 KB
/
fswatch.cabal
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
41
42
43
44
name: fswatch
version: 0.1.0.5
synopsis: File System watching tool with cli and slave functionalities.
description: File System watching tool with cli and slave lib (with os process) functionalities.
category: Filesystem
homepage: https://github.com/kelemzol/watch
license: BSD3
license-file: LICENSE
author: Zoltan Kelemen
maintainer: -
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
library
exposed-modules: System.FSWatch
, System.FSWatch.Repr
, System.FSWatch.Slave
build-depends: base >=4.9 && <4.12
, haskeline >=0.7 && <0.8
, directory >=1.3.0
, fsnotify >=0.3.0.1
, optparse-applicative >= 0.13.2
, process >=1.4
hs-source-dirs: src
default-language: Haskell2010
executable hfswatch
ghc-options: -threaded
main-is: Main.hs
other-modules: System.FSWatch
, System.FSWatch.Repr
, System.FSWatch.Slave
other-extensions: ViewPatterns, RecordWildCards
build-depends: base >=4.9 && <4.12
, haskeline >=0.7 && <0.8
, directory >=1.3.0
, fsnotify >=0.2.1
, optparse-applicative >= 0.13.2
, process >=1.4
, fswatch
hs-source-dirs: src
default-language: Haskell2010