-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathevdev-streamly.cabal
More file actions
45 lines (43 loc) · 1.26 KB
/
Copy pathevdev-streamly.cabal
File metadata and controls
45 lines (43 loc) · 1.26 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
cabal-version: 3.0
name: evdev-streamly
version: 0.0.2.1
author: George Thomas
maintainer: George Thomas
synopsis: Bridge for working with evdev and streamly
description:
Functions for working with streams of input events.
Often much more pleasant than working in a more imperative style.
homepage: https://github.com/georgefst/evdev
license: BSD-3-Clause
license-file: LICENSE
category: Streamly, System
extra-source-files:
CHANGELOG.md
README.md
source-repository head
type: git
location: git://github.com/georgefst/evdev.git
library
exposed-modules:
Evdev.Stream
hs-source-dirs: src
ghc-options:
-Wall
build-depends:
base >= 4.11 && < 5,
bytestring ^>= {0.10, 0.11, 0.12},
containers ^>= {0.6.2, 0.7},
evdev ^>= {2.1, 2.2, 2.3},
directory ^>= {1.3.8},
extra ^>= {1.6.18, 1.7},
filepath ^>= {1.4.100},
mtl ^>= {2.2, 2.3},
streamly ^>= {0.9, 0.10},
streamly-fsnotify ^>= 1.1.1,
unix ^>= 2.8,
default-language: GHC2021
default-extensions:
LambdaCase
OverloadedStrings
TupleSections
ViewPatterns