epoll-0.1: epoll.cabal
name: epoll
version: 0.1
synopsis: Low-level bindings to epoll.
description: Bindings to epoll, a Linux specific I/O
event notication facility (cf. man epoll(7)).
category: sys
license: LGPL
license-file: LICENSE
author: Toralf Wittner
maintainer: toralf.wittner@gmail.com
copyright: Copyright (c) 2009 Toralf Wittner
stability: experimental
tested-With: GHC == 6.10.4
cabal-version: >= 1.6.0
build-type: Simple
extra-source-files: README, examples/*.hs
library
exposed-modules: System.Linux.Epoll,
System.Linux.EpollM,
System.Linux.Epoll.Base
other-modules: Util
ghc-options: -Wall -O2
extensions: CPP, ForeignFunctionInterface, GeneralizedNewtypeDeriving
build-depends: base >= 3 && < 5, unix, mtl
hs-source-dirs: src