-
Notifications
You must be signed in to change notification settings - Fork 1
/
nagios-check.cabal
50 lines (47 loc) · 1.74 KB
/
nagios-check.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
38
39
40
41
42
43
44
45
46
47
48
49
50
name: nagios-check
version: 0.3.2
synopsis: Package for writing monitoring plugins
description: Implements Nagios plugin development guidelines
within a Haskell framework for writing Nagios
checks.
homepage: https://github.com/olorin/haskell-nagios-check
license: MIT
license-file: LICENSE
author: Sharif Olorin
maintainer: [email protected]
copyright: 2014-2015 Sharif Olorin
category: System
, Monitoring
, Metrics
build-type: Simple
extra-source-files: README.md,
CHANGELOG.md
cabal-version: >=1.10
source-repository head
type: git
location: [email protected]:olorin/haskell-nagios-check.git
library
exposed-modules: System.Nagios.Plugin
other-modules: System.Nagios.Plugin.Check
System.Nagios.Plugin.PerfData
build-depends: base >=4.5 && <5,
mtl,
text,
bifunctors,
exceptions
hs-source-dirs: lib
default-language: Haskell2010
ghc-options: -Wall
-fwarn-tabs
test-suite nagios-check-test
hs-source-dirs: tests
main-is: NagiosCheckTest.hs
type: exitcode-stdio-1.0
default-language: Haskell2010
ghc-options: -Wall
-fwarn-tabs
build-depends: base >=4.5 && <5,
hspec,
QuickCheck,
text,
nagios-check