-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmikey-bike.cabal
60 lines (55 loc) · 1.86 KB
/
mikey-bike.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
cabal-version: 3.0
name: mikey-bike
version: 0.1.0.0
build-type: Simple
synopsis: Static site generator for http://mikey.bike.
description: Static site generator, using the Hakyll library,
for http://mikey.bike.
category: Web
author: Michael Hoy
maintainer: [email protected]
executable site
main-is: Main.hs
hs-source-dirs: exe
ghc-options: -threaded
default-language: Haskell2010
build-depends: base == 4.*
, mikey-bike
library
hs-source-dirs: src
ghc-options: -threaded
default-language: Haskell2010
exposed-modules: Rules.Writing
, Rules.Journal
, Rules.Notes
, Rules.Lists
, AssetHashing
, Contexts.Layout
, Contexts.NextPrevNav
, Models.ArchiveGrouping
, Site
build-depends: base == 4.*
, base16-bytestring ^>= 1.0.1.0
, bytestring ^>= 0.11.4.0
, containers ^>= 0.6.2.1
, cryptohash-sha256 ^>= 0.11.102.0
, directory ^>= 1.3.3.0
, extra ^>= 1.7.13
, filepath >=1.4
, hakyll == 4.15.*
, hxt >=9.3
, time >=1.6
, time-locale-compat >=0.1
test-suite test
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules: AssetHashingSpec
build-depends: base == 4.*
, containers ^>= 0.6.2.1
, filepath >=1.4
, hakyll == 4.15.*
, hspec ^>= 2.11.9
, mikey-bike
build-tool-depends: hspec-discover:hspec-discover