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
|
{ mkDerivation
, aeson
, aeson-better-errors
, aeson-pretty
, base
, base64-bytestring
, bytestring
, containers
, hspec-core
, hspec-expectations
, lib
, pa-error-tree
, pa-label
, pa-prelude
, scientific
, text
, time
, vector
}:
mkDerivation {
pname = "pa-json";
version = "0.2.1.0";
sha256 = "d0c274fa38c05d38e9c2c15ee9dd4ff3ac369650dbc918c973863457110646c8";
libraryHaskellDepends = [
aeson
aeson-better-errors
aeson-pretty
base
base64-bytestring
bytestring
containers
hspec-core
hspec-expectations
pa-error-tree
pa-label
pa-prelude
scientific
text
time
vector
];
homepage = "https://github.com/possehl-analytics/pa-hackage";
description = "Our JSON parsers/encoders";
license = lib.licenses.bsd3;
}
|