tvl-depot/third_party/overlays/haskell/extra-pkgs/pa-field-parser.nix
Profpatsch 0a98f8ec3b chore(third_party/haskell): update pa packages
Change-Id: I8abcb479b0f5c0bd6ed1abc3c9618c2362ff835a
Reviewed-on: https://cl.tvl.fyi/c/depot/+/9740
Autosubmit: Profpatsch <mail@profpatsch.de>
Tested-by: BuildkiteCI
Reviewed-by: Profpatsch <mail@profpatsch.de>
2023-10-15 18:58:41 +00:00

39 lines
724 B
Nix

{ 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;
}