-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathevdev-examples.cabal
More file actions
executable file
·83 lines (79 loc) · 1.66 KB
/
Copy pathevdev-examples.cabal
File metadata and controls
executable file
·83 lines (79 loc) · 1.66 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
cabal-version: 2.4
name: evdev-examples
version: 0.1.0.0
license: BSD-3-Clause
author: George Thomas
maintainer: George Thomas
executable evtest
main-is: Main.hs
hs-source-dirs: evtest
build-depends:
base,
bytestring,
evdev,
evdev-streamly,
filepath,
pretty-simple,
streamly,
ghc-options:
-threaded
-Wall
default-language: Haskell2010
default-extensions:
BlockArguments
LambdaCase
OverloadedStrings
executable uinput-echo
main-is: Main.hs
hs-source-dirs: uinput
build-depends:
base,
bytestring,
evdev,
ghc-options:
-threaded
-Wall
default-language: Haskell2010
default-extensions:
BlockArguments
LambdaCase
OverloadedStrings
executable evdev-trigger
main-is: Main.hs
hs-source-dirs: trigger
build-depends:
base,
evdev,
evdev-streamly,
process,
streamly,
ghc-options:
-threaded
-Wall
default-language: Haskell2010
default-extensions:
BangPatterns
BlockArguments
LambdaCase
ViewPatterns
executable evdev-replay
main-is: Main.hs
hs-source-dirs: replay
build-depends:
base,
evdev,
evdev-streamly,
filepath,
mtl,
streamly,
time,
ghc-options:
-threaded
-Wall
default-language: GHC2021
default-extensions:
BlockArguments
LambdaCase
OverloadedRecordDot
OverloadedStrings
ViewPatterns