forked from jputcu/serialport
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathserialport.cabal
48 lines (44 loc) · 1.66 KB
/
serialport.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
Name: serialport
Version: 0.5.6
Cabal-Version: >= 1.10
Build-Type: Simple
license: BSD3
license-file: LICENSE
copyright: (c) 2009-2011 Joris Putcuyps,
(c) 2020-2024 David Cox
author: Joris Putcuyps, David Cox
maintainer: David Cox <[email protected]>
homepage: https://github.com/standardsemiconductor/serialport
bug-reports: https://github.com/standardsemiconductor/serialport/issues
synopsis: Cross platform serial port library.
description: Cross platform haskell library for using the serial port.
category: Hardware
Extra-Source-Files: README.md
CHANGELOG.md
tests/haskell_serial_test/haskell_serial_test.ino
source-repository head
type: git
location: https://github.com/standardsemiconductor/serialport
Library
Exposed-Modules: System.Hardware.Serialport
Other-Modules: System.Hardware.Serialport.Types
Build-Depends: base >= 4.12 && < 4.21,
bytestring >= 0.11 && < 0.13
ghc-options: -Wall -fno-warn-orphans
default-language: Haskell2010
if !os(windows)
Build-Depends: unix >= 2.8 && < 2.9
Other-Modules: System.Hardware.Serialport.Posix
else
Build-Depends: Win32 >= 2.11 && < 2.15
Other-Modules: System.Hardware.Serialport.Windows
System.Win32.Comm
Test-Suite Tests
type: exitcode-stdio-1.0
main-is: Tests.hs
hs-source-dirs: tests
default-language: Haskell2010
build-depends: base,
HUnit,
bytestring,
serialport