2021-09-05 19:30:29 +02:00
|
|
|
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
|
|
|
|
|
|
|
|
library
|
2021-09-20 14:19:48 +02:00
|
|
|
exposed-modules: Kino.Request
|
|
|
|
, Kino.UI
|
|
|
|
, Kino.UI.Widgets
|
|
|
|
, Kino.Torrent
|
|
|
|
, Kino.Misc
|
|
|
|
, Kino.Types
|
2021-09-05 19:30:29 +02:00
|
|
|
other-modules:
|
|
|
|
-- other-extensions:
|
2021-09-13 19:00:26 +02:00
|
|
|
ghc-options: -Wall
|
2021-09-05 19:30:29 +02:00
|
|
|
build-depends: base ^>=4.14.1.0
|
|
|
|
, wreq
|
|
|
|
, aeson
|
|
|
|
, lens-aeson
|
|
|
|
, lens
|
|
|
|
, bytestring
|
|
|
|
, text
|
2021-09-06 21:02:39 +02:00
|
|
|
, brick
|
|
|
|
, HTTP
|
2021-09-14 17:06:34 +02:00
|
|
|
, vty
|
|
|
|
, transformers
|
|
|
|
, microlens
|
|
|
|
, microlens-th
|
2021-09-17 17:36:58 +02:00
|
|
|
, Clipboard
|
2021-09-05 19:30:29 +02:00
|
|
|
hs-source-dirs: src
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
executable kino
|
|
|
|
main-is: Main.hs
|
2021-09-20 14:19:48 +02:00
|
|
|
other-modules:
|
2021-09-05 19:30:29 +02:00
|
|
|
-- other-extensions:
|
2021-09-14 17:06:34 +02:00
|
|
|
ghc-options: -Wall -threaded
|
2021-09-06 21:02:39 +02:00
|
|
|
build-depends: base ^>=4.14.1.0
|
|
|
|
, kino
|
2021-09-05 19:30:29 +02:00
|
|
|
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
|