2023-08-09 20:59:42 +02:00
|
|
|
cabal-version: 2.4
|
|
|
|
name: slackbuilder
|
|
|
|
version: 0.1.0.0
|
2023-08-04 21:33:21 +02:00
|
|
|
|
|
|
|
-- A longer description of the package.
|
|
|
|
-- description:
|
|
|
|
|
2023-08-09 20:59:42 +02:00
|
|
|
synopsis: Slackware build scripts and configuration files.
|
2023-08-04 21:33:21 +02:00
|
|
|
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
|
2023-08-04 21:33:21 +02:00
|
|
|
|
2023-08-06 14:25:19 +02:00
|
|
|
other-modules:
|
|
|
|
SlackBuilder.CommandLine
|
2023-08-09 20:59:42 +02:00
|
|
|
SlackBuilder.Config
|
2023-08-06 14:25:19 +02:00
|
|
|
SlackBuilder.Updater
|
2023-08-04 21:33:21 +02:00
|
|
|
default-extensions:
|
2023-08-09 20:59:42 +02:00
|
|
|
DataKinds
|
|
|
|
DuplicateRecordFields
|
2023-08-04 21:33:21 +02:00
|
|
|
OverloadedStrings
|
2023-08-06 14:25:19 +02:00
|
|
|
RecordWildCards
|
2023-08-04 21:33:21 +02:00
|
|
|
TemplateHaskell
|
2023-08-09 20:59:42 +02:00
|
|
|
TypeApplications
|
2023-08-04 21:33:21 +02:00
|
|
|
build-depends:
|
|
|
|
aeson ^>= 2.2.0,
|
|
|
|
base ^>= 4.16.4.0,
|
2023-08-06 14:25:19 +02:00
|
|
|
bytestring ^>= 0.11.0,
|
|
|
|
modern-uri ^>= 0.3.6,
|
|
|
|
optparse-applicative ^>= 0.18.1,
|
2023-08-04 21:33:21 +02:00
|
|
|
req ^>=3.13,
|
|
|
|
text ^>= 2.0,
|
2023-08-09 20:59:42 +02:00
|
|
|
tomland ^>= 1.3.3,
|
2023-08-04 21:33:21 +02:00
|
|
|
unordered-containers ^>= 0.2.19,
|
|
|
|
vector ^>= 0.13.0
|
2023-08-09 20:59:42 +02:00
|
|
|
hs-source-dirs: app
|
2023-08-04 21:33:21 +02:00
|
|
|
default-language: Haskell2010
|