-
Notifications
You must be signed in to change notification settings - Fork 1
/
vinyl-json.cabal
40 lines (35 loc) · 1.23 KB
/
vinyl-json.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
-- Initial vinyl-json.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: vinyl-json
version: 0.3.0.0
synopsis: Provide json instances automagically to vinyl types
description: This adds Data.Aeson FromJSON instances for Simple records
license: MIT
license-file: LICENSE
author: Theo Belaire
maintainer: [email protected]
copyright: 2014 Theo Belaire
category: Web
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/tbelaire/vinyl-json.git
flag documentation
default: False
library
if flag(documentation)
build-depends: hscolour >= 1.20
exposed-modules: Data.Vinyl.JSON
Data.Vinyl.JSON.Examples
-- other-modules:
-- other-extensions:
build-depends: base >= 4.7 && < 5,
aeson,
text,
template-haskell == 2.9.*,
vinyl == 0.3.*,
bytestring
hs-source-dirs: src
default-language: Haskell2010