-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibxdo.cabal
61 lines (58 loc) · 2.42 KB
/
libxdo.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: libxdo
author: Remy Goldschmidt
version: 0.0.1
stability: Experimental
build-type: Simple
cabal-version: >= 1.10
category: System
copyright: 2017 Remy Goldschmidt <[email protected]>
maintainer: [email protected]
homepage: https://github.com/taktoa/libxdo
bug-reports: https://github.com/taktoa/libxdo/issues
license: MIT
license-file: LICENSE.md
extra-source-files: README.md
synopsis: FFI bindings to libxdo from xdotool.
description: FFI bindings to libxdo from xdotool.
source-repository head
type: git
location: https://github.com/taktoa/libxdo.git
library
build-depends: base == 4.*
, transformers == 0.5.*
, mtl == 2.2.*
, bytestring == 0.10.*
, text == 1.2.*
, lens == 4.15.*
, unix == 2.7.*
, process == 1.4.*
, data-default == 0.7.*
, semigroups == 0.18.*
, exceptions == 0.8.*
, containers == 0.5.*
, pipes == 4.3.*
, ansi-wl-pprint == 0.6.*
, vector == 0.11.*
, X11 == 1.8.*
, deepseq == 1.4.*
default-language: Haskell2010
exposed-modules: System.XDo
, System.XDo.Lens
, System.XDo.Internal
extra-libraries: xdo
pkgconfig-depends: x11
ghc-options: -Wall -O2 -g
-fno-warn-type-defaults
-fno-warn-unused-do-bind
-fno-warn-unused-imports
ghc-prof-options: -auto-all
hs-source-dirs: src
build-tools: c2hs
test-suite tests
build-depends: base == 4.*
, hspec == 2.4.*
, libxdo
type: exitcode-stdio-1.0
default-language: Haskell2010
ghc-options: -fhpc -Wall -Werror
main-is: src/Tests.hs