-
Notifications
You must be signed in to change notification settings - Fork 0
/
tlug-website.cabal
41 lines (38 loc) · 1.46 KB
/
tlug-website.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
cabal-version: 2.2
name: tlug-website
version: 0.0.0.0
synopsis: The Tokyo Linux Users' Group Website
homepage: https://github.com/tlug/tlug.jp#readme
license: CC-BY-4.0
license-file: LICENSE.md
author: Curt J. Sampson et al.
maintainer: https://github.com/tlug/tlug.jp/issues
copyright: 2019 Curt J. Sampson et al.
category: website
build-type: Simple
extra-source-files: README.md
common deps
default-language: Haskell2010
ghc-options: -threaded -Werror -fwarn-incomplete-patterns
build-depends: base >= 4.7 && < 5,
hakyll,
filepath, directory, text, pandoc
executable site-compiler
import: deps
main-is: SiteCompiler.hs
hs-source-dirs: src/, app/
other-modules: TLUG.Parser
, TLUG.MediaWiki
, TLUG.WikiLink
, TLUG.WikiParam
test-suite test
import: deps
type: exitcode-stdio-1.0
main-is: ../app/Test.hs
build-depends: HTF
hs-source-dirs: src/
other-modules: TLUG.Hello, TLUG.HelloTest
, TLUG.Parser
, TLUG.WikiLink
, TLUG.WikiParam
, TLUG.MediaWiki, TLUG.MediaWikiTest