-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathip6addr.cabal
43 lines (39 loc) · 1.34 KB
/
ip6addr.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
name: ip6addr
version: 2.0.0
synopsis: Commandline tool to deal with IPv6 address text representations
description: Commandline tool to validate, canonize and generate IPv6 address text representations
license: BSD3
license-file: LICENSE
author: Michel Boucey
maintainer: michel.boucey@gmail.com
homepage: https://github.com/MichelBoucey/ip6addr
Copyright: Copyright (c) 2011-2025 - Michel Boucey
Category: Network,Console
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
Tested-With:
GHC ==8.8.4
|| ==8.10.7
|| ==9.0.2
|| ==9.2.8
|| ==9.4.8
|| ==9.6.5
|| ==9.8.2
|| ==9.10.1
|| ==9.12.1
Source-Repository head
Type: git
Location: https://github.com/MichelBoucey/ip6addr.git
executable ip6addr
hs-source-dirs: app
main-is: ip6addr.hs
other-modules: Paths_ip6addr
other-extensions: DeriveDataTypeable
, OverloadedStrings
build-depends: base >= 4.8 && < 5
, IPv6Addr >= 2.0.0 && < 2.1
, optparse-applicative >= 0.14 && < 0.19
, text >=1.1 && < 2.2
default-language: Haskell2010
GHC-Options: -Wall -O2