slackbuilder/slackbuilder.cabal

57 lines
1.3 KiB
Plaintext
Raw Normal View History

2023-08-09 20:59:42 +02:00
cabal-version: 2.4
name: slackbuilder
version: 0.1.0.0
2023-08-09 20:59:42 +02:00
synopsis: Slackware build scripts and configuration files.
bug-reports: https://git.caraus.tech/OSS/slackbuilder/issues
license: MPL-2.0
license-files: LICENSE
copyright: (c) 2023 Eugen Wissner
author: Eugen Wissner
maintainer: belka@caraus.de
category: Build
extra-source-files: CHANGELOG.md
executable slackbuilder
2023-08-09 20:59:42 +02:00
main-is: Main.hs
other-modules:
SlackBuilder.CommandLine
2023-08-09 20:59:42 +02:00
SlackBuilder.Config
2023-08-15 10:33:19 +02:00
SlackBuilder.Download
SlackBuilder.Trans
SlackBuilder.Updater
default-extensions:
2023-08-09 20:59:42 +02:00
DataKinds
DuplicateRecordFields
2023-08-15 10:33:19 +02:00
LambdaCase
2023-08-10 12:47:43 +02:00
NamedFieldPuns
OverloadedStrings
RecordWildCards
TemplateHaskell
2023-08-09 20:59:42 +02:00
TypeApplications
build-depends:
aeson ^>= 2.2.0,
base ^>= 4.16.4.0,
bytestring ^>= 0.11.0,
2023-08-21 13:38:20 +02:00
conduit ^>= 1.3.5,
cryptonite >= 0.30,
2023-08-15 10:33:19 +02:00
filepath ^>= 1.4.2,
2023-08-21 13:38:20 +02:00
http-client ^>= 0.7,
modern-uri ^>= 0.3.6,
optparse-applicative ^>= 0.18.1,
2023-08-15 10:33:19 +02:00
process ^>= 1.6.17,
req ^>= 3.13,
text ^>= 2.0,
2023-08-09 20:59:42 +02:00
tomland ^>= 1.3.3,
2023-08-15 10:33:19 +02:00
transformers ^>= 0.5.6,
unordered-containers ^>= 0.2.19,
vector ^>= 0.13.0
2023-08-09 20:59:42 +02:00
hs-source-dirs: app
default-language: Haskell2010
2023-08-21 13:38:20 +02:00
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall