diff options
Diffstat (limited to 'package.yaml')
| -rw-r--r-- | package.yaml | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/package.yaml b/package.yaml new file mode 100644 index 0000000..c180a88 --- /dev/null +++ b/package.yaml @@ -0,0 +1,68 @@ +name: www-main +version: 0.1.0.0 +license: MIT +author: "Chris Wells" +maintainer: "chris@mathematicaster.org" +copyright: "2024 Chris Wells" + +dependencies: + - base >= 4.7 && < 5 + +language: GHC2021 + +ghc-options: + - -Wall + - -Wcompat + - -Widentities + - -Wincomplete-record-updates + - -Wincomplete-uni-patterns + - -Wmissing-home-modules + - -Wpartial-fields + - -Wredundant-constraints + +default-extensions: + - BangPatterns + - DeriveGeneric + - DeriveLift + - DerivingStrategies + - DefaultSignatures + - FunctionalDependencies + - GADTs + - LambdaCase + - MultiWayIf + - OverloadedStrings + - PatternSynonyms + - TypeFamilies + +library: + source-dirs: src + dependencies: + - binary + - blaze-html + - bytestring + - email-validate + - filepath + - hakyll + - HaTeX + - latex-formulae-hakyll + - mtl + - network-uri + - pandoc + - parsec + - string-conv + - system + - text + - uri-encode + +executables: + site: + main: Main.hs + source-dirs: app + ghc-options: + - -threaded + dependencies: + - www-main + - hakyll + - hakyll-images + - hakyll-sass + - hjsmin |
