let's see how we go...

This commit is contained in:
Robert Pearce 2020-09-21 22:03:52 -04:00
parent ba4bd84bd0
commit b29661efb6
No known key found for this signature in database
GPG key ID: 07A0E482E5616C9B
35 changed files with 902 additions and 2 deletions

19
generator/my-site.cabal Normal file
View file

@ -0,0 +1,19 @@
cabal-version: 2.4
name: my-site
version: 0.1.0.0
build-type: Simple
license: BSD-3-Clause
license-file: LICENSE
executable hakyll-site
main-is: Main.hs
hs-source-dirs: src
build-depends: base == 4.*
, hakyll ^>= 4.13.3.0
, pandoc >= 2.0.5 && < 2.10
, text ^>= 1.2.4
, time >= 1.8 && < 1.10
other-modules: Slug
ghc-options: -Wall -threaded
default-language: Haskell2010