packages feed

xdcc-1.1.2: xdcc.cabal

name:                 xdcc
version:              1.1.2
synopsis:             A wget-like utility for retrieving files from XDCC bots on
                      IRC
description:          XDCC (eXtended DCC) is a protocol used by IRC bots to make
                      files available for transfer. This utility can be used to
                      retrieve such files.
                      .
                      See <https://de.wikipedia.org/wiki/XDCC> for
                      more details.
license:              MIT
license-file:         LICENSE
homepage:             https://github.com/JanGe/xdcc
bug-reports:          https://github.com/JanGe/xdcc/issues
author:               Jan Gerlinger
maintainer:           git@jangerlinger.de
category:             Network
-- copyright:
build-type:           Simple
cabal-version:        >=1.10

executable xdcc
  hs-source-dirs:       src
  main-is:              Main.hs
  other-modules:        DCC
                      , IRC.Types
                      , XDCC
                      , ZNC
                      , Options.Applicative.Extended
  build-depends:        base                 >= 4.7      && < 5
                      , ascii-progress       >= 0.3.2.0  && < 0.4
                      , async                >= 2.1.0    && < 2.2
                      , bytestring           >= 0.10.6.0 && < 0.11
                      , case-insensitive     >= 1.2.0.6  && < 1.3
                      , concurrent-extra     >= 0.7.0.10 && < 0.8
                      , concurrent-output    >= 1.7.4    && < 1.8
                      , errors               >= 2.1.2    && < 2.2
                      , iproute              >= 1.7.0    && < 1.8
                      , irc-client           >= 0.4.2.0  && < 0.5
                      , irc-conduit          >= 0.2.0.0  && < 0.3
                      , irc-ctcp             >= 0.1.3.0  && < 0.2
                      , irc-dcc              >= 2.0.0    && < 2.1
                      , lifted-base          >= 0.2.3.0  && < 0.3
                      , network              >= 2.6.2.1  && < 2.7
                      , optparse-applicative >= 0.12.1.0 && < 0.14
                      , path                 >= 0.5.7    && < 0.6
                      , random               == 1.1.*
                      , text                 >= 1.2.2.1  && < 1.3
                      , text-format          >= 0.3.1.1  && < 0.4
                      , transformers         >= 0.4.2.0  && < 0.6
                      , safe-exceptions      >= 0.1.4.0  && < 0.2
                      , stm                  >= 2.4.4.1  && < 2.5
                      , unix-compat          >= 0.4.1.0  && < 0.5
  default-language:     Haskell2010
  ghc-options:          -Wall -threaded -rtsopts -with-rtsopts=-N