-
Notifications
You must be signed in to change notification settings - Fork 3
/
hsseccomp.cabal
47 lines (43 loc) · 1.38 KB
/
hsseccomp.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
-- Initial hsseccomp.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: hsseccomp
version: 0.2.0.1
synopsis: Haskell bindings to libseccomp
description: Bindings to libseccomp. See "System.Linux.Seccomp" for docs.
license: LGPL
license-file: LICENSE
author: Tom Hunger, Cornelius Diekmann
maintainer: [email protected]
-- copyright:
category: System
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
Bug-Reports: https://github.com/teh/hsseccomp/issues
tested-with:
GHC==8.4.3
, GHC==8.2.2
source-repository head
type: git
location: https://github.com/teh/hsseccomp
library
exposed-modules: System.Linux.Seccomp
-- other-modules:
-- other-extensions:
build-depends: base >=4.8 && <5
hs-source-dirs: lib
default-language: Haskell2010
build-tools: hsc2hs
ghc-options: -Wall
extra-libraries: seccomp
Test-Suite seccomp-test
type: exitcode-stdio-1.0
main-is: Tests.hs
build-depends: base >=4.8 && <5
, tasty
, tasty-hunit
, hsseccomp
, unix
hs-source-dirs: tests
default-language: Haskell2010
ghc-options: -Wall