about summary refs log tree commit diff
path: root/third_party/overlays
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2023-10-15T18·16+0200
committerclbot <clbot@tvl.fyi>2023-10-15T18·58+0000
commit0a98f8ec3b7c98b53e9bb1203cb5b63ecdc068ce (patch)
treed30e5a18cf121605767d5905abf50807ca7be6db /third_party/overlays
parent9aafbe8d952d6e31fa7273572f00ec79d9d15554 (diff)
chore(third_party/haskell): update pa packages r/6816
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>
Diffstat (limited to 'third_party/overlays')
-rw-r--r--third_party/overlays/haskell/default.nix6
-rw-r--r--third_party/overlays/haskell/extra-pkgs/pa-field-parser.nix (renamed from third_party/overlays/haskell/extra-pkgs/pa-field-parser-0.1.0.1.nix)8
-rw-r--r--third_party/overlays/haskell/extra-pkgs/pa-json.nix (renamed from third_party/overlays/haskell/extra-pkgs/pa-json-0.2.1.0.nix)10
-rw-r--r--third_party/overlays/haskell/extra-pkgs/pa-prelude.nix (renamed from third_party/overlays/haskell/extra-pkgs/pa-prelude-0.1.0.0.nix)10
4 files changed, 21 insertions, 13 deletions
diff --git a/third_party/overlays/haskell/default.nix b/third_party/overlays/haskell/default.nix
index 9841631e73..614fc26d56 100644
--- a/third_party/overlays/haskell/default.nix
+++ b/third_party/overlays/haskell/default.nix
@@ -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 { };
     };
   };
diff --git a/third_party/overlays/haskell/extra-pkgs/pa-field-parser-0.1.0.1.nix b/third_party/overlays/haskell/extra-pkgs/pa-field-parser.nix
index b327340d34..a3c146ee09 100644
--- a/third_party/overlays/haskell/extra-pkgs/pa-field-parser-0.1.0.1.nix
+++ b/third_party/overlays/haskell/extra-pkgs/pa-field-parser.nix
@@ -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";
diff --git a/third_party/overlays/haskell/extra-pkgs/pa-json-0.2.1.0.nix b/third_party/overlays/haskell/extra-pkgs/pa-json.nix
index 4beeba32fe..8ce838b22c 100644
--- a/third_party/overlays/haskell/extra-pkgs/pa-json-0.2.1.0.nix
+++ b/third_party/overlays/haskell/extra-pkgs/pa-json.nix
@@ -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
diff --git a/third_party/overlays/haskell/extra-pkgs/pa-prelude-0.1.0.0.nix b/third_party/overlays/haskell/extra-pkgs/pa-prelude.nix
index 765ed31ba6..17e1996ab6 100644
--- a/third_party/overlays/haskell/extra-pkgs/pa-prelude-0.1.0.0.nix
+++ b/third_party/overlays/haskell/extra-pkgs/pa-prelude.nix
@@ -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";