gallery/make-pages/make-pages.cabal

84 lines
1.9 KiB
Text
Raw Normal View History

2020-07-08 00:21:08 +02:00
cabal-version: 2.2
name: make-pages
version: 0.1.0
license: AGPL-3.0-or-later
author: Rhiannon Morris <rhi@rhiannon.website>
maintainer: Rhiannon Morris <rhi@rhiannon.website>
2020-07-15 11:43:57 +02:00
flag pretty-verbose
description: pretty-print the verbose output
default: True
2020-07-08 00:21:08 +02:00
executable make-pages
hs-source-dirs: .
main-is: Main.hs
other-modules:
2020-07-15 21:31:46 +02:00
BuilderQQ,
2020-10-06 22:07:39 +02:00
Records,
2020-09-25 23:08:44 +02:00
Date,
2020-10-06 22:07:39 +02:00
Info,
2020-07-15 20:06:19 +02:00
Depend,
2020-10-06 22:07:39 +02:00
NsfwWarning,
2020-07-16 16:29:32 +02:00
GalleryPage,
IndexPage,
2020-07-19 18:04:40 +02:00
SinglePage,
2020-10-06 22:07:39 +02:00
RSS,
ListTags,
Options
2020-07-08 00:21:08 +02:00
default-language: Haskell2010
default-extensions:
2020-07-08 02:52:01 +02:00
BlockArguments,
2020-07-15 20:06:19 +02:00
ConstraintKinds,
2020-07-13 08:33:27 +02:00
DataKinds,
DeriveAnyClass,
2021-08-23 16:30:11 +02:00
DeriveTraversable,
DerivingStrategies,
DerivingVia,
2020-07-08 05:27:38 +02:00
DuplicateRecordFields,
FlexibleContexts,
2020-07-15 11:35:32 +02:00
FlexibleInstances,
GeneralizedNewtypeDeriving,
2020-07-24 15:20:10 +02:00
LambdaCase,
2020-07-09 06:18:53 +02:00
NamedFieldPuns,
2020-07-13 08:33:27 +02:00
OverloadedLabels,
2020-07-25 15:05:38 +02:00
OverloadedLists,
2020-07-13 04:01:31 +02:00
OverloadedStrings,
PatternSynonyms,
QuasiQuotes,
2020-07-16 11:47:34 +02:00
RankNTypes,
2021-08-23 16:30:11 +02:00
ScopedTypeVariables,
StandaloneDeriving,
2020-07-16 16:07:28 +02:00
TupleSections,
2020-07-15 11:35:32 +02:00
TypeSynonymInstances,
2020-07-13 04:01:31 +02:00
ViewPatterns
2020-07-25 12:56:06 +02:00
other-extensions:
CPP,
ImplicitParams,
MultiParamTypeClasses,
ScopedTypeVariables,
TemplateHaskell,
TransformListComp,
TypeApplications
2020-07-08 00:21:08 +02:00
build-depends:
2020-07-12 06:05:15 +02:00
base >= 4.12.0.0 && < 4.15,
bytestring ^>= 0.10.8.2,
2020-07-15 11:43:57 +02:00
containers ^>= 0.6.0.1,
2020-07-16 16:07:28 +02:00
filemanip ^>= 0.3.6.3,
filepath ^>= 1.4.2.1,
2020-08-04 02:27:19 +02:00
hashable ^>= 1.3.0.0,
2020-07-12 06:05:15 +02:00
HsYAML ^>= 0.2.1.0,
2020-07-13 04:01:31 +02:00
optparse-applicative ^>= 0.15.1.0,
2020-08-09 01:22:00 +02:00
process ^>= 1.6.8.2,
2020-07-15 11:43:57 +02:00
template-haskell ^>= 2.16.0.0,
text ^>= 1.2.3.1,
2020-07-25 01:10:52 +02:00
time >= 1.8.0.2 && < 1.10,
unordered-containers ^>= 0.2.11.0
2020-07-08 00:21:08 +02:00
ghc-options:
2021-03-07 22:09:28 +01:00
-Wall -threaded -rtsopts -with-rtsopts=-N -O
2020-07-15 11:43:57 +02:00
if flag(pretty-verbose)
build-depends:
2020-07-15 12:07:04 +02:00
pretty ^>= 1.1.3.6,
2020-07-15 11:43:57 +02:00
pretty-show ^>= 1.10
cpp-options: -DPRETTY_VERBOSE