-
Notifications
You must be signed in to change notification settings - Fork 0
/
twitch-cli.cabal
39 lines (37 loc) · 1.31 KB
/
twitch-cli.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
name: twitch-cli
version: 0.2.0.0
synopsis: CLI to watch file patterns and run commands when they change
description:
This package provides a simple command-line interface (CLI) to the excellent
twitch library. It allows you to quickly set up complex file-watching rules and
commands that can respond to changes.
.
This package is maintained by Grafted-In (<https://www.graftedin.io/>).
homepage: https://github.com/grafted-in/twitch-cli
license: BSD3
license-file: LICENSE
author: Elliot Cameron
maintainer: [email protected]
copyright: 2017 Elliot Cameron and Grafted-In, LLC
category: Web
build-type: Simple
cabal-version: >=1.10
extra-source-files:
CHANGELOG.md
README.md
executable twitch
hs-source-dirs: src
main-is: Main.hs
build-depends:
async >= 2.1 && <= 2.3,
base >= 4.7 && < 5,
containers == 0.5.*,
fsnotify == 0.2.*,
Glob == 0.9.*,
optparse-applicative >= 0.13 && < 0.15,
typed-process == 0.2.*
default-language: Haskell2010
ghc-options: -Wall -O2 -threaded -rtsopts
source-repository head
type: git
location: https://github.com/grafted-in/twitch-cli