forked from madhadron/hdaemonize
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathhdaemonize.cabal
37 lines (35 loc) · 1.38 KB
/
hdaemonize.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
34
35
36
37
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 <[email protected]>
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