-
Notifications
You must be signed in to change notification settings - Fork 7
/
hfsevents.cabal
36 lines (33 loc) · 901 Bytes
/
hfsevents.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
cabal-version: 2.2
name: hfsevents
version: 0.1.7
synopsis: File/folder watching for OS X
homepage: http://github.com/luite/hfsevents
license: BSD-3-Clause
license-file: LICENSE
author: Luite Stegeman
maintainer: [email protected]
category: System
build-type: Simple
extra-source-files: cbits/c_fsevents.h, test/test.hs, test/trace.hs
source-repository head
type: git
location: https://github.com/luite/hfsevents.git
library
default-language: Haskell98
exposed-modules: System.OSX.FSEvents
if os(darwin)
buildable: True
else
buildable: False
frameworks: Cocoa
cxx-sources: cbits/c_fsevents.m
include-dirs: cbits
extra-libraries: pthread
build-depends:
base >= 4 && < 5,
bytestring,
cereal >= 0.3 && < 0.6,
unix,
mtl,
text