aboutsummaryrefslogtreecommitdiff
path: root/kazbek.cabal
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2025-12-23 16:45:10 +0100
committerEugen Wissner <belka@caraus.de>2025-12-23 16:45:10 +0100
commit4fc36be9dc8a64cafe694335dff972d5ee29ee57 (patch)
tree6aa8ace7b810d268e0ef44374c9c441170ffab79 /kazbek.cabal
parent071018dce6b35afe225903772488495f5f311509 (diff)
downloadkazbek-4fc36be9dc8a64cafe694335dff972d5ee29ee57.tar.gz
Allow custom siteurl/home for locopy
Diffstat (limited to 'kazbek.cabal')
-rw-r--r--kazbek.cabal32
1 files changed, 23 insertions, 9 deletions
diff --git a/kazbek.cabal b/kazbek.cabal
index a22dee4..74d7f2a 100644
--- a/kazbek.cabal
+++ b/kazbek.cabal
@@ -11,31 +11,45 @@ build-type: Simple
common warnings
ghc-options: -Wall
-
-executable tea-cleaner
- import: warnings
- main-is: Main.hs
default-extensions:
TemplateHaskell,
OverloadedStrings,
QuasiQuotes,
DuplicateRecordFields,
RecordWildCards
+ default-language: GHC2024
+ build-depends:
+ aeson ^>= 2.2.3,
+ base >= 4.20 && < 5,
+ bytestring ^>= 0.12.2,
+ text ^>= 2.1
+
+executable tea-cleaner
+ import: warnings
+ main-is: Main.hs
other-modules:
TeaCleaner.Client
TeaCleaner.Configuration
TeaCleaner.Filter
TeaCleaner.Options
build-depends:
- aeson ^>= 2.2.3,
- base >= 4.20 && < 5,
- bytestring ^>= 0.12.2,
modern-uri ^>= 0.3.6,
optparse-applicative ^>= 0.19.0,
req ^>= 3.13,
time >= 1.9 && < 2,
- text ^>= 2.1,
tomland ^>= 1.3.3,
vector ^>= 0.13.2
hs-source-dirs: tea-cleaner
- default-language: GHC2024
+
+executable locopy
+ import: warnings
+ main-is: Main.hs
+ hs-source-dirs: locopy
+ other-modules:
+ Locopy.CommandLine
+ Locopy.Wordpress
+ build-depends:
+ directory ^>= 1.3.9,
+ filepath ^>= 1.5.4,
+ optparse-applicative ^>= 0.19,
+ process ^>= 1.6.26