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>
This commit is contained in:
Profpatsch 2023-10-15 20:16:52 +02:00 committed by clbot
parent 9aafbe8d95
commit 0a98f8ec3b
6 changed files with 28 additions and 21 deletions

View file

@ -44,12 +44,12 @@ in
dhall = dhall-source "dhall" hsSuper.dhall;
dhall-nix = dhall-source "dhall-nix" hsSuper.dhall-nix;
pa-prelude = hsSelf.callPackage ./extra-pkgs/pa-prelude-0.1.0.0.nix { };
pa-prelude = hsSelf.callPackage ./extra-pkgs/pa-prelude.nix { };
pa-error-tree = hsSelf.callPackage ./extra-pkgs/pa-error-tree-0.1.0.0.nix { };
pa-field-parser = hsSelf.callPackage ./extra-pkgs/pa-field-parser-0.1.0.1.nix { };
pa-field-parser = hsSelf.callPackage ./extra-pkgs/pa-field-parser.nix { };
pa-label = hsSelf.callPackage ./extra-pkgs/pa-label-0.1.0.1.nix { };
pa-pretty = hsSelf.callPackage ./extra-pkgs/pa-pretty-0.1.1.0.nix { };
pa-json = hsSelf.callPackage ./extra-pkgs/pa-json-0.2.1.0.nix { };
pa-json = hsSelf.callPackage ./extra-pkgs/pa-json.nix { };
pa-run-command = hsSelf.callPackage ./extra-pkgs/pa-run-command-0.1.0.0.nix { };
};
};

View file

@ -10,12 +10,14 @@
, pa-prelude
, scientific
, semigroupoids
, template-haskell
, text
, time
}:
mkDerivation {
pname = "pa-field-parser";
version = "0.1.0.1";
sha256 = "e7fd0369898b6993e6e2aaab43e7cc84d173dc2d21eadca1884d2e7a780ad71f";
version = "0.3.0.0";
sha256 = "528c2b6bf5ad6454861b059c7eb6924f4c32bcb5b8faa4c2389d9ddfd92fcd57";
libraryHaskellDepends = [
aeson
aeson-better-errors
@ -27,7 +29,9 @@ mkDerivation {
pa-prelude
scientific
semigroupoids
template-haskell
text
time
];
homepage = "https://github.com/possehl-analytics/pa-hackage";
description = "Vertical parsing of values";

View file

@ -6,10 +6,9 @@
, base64-bytestring
, bytestring
, containers
, hspec-core
, hspec-expectations
, lib
, pa-error-tree
, pa-field-parser
, pa-label
, pa-prelude
, scientific
@ -19,8 +18,8 @@
}:
mkDerivation {
pname = "pa-json";
version = "0.2.1.0";
sha256 = "d0c274fa38c05d38e9c2c15ee9dd4ff3ac369650dbc918c973863457110646c8";
version = "0.3.0.0";
sha256 = "45e79765e57e21400f3f3b1e86094473fac61d298618d7e34f6cad4988d8923b";
libraryHaskellDepends = [
aeson
aeson-better-errors
@ -29,9 +28,8 @@ mkDerivation {
base64-bytestring
bytestring
containers
hspec-core
hspec-expectations
pa-error-tree
pa-field-parser
pa-label
pa-prelude
scientific

View file

@ -8,15 +8,18 @@
, mtl
, profunctors
, PyF
, scientific
, semigroupoids
, template-haskell
, text
, these
, validation-selective
, vector
}:
mkDerivation {
pname = "pa-prelude";
version = "0.1.0.0";
sha256 = "554556e3acbf7154131ed05209d803a19d6aa1c7d675fcb10501de50869c49ab";
version = "0.2.0.0";
sha256 = "68015f7c19e9c618fc04e2516baccfce52af24efb9ca1480162c9ea0aef7f301";
libraryHaskellDepends = [
base
bytestring
@ -26,10 +29,13 @@ mkDerivation {
mtl
profunctors
PyF
scientific
semigroupoids
template-haskell
text
these
validation-selective
vector
];
homepage = "https://github.com/possehl-analytics/pa-hackage";
description = "The Possehl Analytics Prelude";