You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
138 lines
2.5 KiB
138 lines
2.5 KiB
name: green
|
|
version: 0.1.0.0
|
|
git: https://bitsof.thisfieldwas.green/keywordsalad/thisfieldwas.green
|
|
license: BSD3
|
|
author: Logan McGrath
|
|
maintainer: "logan.mcgrath@thisfieldwas.green"
|
|
copyright: "Copyright (C) 2012-2021 Logan McGrath"
|
|
|
|
extra-source-files:
|
|
- README.md
|
|
|
|
description: Please see the README at <https://bitsof.thisfieldwas.green/keywordsalad/thisfieldwas.green#readme>
|
|
|
|
dependencies:
|
|
- base >= 4.14 && < 5
|
|
|
|
library:
|
|
source-dirs: src
|
|
dependencies:
|
|
- aeson
|
|
- binary
|
|
- bytestring
|
|
- data-default
|
|
- directory
|
|
- filepath
|
|
- hakyll
|
|
- hjsmin
|
|
# - JuicyPixels
|
|
- MissingH
|
|
- microlens
|
|
- microlens-th
|
|
- mtl
|
|
- network-uri
|
|
- optparse-applicative
|
|
- pandoc
|
|
- parsec
|
|
- process
|
|
- scientific
|
|
- template-haskell
|
|
- text
|
|
- time
|
|
- unordered-containers
|
|
- vector
|
|
- yaml
|
|
|
|
executables:
|
|
site:
|
|
main: Main.hs
|
|
source-dirs: app/site
|
|
ghc-options:
|
|
- -threaded
|
|
- -rtsopts
|
|
- -with-rtsopts=-N
|
|
dependencies:
|
|
- green
|
|
author:
|
|
main: Main.hs
|
|
source-dirs: app/author
|
|
ghc-options:
|
|
- -threaded
|
|
- -rtsopts
|
|
- -with-rtsopts=-N
|
|
dependencies:
|
|
- green
|
|
|
|
tests:
|
|
test:
|
|
main: Spec.hs
|
|
source-dirs: test
|
|
ghc-options:
|
|
- -threaded
|
|
- -rtsopts
|
|
- -with-rtsopts=-N
|
|
dependencies:
|
|
- containers
|
|
- green
|
|
- hakyll
|
|
- hspec
|
|
- parsec
|
|
- time
|
|
|
|
default-extensions:
|
|
- BangPatterns
|
|
- BinaryLiterals
|
|
- BlockArguments
|
|
- ConstraintKinds
|
|
- DataKinds
|
|
- DefaultSignatures
|
|
- DeriveDataTypeable
|
|
- DeriveFoldable
|
|
- DeriveFunctor
|
|
- DeriveGeneric
|
|
- DeriveTraversable
|
|
- DoAndIfThenElse
|
|
- EmptyDataDecls
|
|
- ExistentialQuantification
|
|
- FlexibleContexts
|
|
- FlexibleInstances
|
|
- FunctionalDependencies
|
|
- GADTs
|
|
- GeneralizedNewtypeDeriving
|
|
- InstanceSigs
|
|
- KindSignatures
|
|
- LambdaCase
|
|
- MultiParamTypeClasses
|
|
- MultiWayIf
|
|
- NamedFieldPuns
|
|
- OverloadedStrings
|
|
- PartialTypeSignatures
|
|
- PatternGuards
|
|
- PatternSynonyms
|
|
- PolyKinds
|
|
- RankNTypes
|
|
- RecordWildCards
|
|
- ScopedTypeVariables
|
|
- StandaloneDeriving
|
|
- TemplateHaskell
|
|
- TupleSections
|
|
- TypeFamilies
|
|
- TypeSynonymInstances
|
|
- UndecidableInstances
|
|
- ViewPatterns
|
|
|
|
ghc-options:
|
|
- -fprint-potential-instances
|
|
- -Wall
|
|
- -Werror
|
|
- -Wcompat
|
|
- -Widentities
|
|
- -Wincomplete-patterns
|
|
- -Wincomplete-record-updates
|
|
- -Wincomplete-uni-patterns
|
|
- -Wmissing-home-modules
|
|
- -Wname-shadowing
|
|
- -Wpartial-fields
|
|
- -Wredundant-constraints
|
|
- -Wunused-packages
|
|
- -Wunused-type-patterns
|
|
|