blob: b327340d349af472e04dce1dbbc915df0597b953 (
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
|
{ mkDerivation
, aeson
, aeson-better-errors
, attoparsec
, base
, case-insensitive
, containers
, lib
, pa-error-tree
, pa-prelude
, scientific
, semigroupoids
, text
}:
mkDerivation {
pname = "pa-field-parser";
version = "0.1.0.1";
sha256 = "e7fd0369898b6993e6e2aaab43e7cc84d173dc2d21eadca1884d2e7a780ad71f";
libraryHaskellDepends = [
aeson
aeson-better-errors
attoparsec
base
case-insensitive
containers
pa-error-tree
pa-prelude
scientific
semigroupoids
text
];
homepage = "https://github.com/possehl-analytics/pa-hackage";
description = "“Vertical” parsing of values";
license = lib.licenses.bsd3;
}
|