about summary refs log tree commit diff
path: root/third_party/overlays/haskell/extra-pkgs/pa-json.nix
blob: 8ce838b22ccc34aaa241c63310f2900e5c4ab595 (plain) (blame)
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
{ mkDerivation
, aeson
, aeson-better-errors
, aeson-pretty
, base
, base64-bytestring
, bytestring
, containers
, lib
, pa-error-tree
, pa-field-parser
, pa-label
, pa-prelude
, scientific
, text
, time
, vector
}:
mkDerivation {
  pname = "pa-json";
  version = "0.3.0.0";
  sha256 = "45e79765e57e21400f3f3b1e86094473fac61d298618d7e34f6cad4988d8923b";
  libraryHaskellDepends = [
    aeson
    aeson-better-errors
    aeson-pretty
    base
    base64-bytestring
    bytestring
    containers
    pa-error-tree
    pa-field-parser
    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;
}