packages feed

systemd-1.1.0: systemd.cabal

-- Initial systemd.cabal generated by cabal init.  For further
-- documentation, see http://haskell.org/cabal/users-guide/

name:                systemd
version:             1.1.0
synopsis:            Systemd facilities (Socket activation, Notify)
description:         A module for Systemd facilities.
homepage:            https://github.com/erebe/systemd
license:             BSD3
license-file:        LICENSE
author:              Erèbe
maintainer:          romain.gerard@erebe.eu

category:            System
build-type:          Simple
extra-source-files:  README.md
stability:           stable
cabal-version:       >=1.10
source-repository head
    type: git
    location: https://github.com/erebe/systemd

library
  ghc-options:      -Wall
  exposed-modules:  System.Systemd.Daemon
  c-sources:        System/Systemd/socket_info.c
  build-depends:       base == 4.* ,
                       unix >= 2.5,
                       transformers >= 0.3,
                       network >=2.3,
                       bytestring >= 0.10

  default-language:    Haskell2010

test-suite daemon-test
   hs-source-dirs:      test
   type:                exitcode-stdio-1.0
   main-is:             Main.hs
   default-language:    Haskell2010
   build-depends:       base == 4.*,
                        network >=2.3,
                        unix >= 2.5,
                        systemd
   default-language:    Haskell2010