2021-06-24 12:24:07 +02:00
|
|
|
cabal-version: 2.0
|
|
|
|
name: viddl
|
|
|
|
version: 0.1.0.0
|
|
|
|
synopsis: A web interface to youtube-dl
|
|
|
|
-- description:
|
|
|
|
homepage:
|
|
|
|
-- bug-reports:
|
|
|
|
license: ISC
|
|
|
|
license-file: LICENSE
|
|
|
|
author: depsterr
|
|
|
|
maintainer: depsterr@protonmail.com
|
|
|
|
category: Web
|
|
|
|
build-type: Simple
|
|
|
|
|
2021-07-02 14:45:20 +02:00
|
|
|
library
|
|
|
|
exposed-modules: Templates.Index
|
2021-06-27 12:26:52 +02:00
|
|
|
, Templates.Error
|
2021-07-02 14:45:20 +02:00
|
|
|
, YTDL
|
2021-07-02 15:23:59 +02:00
|
|
|
, Helpers
|
2021-07-06 16:25:55 +02:00
|
|
|
, Config
|
2021-07-04 22:40:55 +02:00
|
|
|
ghc-options: -Wall -O2 -threaded
|
2022-01-22 13:50:08 +01:00
|
|
|
build-depends: base
|
2021-07-02 14:45:20 +02:00
|
|
|
, scotty
|
|
|
|
, text
|
|
|
|
, raw-strings-qq
|
|
|
|
, network-uri
|
|
|
|
, directory
|
|
|
|
, process
|
2021-07-02 15:23:59 +02:00
|
|
|
, bytestring
|
2021-07-04 17:04:39 +02:00
|
|
|
, pureMD5
|
|
|
|
, utf8-string
|
2021-07-06 16:25:55 +02:00
|
|
|
, transformers
|
2021-07-12 17:14:21 +02:00
|
|
|
, xss-sanitize
|
2021-07-02 14:45:20 +02:00
|
|
|
hs-source-dirs: src
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
executable viddl
|
|
|
|
main-is: Main.hs
|
2021-07-04 17:04:39 +02:00
|
|
|
other-modules: Templates.Index
|
|
|
|
, Templates.Error
|
|
|
|
, Helpers
|
|
|
|
, YTDL
|
2021-07-06 16:25:55 +02:00
|
|
|
, Config
|
2021-07-04 22:40:55 +02:00
|
|
|
ghc-options: -Wall -O2 -threaded
|
2022-01-22 13:52:51 +01:00
|
|
|
build-depends: base
|
2021-06-24 12:24:07 +02:00
|
|
|
, scotty
|
|
|
|
, text
|
2021-07-04 17:04:39 +02:00
|
|
|
, raw-strings-qq
|
|
|
|
, network-uri
|
|
|
|
, directory
|
|
|
|
, process
|
|
|
|
, bytestring
|
|
|
|
, pureMD5
|
|
|
|
, utf8-string
|
2021-07-06 16:25:55 +02:00
|
|
|
, transformers
|
2021-07-12 17:14:21 +02:00
|
|
|
, xss-sanitize
|
2021-06-24 12:24:07 +02:00
|
|
|
hs-source-dirs: src
|
|
|
|
default-language: Haskell2010
|