-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.dhall
More file actions
29 lines (26 loc) · 862 Bytes
/
package.dhall
File metadata and controls
29 lines (26 loc) · 862 Bytes
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
let defs = ./defaults.dhall
in let deps =
[ "base"
, "blaze-html"
, "containers"
, "skylighting-core"
, "skylighting"
, "filepath"
, "hakyll"
, "pandoc >=2.9"
]
in let exts = ./default-extensions.dhall
in defs
⫽ exts
⫽ { name = "camp-hog"
, version = "1.0.0"
, synopsis = "blockscope.com"
, description = "Static site generator for blockscope.com"
, category = "web"
, github = "blockscope/blockscope"
, homepage =
"https://github.com/blockscope/blockscope/tree/develop#readme"
, executables.site
=
{ dependencies = deps, source-dirs = ".", main = "site.hs" }
}