61 lines
1.6 KiB
Plaintext
61 lines
1.6 KiB
Plaintext
cabal-version: 2.4
|
|
name: kino
|
|
version: 0.1.0.0
|
|
synopsis: A terminal interface to the yts.mx api
|
|
-- description:
|
|
homepage:
|
|
-- bug-reports:
|
|
license: ISC
|
|
license-file: LICENSE
|
|
author: depsterr
|
|
maintainer: depsterr@protonmail.com
|
|
-- copyright:
|
|
category: Movie
|
|
extra-source-files: CHANGELOG.md
|
|
|
|
library
|
|
exposed-modules: Request
|
|
, JSONTypes
|
|
, UI
|
|
, Torrent
|
|
, Misc
|
|
, AppTypes
|
|
, Widgets
|
|
other-modules:
|
|
-- other-extensions:
|
|
ghc-options: -Wall
|
|
build-depends: base ^>=4.14.1.0
|
|
, wreq
|
|
, aeson
|
|
, lens-aeson
|
|
, lens
|
|
, bytestring
|
|
, text
|
|
, brick
|
|
, HTTP
|
|
, vty
|
|
, transformers
|
|
, microlens
|
|
, microlens-th
|
|
hs-source-dirs: src
|
|
default-language: Haskell2010
|
|
|
|
executable kino
|
|
main-is: Main.hs
|
|
-- other-modules:
|
|
-- other-extensions:
|
|
ghc-options: -Wall -threaded
|
|
build-depends: base ^>=4.14.1.0
|
|
, kino
|
|
, brick
|
|
, text
|
|
hs-source-dirs: app
|
|
default-language: Haskell2010
|
|
|
|
test-suite kino-test
|
|
default-language: Haskell2010
|
|
type: exitcode-stdio-1.0
|
|
hs-source-dirs: test
|
|
main-is: MyLibTest.hs
|
|
build-depends: base ^>=4.14.1.0
|