about summary refs log tree commit diff
path: root/third_party/overlays/haskell/extra-pkgs/pa-field-parser.nix
blob: a3c146ee098badc3b58f6718ceb99983cf39678b (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
{ mkDerivation
, aeson
, aeson-better-errors
, attoparsec
, base
, case-insensitive
, containers
, lib
, pa-error-tree
, pa-prelude
, scientific
, semigroupoids
, template-haskell
, text
, time
}:
mkDerivation {
  pname = "pa-field-parser";
  version = "0.3.0.0";
  sha256 = "528c2b6bf5ad6454861b059c7eb6924f4c32bcb5b8faa4c2389d9ddfd92fcd57";
  libraryHaskellDepends = [
    aeson
    aeson-better-errors
    attoparsec
    base
    case-insensitive
    containers
    pa-error-tree
    pa-prelude
    scientific
    semigroupoids
    template-haskell
    text
    time
  ];
  homepage = "https://github.com/possehl-analytics/pa-hackage";
  description = "“Vertical” parsing of values";
  license = lib.licenses.bsd3;
}