start make-pages
This commit is contained in:
parent
b2432a1e04
commit
aa145819f5
2 changed files with 24 additions and 0 deletions
4
make-pages/Main.hs
Normal file
4
make-pages/Main.hs
Normal file
|
@ -0,0 +1,4 @@
|
|||
module Main (main) where
|
||||
|
||||
main :: IO ()
|
||||
main = error "undefined: 'main' in Main.hs"
|
20
make-pages/make-pages.cabal
Normal file
20
make-pages/make-pages.cabal
Normal file
|
@ -0,0 +1,20 @@
|
|||
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>
|
||||
|
||||
executable make-pages
|
||||
hs-source-dirs: .
|
||||
main-is: Main.hs
|
||||
default-language: Haskell2010
|
||||
default-extensions:
|
||||
OverloadedStrings
|
||||
build-depends:
|
||||
base ^>= 4.12.0.0,
|
||||
yaml ^>= 0.11.4.0,
|
||||
blaze-html ^>= 0.9.1.2
|
||||
ghc-options:
|
||||
-Wall -threaded -rtsopts -with-rtsopts=-N
|
Loading…
Reference in a new issue