signal-0.1.0.0: signal.cabal
name: signal
version: 0.1.0.0
license: MIT
license-file: LICENSE
author: Piotr Mlodawski
maintainer: remdezx+github@gmail.com
homepage: http://github.com/pmlodawski/signal
bug-reports: http://github.com/pmlodawski/signal/issues
category: System
build-type: Simple
cabal-version: >=1.10
synopsis: Signal handling, multiplatform way
description:
This simple library allows you to handle os signals on both Linux and Windows.
library
hs-source-dirs: src
default-language: Haskell2010
exposed-modules: System.Signal
-- other-modules:
-- other-extensions:
build-depends: base >=4.7 && <4.8
if ! os(windows)
build-depends: unix
executable test
default-language: Haskell2010
build-depends: base >=4.7 && <4.8,
signal
main-is: test/Main.hs
source-repository head
type: git
location: http://github.com/pmlodawski/signal.git