summaryrefslogtreecommitdiff
path: root/slackbuilder.cabal
blob: 076707c2206887c5de30a48ed6ce2202347bbd8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
cabal-version: 2.4
name: slackbuilder
version: 0.1.0.0

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
    main-is: Main.hs

    other-modules:
        SlackBuilder.CommandLine
        SlackBuilder.Config
        SlackBuilder.Download
        SlackBuilder.Trans
        SlackBuilder.Updater
    default-extensions:
        DataKinds
        DuplicateRecordFields
        LambdaCase
        NamedFieldPuns
        OverloadedStrings
        RecordWildCards
        TemplateHaskell
        TypeApplications
    build-depends:
        aeson ^>= 2.2.0,
        base ^>= 4.16.4.0,
        bytestring ^>= 0.11.0,
        conduit ^>= 1.3.5,
        cryptonite >= 0.30,
        filepath ^>= 1.4.2,
        http-client ^>= 0.7,
        modern-uri ^>= 0.3.6,
        optparse-applicative ^>= 0.18.1,
        process ^>= 1.6.17,
        req ^>= 3.13,
        text ^>= 2.0,
        tomland ^>= 1.3.3,
        transformers ^>= 0.5.6,
        unordered-containers ^>= 0.2.19,
        vector ^>= 0.13.0
    hs-source-dirs: app
    default-language: Haskell2010

    ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall