-
Notifications
You must be signed in to change notification settings - Fork 0
/
hakyll-elm.cabal
44 lines (40 loc) · 1.53 KB
/
hakyll-elm.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
name: hakyll-elm
version: 0.2.1
synopsis: Hakyll wrapper for the Elm compiler.
description: A wrapper for compiling
Elm (<http://elm-lang.org>) programs to
html/javascript in a Hakyll project.
.
Currently supports single-module programs that
only import from an Elm runtime that's manually
included.
homepage: https://github.com/maxsnew/hakyll-elm
license: BSD3
license-file: LICENSE
copyright: Copyright: (c) 2013 Max New
author: Max New
maintainer: maxsnew@gmail.com
category: Web
build-type: Simple
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/maxsnew/hakyll-elm.git
branch: develop
source-repository this
type: git
location: git://github.com/maxsnew/hakyll-elm.git
branch: master
tag: v0.2.1
library
-- Modules exported by the library.
exposed-modules: Hakyll.Web.Elm
build-depends: base >= 4.6 && < 4.7,
hakyll >= 4.0 && < 4.5,
Elm >= 0.10.1 && <= 0.11,
mtl >= 1.0 && < 3.0,
blaze-html >= 0.4 && < 0.7,
blaze-markup >= 0.5 && < 0.6
-- Base language which the package is written in.
default-language: Haskell2010
ghc-options: -Wall