-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathx11remote.cabal
40 lines (37 loc) · 1.39 KB
/
x11remote.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
-- Initial x11remote.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: x11remote
version: 0.1.0.0
synopsis: Remote control for mouse and keyboard using xdotool
-- description:
license: MIT
license-file: LICENSE
author: Anton Pirogov
maintainer: anton.pirogov at gmail.com
-- copyright:
category: Web
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
executable x11remote
main-is: Main.hs
-- other-extensions:
build-depends: base >=4.7 && <5.0
, scotty >=0.9
, wai-middleware-static >=0.6
, websockets >=0.9
, wai >=3.0
, wai-extra >=3.0
, wai-websockets >=3.0
, warp >=3.0
, file-embed >=0.0.8
, optparse-applicative >=0.10
, text >=1.2
, bytestring
, containers
, process
, mtl
, split
default-language: Haskell2010
ghc-options: -Wall -fno-warn-unused-do-bind -fno-warn-missing-signatures -fno-warn-name-shadowing -fno-warn-orphans
default-extensions: OverloadedStrings, TemplateHaskell