-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsignal.cabal
33 lines (30 loc) · 1.08 KB
/
signal.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
name: signal
version: 0.1.0.4
license: MIT
license-file: LICENSE
author: Piotr Mlodawski
maintainer: [email protected]
homepage: http://github.com/pmlodawski/signal
bug-reports: http://github.com/pmlodawski/signal/issues
category: System
build-type: Simple
cabal-version: >=1.10
synopsis: Multiplatform signal support for Haskell
tested-with: GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.1
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
build-depends: base >= 4.7 && < 5
if ! os(windows)
build-depends: unix
executable test
default-language: Haskell2010
build-depends: base >= 4.7 && < 5,
signal
main-is: test/Main.hs
source-repository head
type: git
location: http://github.com/pmlodawski/signal.git