packages feed

hdaemonize-0.5.7: hdaemonize.cabal

Name:		hdaemonize
Version:	0.5.7
Cabal-Version:  >= 1.10
License:	BSD3
License-file:   LICENSE
Author:         Anton Tayanovskyy, Fred Ross, Lana Black
Maintainer:     Jeremy Bornstein <jeremy@jeremy.org>
Homepage:       http://github.com/unprolix/hdaemonize
Category:	System
Synopsis:       Library to handle the details of writing daemons for UNIX
Description:	Provides functions that help writing better UNIX daemons,
                daemonize and serviced/serviced': daemonize does what
                a daemon should do (forking and closing descriptors),
                while serviced does that and more (syslog interface,
                PID file writing, start-stop-restart command line
                handling, dropping privileges).
Build-Type:	Simple
Extra-Source-Files:	README.md

Library
  Build-Depends:    base >= 4 && < 5
                  , bytestring
                  , unix
                  , hsyslog == 5.*
                  , extensible-exceptions
                  , filepath
                  , mtl
  Default-Language: Haskell2010
  Exposed-modules:      System.Posix.Daemonize
  if impl(ghc > 6.12)
      Ghc-Options:      -Wall -fno-warn-unused-do-bind -fno-warn-type-defaults -fno-warn-name-shadowing
  else
      Ghc-Options:      -Wall -fno-warn-type-defaults -fno-warn-name-shadowing

source-repository head
  type:     git
  location: https://github.com/unprolix/hdaemonize.git