-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinux-live-netinfo.cabal
80 lines (69 loc) · 2.83 KB
/
linux-live-netinfo.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
name: linux-live-netinfo
version: 0.1.0.0
synopsis: Provides state of Linux network subsystem
description: Provides snapshot of Linux network configuration
or real time state updates of configuration and
neighbourhood (NICs, IPs, ARP table).
homepage: github.com/vdorr/linux-live-netinfo
license: MIT
license-file: LICENSE
author: vdorr
maintainer: [email protected]
-- copyright:
category: System
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
tested-with: GHC == 8.0.2, GHC == 7.10.3
source-repository head
type: git
location: git://github.com/vdorr/linux-live-netinfo
executable netinfo
main-is: netinfo.hs
-- other-modules:
-- other-extensions:
build-depends: linux-live-netinfo, ansi-terminal
, netlink == 1.1.1.0
, base >=4.8 && <=4.10
, bytestring >=0.10 && <0.11
, cereal
, network >=2.6 && <2.7
, unix >=2.7 && <2.8
, containers >=0.5 && <0.6
, stm >=2.4 && <2.5
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -fwarn-incomplete-patterns -fwarn-unused-binds -fwarn-unused-imports -fno-warn-tabs
library
exposed-modules: System.Linux.NetInfo, System.Linux.NetInfo.Internal
-- other-modules:
other-extensions: CPP, RecordWildCards
build-depends: netlink == 1.1.1.0
, base >=4.8 && <=4.10
, bytestring >=0.10 && <0.11
, cereal
, network >=2.6 && <2.7
, unix >=2.7 && <2.8
, containers >=0.5 && <0.6
, stm >=2.4 && <2.5
--FIXME estimate cereal version
-- hs-source-dirs: src
default-language: Haskell2010
ghc-options: -fwarn-incomplete-patterns -fwarn-unused-binds -fwarn-unused-imports -fno-warn-tabs
Test-Suite 1
build-depends: linux-live-netinfo
, ansi-terminal
, netlink == 1.1.1.0
, base >=4.8 && <=4.10
, bytestring >=0.10 && <0.11
, cereal
, network >=2.6 && <2.7
, unix >=2.7 && <2.8
, containers >=0.5 && <0.6
, stm >=2.4 && <2.5
, hspec
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: test.hs
ghc-options: -fwarn-incomplete-patterns -fwarn-unused-binds -fwarn-unused-imports -fno-warn-tabs
default-language: Haskell2010