-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcheck-pacman.cabal
45 lines (40 loc) · 1.45 KB
/
check-pacman.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
name: check-pacman
version: 1.1.1
synopsis: Nagios monitoring plugin for checking for Pacman updates
description: Please see README.md
license: PublicDomain
license-file: LICENSE
author: David Parrish
maintainer: [email protected]
category: Unknown
build-type: Simple
cabal-version: >=1.10
library
default-language: Haskell2010
ghc-options: -Wall -Werror -O2
hs-source-dirs: src
exposed-modules: CheckPacman
build-depends: base >= 4.8 && < 5
, nagios-check
, optparse-applicative
, process
, text
executable check_pacman
hs-source-dirs: app
ghc-options: -Wall -Werror -O2 -Wall -threaded -rtsopts -with-rtsopts=-N
main-is: Main.hs
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, check-pacman
test-suite check_pacman-test
type: exitcode-stdio-1.0
default-language: Haskell2010
ghc-options: -Wall -Werror -O2 -Wall -threaded -rtsopts -with-rtsopts=-N
hs-source-dirs: src-test
main-is: Main.hs
build-depends: base >= 4.8 && < 5
, tasty >= 0.11
, tasty-hunit >= 0.9
, check-pacman
, neat-interpolation
, text