-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsystem-linux-proc.cabal
More file actions
57 lines (48 loc) · 2.26 KB
/
system-linux-proc.cabal
File metadata and controls
57 lines (48 loc) · 2.26 KB
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
-- Initial system-linux-proc.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: system-linux-proc
version: 0.1.1.1
synopsis: A library for accessing the /proc filesystem in Linux
-- description:
homepage: https://github.com/erikd/system-linux-proc
license: BSD3
license-file: LICENSE
author: Erik de Castro Lopo
maintainer: erikd@mega-nerd.com
copyright: Copyright (c) 2017 Erik de Castro Lopo
category: System
build-type: Simple
extra-source-files: ChangeLog.md
stability: provisional
cabal-version: >= 1.10
tested-with: GHC == 8.10.7, GHC == 9.6.7, GHC == 9.8.4, GHC == 9.10.3
, GHC == 9.12.2, GHC == 9.14.1
library
default-language: Haskell2010
ghc-options: -Wall -fwarn-tabs
hs-source-dirs: .
exposed-modules: System.Linux.Proc
, System.Linux.Proc.Errors
, System.Linux.Proc.IO
, System.Linux.Proc.MemInfo
, System.Linux.Proc.Process
, System.Linux.Proc.Tcp
build-depends: base >= 4.8 && < 5.0
, attoparsec >= 0.12 && < 0.15
, bytestring >= 0.10 && < 0.13
, containers >= 0.5 && < 0.9
, directory >= 1.2 && < 1.4
, errors == 2.3.*
, text >= 1.2 && < 2.2
test-suite test
default-language: Haskell2010
ghc-options: -Wall -fwarn-tabs -threaded -O2
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: test-io.hs
other-modules: Test.System.Linux.Proc
Test.System.Linux.Proc.Hedgehog
build-depends: base >= 4.8 && < 5.0
, hedgehog >= 1.0 && < 1.8
, pretty-show == 1.10.*
, system-linux-proc