-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathxdcc.cabal
More file actions
56 lines (55 loc) · 2.72 KB
/
xdcc.cabal
File metadata and controls
56 lines (55 loc) · 2.72 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
name: xdcc
version: 1.1.4
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://github.com/JanGe/xdcc/blob/master/README.md>
for usage instructions.
.
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-output >= 1.7.4 && < 1.10
, errors >= 2.1.2 && < 2.3
, iproute >= 1.7.0 && < 1.8
, irc-client >= 0.4.3.0 && < 0.5
, irc-dcc >= 2.0.1 && < 2.1
, monad-control >= 1.0.1.0 && < 1.1
, network >= 2.6.2.1 && < 2.7
, optparse-applicative >= 0.12.1.0 && < 0.15
, path >= 0.5.7 && < 0.7
, random == 1.1.*
, text >= 1.2.2.1 && < 1.3
, transformers >= 0.4.2.0 && < 0.6
, transformers-base >= 0.4.4 && < 0.5
, safe-exceptions >= 0.1.4.0 && < 0.2
, signal >= 0.1.0.3 && < 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