gallery/make-pages/make-pages.cabal

66 lines
1.6 KiB
Plaintext
Raw Normal View History

2020-07-07 18:21:08 -04:00
cabal-version: 2.2
name: make-pages
version: 0.1.0
license: AGPL-3.0-or-later
2024-07-07 14:03:19 -04:00
author: rhiannon morris <rhi@rhiannon.website>
maintainer: rhiannon morris <rhi@rhiannon.website>
2020-07-07 18:21:08 -04:00
2020-07-15 05:43:57 -04:00
flag pretty-verbose
description: pretty-print the verbose output
default: True
2020-07-07 18:21:08 -04:00
executable make-pages
hs-source-dirs: .
main-is: Main.hs
other-modules:
2020-07-15 15:31:46 -04:00
BuilderQQ,
2020-09-25 17:08:44 -04:00
Date,
2020-10-06 16:07:39 -04:00
Info,
2020-07-15 14:06:19 -04:00
Depend,
2020-10-06 16:07:39 -04:00
NsfwWarning,
2020-07-16 10:29:32 -04:00
GalleryPage,
IndexPage,
2020-07-19 12:04:40 -04:00
SinglePage,
2020-10-06 16:07:39 -04:00
RSS,
ListTags,
Options
2024-07-07 14:04:38 -04:00
default-language: GHC2024
2020-07-07 18:21:08 -04:00
default-extensions:
2020-07-07 20:52:01 -04:00
BlockArguments,
DeriveAnyClass,
DerivingVia,
2020-07-07 23:27:38 -04:00
DuplicateRecordFields,
2020-07-25 09:05:38 -04:00
OverloadedLists,
2020-07-12 22:01:31 -04:00
OverloadedStrings,
OverloadedRecordDot,
2020-07-12 22:01:31 -04:00
QuasiQuotes,
2020-07-15 05:35:32 -04:00
TypeSynonymInstances,
2020-07-12 22:01:31 -04:00
ViewPatterns
2020-07-25 06:56:06 -04:00
other-extensions:
2024-07-07 14:04:38 -04:00
PatternSynonyms,
2020-07-25 06:56:06 -04:00
CPP,
ImplicitParams,
2024-07-07 14:04:38 -04:00
TemplateHaskell
2020-07-07 18:21:08 -04:00
build-depends:
2024-07-07 13:48:08 -04:00
base >= 4.16.4 && < 4.21,
bytestring >= 0.11.3.1 && < 0.14,
containers >= 0.6.0.1 && < 0.8,
2020-07-16 10:07:28 -04:00
filemanip ^>= 0.3.6.3,
2024-07-07 13:48:08 -04:00
filepath >= 1.4.2.1 && < 1.6,
hashable >= 1.3.0.0 && < 1.5,
2020-07-12 00:05:15 -04:00
HsYAML ^>= 0.2.1.0,
2020-07-12 22:01:31 -04:00
optparse-applicative ^>= 0.15.1.0,
2020-08-08 19:22:00 -04:00
process ^>= 1.6.8.2,
2024-07-07 13:48:08 -04:00
template-haskell >= 2.18.0.0 && < 2.23,
text >= 1.2.3.1 && < 2.2,
time >= 1.8.0.2 && < 1.13,
2020-07-24 19:10:52 -04:00
unordered-containers ^>= 0.2.11.0
2020-07-07 18:21:08 -04:00
ghc-options:
2021-03-07 16:09:28 -05:00
-Wall -threaded -rtsopts -with-rtsopts=-N -O
2020-07-15 05:43:57 -04:00
if flag(pretty-verbose)
build-depends:
2020-07-15 06:07:04 -04:00
pretty ^>= 1.1.3.6,
2020-07-15 05:43:57 -04:00
pretty-show ^>= 1.10
cpp-options: -DPRETTY_VERBOSE