-
Notifications
You must be signed in to change notification settings - Fork 6
/
netrc.cabal
80 lines (70 loc) · 1.88 KB
/
netrc.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
80
cabal-version: >=1.10
name: netrc
version: 0.2.0.1
synopsis: Parser for .netrc files
homepage: https://github.com/haskell-hvr/netrc
bug-reports: https://github.com/haskell-hvr/netrc/issues
license: GPL-3
license-file: LICENSE
author: Herbert Valerio Riedel
maintainer: https://github.com/haskell-hvr
copyright: © 2015 Herbert Valerio Riedel
category: Network
build-type: Simple
description:
This package provides a parser and a printer for so-called @.netrc@ files.
.
See <http://linux.die.net/man/5/netrc netrc(5)> manual page for more
information about @.netrc@ files.
tested-with:
GHC == 9.12.0
GHC == 9.10.1
GHC == 9.8.2
GHC == 9.6.6
GHC == 9.4.8
GHC == 9.2.8
GHC == 9.0.2
GHC == 8.10.7
GHC == 8.8.4
GHC == 8.6.5
GHC == 8.4.4
GHC == 8.2.2
GHC == 8.0.2
extra-source-files:
changelog.md
src-tests/data/*.netrc
src-tests/data/*.netrc.out
library
default-language: Haskell2010
other-extensions:
BangPatterns
CPP
DeriveDataTypeable
DeriveGeneric
OverloadedStrings
RecordWildCards
build-depends:
base >= 4.9 && < 5
, deepseq >= 1.3 && < 1.6
, bytestring >= 0.10.4 && < 0.13
, parsec >= 3.1 && < 3.2
hs-source-dirs: src
exposed-modules: Network.NetRc
ghc-options:
-Wall
-Wcompat
test-suite test-netrc
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: src-tests
main-is: test-netrc.hs
build-depends:
netrc
, base
, bytestring
, tasty >= 0.10 && < 1.6
, tasty-golden == 2.3.*
, tasty-quickcheck >= 0.8.1 && < 1
source-repository head
type: git
location: https://github.com/haskell-hvr/netrc.git