-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtpbt.cabal
46 lines (43 loc) · 1.31 KB
/
tpbt.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
cabal-version: 3.0
name: tpbt
version: 0.1.0.0
synopsis: The Pirate Bay TUI
homepage: https://github.com/isaac025/tpbt
license: GPL-2.0-only
license-file: LICENSE
author: Isaac Hiram Lopez Diaz
maintainer: [email protected]
category: Development
build-type: Simple
extra-doc-files:
CHANGELOG.md
README.md
common warnings
ghc-options: -Wall -Werror -Wcompat -Widentities -Wincomplete-uni-patterns -Wincomplete-record-updates -Wno-unused-top-binds -Wno-orphans -Wno-error=unrecognised-warning-flags
library
import: warnings
exposed-modules:
App
Lifted
Core
default-extensions:
OverloadedStrings
build-depends: base ^>=4.17.2.1
, say
, directory
, text
, http-conduit
, aeson
, uri-encode
, mtl
, process
, filepath
hs-source-dirs: src
default-language: Haskell2010
executable tpbt
import: warnings
main-is: Main.hs
build-depends: base ^>=4.17.2.1
, tpbt
hs-source-dirs: app
default-language: Haskell2010