packages feed

ip6addr-2.0.1.0: ip6addr.cabal

cabal-version:      3.0
name:               ip6addr
version:            2.0.1.0
synopsis:
  Commandline tool to deal with IPv6 address text representations

description:
  Commandline tool to validate, canonize and generate IPv6 address text representations

license:            BSD-3-Clause
license-file:       LICENSE
author:             Michel Boucey
maintainer:         michel.boucey@gmail.com
homepage:           https://github.com/MichelBoucey/ip6addr
copyright:          Copyright (c) 2011-2026 - Michel Boucey
category:           Network, Cli
build-type:         Simple
extra-source-files: README.md
extra-doc-files:    CHANGELOG.md
tested-with:
  GHC ==8.8.4
   || ==8.10.7
   || ==9.0.2
   || ==9.2.8
   || ==9.4.8
   || ==9.6.7
   || ==9.8.4
   || ==9.10.3
   || ==9.12.2
   || ==9.14.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
  autogen-modules:  Paths_ip6addr
  other-extensions:
    DeriveDataTypeable
    OverloadedStrings

  build-depends:
      base                  >=4.8  && <5
    , IPv6Addr              >=3.0  && <3.1
    , optparse-applicative  >=0.14 && <1
    , text                  >=1.1  && <2.2

  default-language: Haskell2010
  ghc-options:      -Wall -O2