tvl-depot/third_party/overlays/haskell/extra-pkgs/pa-json.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

43 lines
751 B
Nix

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