serialport-0.5.1: serialport.cabal
Name: serialport
Version: 0.5.1
Cabal-Version: >= 1.10
Build-Type: Simple
license: BSD3
license-file: LICENSE
copyright: (c) 2009-2011 Joris Putcuyps,
(c) 2020-2021 David Cox
author: Joris Putcuyps, David Cox
maintainer: David Cox <standard.semiconductor@gmail.com>
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: git://github.com/standardsemiconductor/serialport.git
Library
Exposed-Modules: System.Hardware.Serialport
Other-Modules: System.Hardware.Serialport.Types
Build-Depends: base >= 4 && < 5, bytestring
ghc-options: -Wall -fno-warn-orphans
default-language: Haskell2010
if !os(windows)
Build-Depends: unix
Other-Modules: System.Hardware.Serialport.Posix
else
Build-Depends: Win32
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