about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/haskell-modules
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/haskell-modules')
-rw-r--r--nixpkgs/pkgs/development/haskell-modules/configuration-common.nix103
-rw-r--r--nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix20
-rw-r--r--nixpkgs/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix4
-rw-r--r--nixpkgs/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix4
-rw-r--r--nixpkgs/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix32
-rw-r--r--nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml12672
-rw-r--r--nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml19
-rw-r--r--nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml146
-rw-r--r--nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml655
-rw-r--r--nixpkgs/pkgs/development/haskell-modules/configuration-nix.nix18
-rw-r--r--nixpkgs/pkgs/development/haskell-modules/hackage-packages.nix10286
-rw-r--r--nixpkgs/pkgs/development/haskell-modules/patches/bloomfilter-fix-on-32bit.patch28
12 files changed, 13726 insertions, 10261 deletions
diff --git a/nixpkgs/pkgs/development/haskell-modules/configuration-common.nix b/nixpkgs/pkgs/development/haskell-modules/configuration-common.nix
index 9951c38a54bb..c5aef8b2b131 100644
--- a/nixpkgs/pkgs/development/haskell-modules/configuration-common.nix
+++ b/nixpkgs/pkgs/development/haskell-modules/configuration-common.nix
@@ -116,10 +116,6 @@ self: super: {
   # There will probably be a new revision soon.
   hls-brittany-plugin = assert super.hls-brittany-plugin.version == "1.1.0.0"; doJailbreak super.hls-brittany-plugin;
 
-  hls-hlint-plugin = super.hls-hlint-plugin.override {
-    apply-refact = self.apply-refact_0_11_0_0;
-  };
-
   # For -f-auto see cabal.project in haskell-language-server.
   ghc-lib-parser-ex = addBuildDepend self.ghc-lib-parser (disableCabalFlag "auto" super.ghc-lib-parser-ex);
 
@@ -205,6 +201,11 @@ self: super: {
     })
   ] super.aeson);
 
+  # aeson 2.2.0.0 requires th-abstraction >= 0.5 & < 0.6
+  aeson_2_2_0_0 = super.aeson_2_2_0_0.overrideScope (hfinal: hprev: {
+    th-abstraction = hfinal.th-abstraction_0_5_0_0;
+  });
+
   # 2023-06-28: Test error: https://hydra.nixos.org/build/225565149
   orbits = dontCheck super.orbits;
 
@@ -237,8 +238,7 @@ self: super: {
   # Arion's test suite needs a Nixpkgs, which is cumbersome to do from Nixpkgs
   # itself. For instance, pkgs.path has dirty sources and puts a huge .git in the
   # store. Testing is done upstream.
-  # 2023-07-27: Allow base-4.17
-  arion-compose = dontCheck (assert super.arion-compose.version == "0.2.0.0"; doJailbreak super.arion-compose);
+  arion-compose = dontCheck super.arion-compose;
 
   # 2023-07-17: Outdated base bound https://github.com/srid/lvar/issues/5
   lvar = doJailbreak super.lvar;
@@ -253,6 +253,10 @@ self: super: {
   # https://github.com/glguy/config-value/commit/c5558c8258598fab686c259bff510cc1b19a0c50#commitcomment-119514821
   config-value = doJailbreak super.config-value;
 
+  # path-io bound is adjusted in 0.6.1 release
+  # https://github.com/tek/hix/commit/019426f6a3db256e4c96558ffe6fa2114e2f19a0
+  hix = doJailbreak super.hix;
+
   # waiting for release: https://github.com/jwiegley/c2hsc/issues/41
   c2hsc = appendPatch (fetchpatch {
     url = "https://github.com/jwiegley/c2hsc/commit/490ecab202e0de7fc995eedf744ad3cb408b53cc.patch";
@@ -312,7 +316,12 @@ self: super: {
 
   # Overriding the version pandoc dependency uses as the latest release has version bounds
   # defined as >= 3.1  && < 3.2, can be removed once pandoc gets bumped by Stackage.
-  patat = super.patat.override { pandoc = self.pandoc_3_1_6; };
+  patat = super.patat.override { pandoc = self.pandoc_3_1_6_1; };
+
+  # http2 also overridden in all-packages.nix for mailctl.
+  # twain is currently only used by mailctl, so the .overrideScope shouldn't
+  # negatively affect any other packages, at least currently...
+  twain = super.twain.overrideScope (self: _: { http2 = self.http2_3_0_3; });
 
   # The latest release on hackage has an upper bound on containers which
   # breaks the build, though it works with the version of containers present
@@ -338,7 +347,7 @@ self: super: {
       name = "git-annex-${super.git-annex.version}-src";
       url = "git://git-annex.branchable.com/";
       rev = "refs/tags/" + super.git-annex.version;
-      sha256 = "1i14mv8z9sr5sckckwiba4cypgs3iwk19pyrl9xzcrzz426dxrba";
+      sha256 = "0fg3q7apdijnlgyb0yps1znjjd2nv3016r9cyxyw209sqn3whnx5";
       # delete android and Android directories which cause issues on
       # darwin (case insensitive directory). Since we don't need them
       # during the build process, we can delete it to prevent a hash
@@ -856,9 +865,6 @@ self: super: {
   elm-server = markBroken super.elm-server;
   elm-yesod = markBroken super.elm-yesod;
 
-  # Tests failure with GHC >= 9.0.1, fixed in 1.6.24.4
-  yesod-core = assert super.yesod-core.version == "1.6.24.3"; dontCheck super.yesod-core;
-
   # https://github.com/Euterpea/Euterpea2/issues/40
   Euterpea = doJailbreak super.Euterpea;
 
@@ -896,6 +902,22 @@ self: super: {
   # It does not support aeson 2.0
   descriptive = super.descriptive.override { aeson = self.aeson_1_5_6_0; };
 
+  # Apply compatibility patches until a new release arrives
+  # https://github.com/phadej/spdx/issues/33
+  spdx = appendPatches [
+    (fetchpatch {
+      name = "spdx-ghc-9.4.patch";
+      url = "https://github.com/phadej/spdx/pull/30/commits/545dc69f433225c837375fba4cbbdb7f9cc7b09b.patch";
+      sha256 = "0p2h8dxkjy2v0dx7h6v62clmx5n5j3c4zh4myh926fijympi1glz";
+    })
+    (fetchpatch {
+      name = "spdx-ghc-9.6.patch";
+      url = "https://github.com/phadej/spdx/pull/32/commits/b51f665e9960614274ff6a9ac658802c1a785687.patch";
+      sha256 = "01vf1h0djr84yxsjfhym715ncx0w5q4l02k3dkbmg40pnc62ql4h";
+      excludes = [ ".github/**" ];
+    })
+  ] super.spdx;
+
   # 2022-03-19: Testsuite is failing: https://github.com/puffnfresh/haskell-jwt/issues/2
   jwt = dontCheck super.jwt;
 
@@ -935,25 +957,6 @@ self: super: {
   # https://github.com/basvandijk/concurrent-extra/issues/12
   concurrent-extra = dontCheck super.concurrent-extra;
 
-  bloomfilter = appendPatches [
-    # https://github.com/bos/bloomfilter/issues/7
-    ./patches/bloomfilter-fix-on-32bit.patch
-    # Fix build with GHC >= 9.2 by using stock unsafeShift* functions
-    # https://github.com/bos/bloomfilter/pull/20
-    (pkgs.fetchpatch {
-      name = "bloomfilter-ghc-9.2-shift.patch";
-      url = "https://github.com/bos/bloomfilter/pull/20/commits/fb79b39c44404fd791a3bed973e9d844fb084f1e.patch";
-      sha256 = "0clmr5iar4mhp8nbgh1c1rh4fl7dy0g2kbqqh0af8aqmhjpqzrq3";
-    })
-  ] (overrideCabal (drv: {
-    # Make sure GHC 9.2 patch applies correctly
-    revision = null;
-    editedCabalFile = null;
-    prePatch = drv.prePatch or "" + ''
-      "${pkgs.buildPackages.dos2unix}/bin/dos2unix" *.cabal
-    '';
-  }) super.bloomfilter);
-
   # https://github.com/pxqr/base32-bytestring/issues/4
   base32-bytestring = dontCheck super.base32-bytestring;
 
@@ -1161,9 +1164,11 @@ self: super: {
   github-backup = doJailbreak super.github-backup;
 
   # dontCheck: https://github.com/haskell-servant/servant-auth/issues/113
-  # doJailbreak: waiting on revision 1 to hit hackage
-  servant-auth-client = doJailbreak (dontCheck super.servant-auth-client);
+  servant-auth-client = dontCheck super.servant-auth-client;
+  # Allow lens-aeson >= 1.2 https://github.com/haskell-servant/servant/issues/1703
   servant-auth-server = doJailbreak super.servant-auth-server;
+  # Allow hspec >= 2.10 https://github.com/haskell-servant/servant/issues/1704
+  servant-foreign = doJailbreak super.servant-foreign;
 
   # Generate cli completions for dhall.
   dhall = self.generateOptparseApplicativeCompletions [ "dhall" ] super.dhall;
@@ -1918,27 +1923,23 @@ self: super: {
   inherit (let
     pandoc-cli-overlay = self: super: {
       # pandoc-cli requires pandoc >= 3.1
-      pandoc = self.pandoc_3_1_6;
+      pandoc = self.pandoc_3_1_6_1;
 
       # pandoc depends on crypton-connection, which requires tls >= 1.7
-      tls = self.tls_1_7_0;
+      tls = self.tls_1_7_1;
       crypton-connection = unmarkBroken super.crypton-connection;
 
       # pandoc depends on http-client-tls, which only starts depending
       # on crypton-connection in http-client-tls-0.3.6.2.
-      http-client-tls = self.http-client-tls_0_3_6_2;
-
-      # pandoc and skylighting are developed in tandem
-      skylighting-core = self.skylighting-core_0_13_4_1;
-      skylighting = self.skylighting_0_13_4_1;
+      http-client-tls = self.http-client-tls_0_3_6_3;
     };
   in {
     pandoc-cli = super.pandoc-cli.overrideScope pandoc-cli-overlay;
-    pandoc_3_1_6 = doDistribute (super.pandoc_3_1_6.overrideScope pandoc-cli-overlay);
+    pandoc_3_1_6_1 = doDistribute (super.pandoc_3_1_6_1.overrideScope pandoc-cli-overlay);
     pandoc-lua-engine = super.pandoc-lua-engine.overrideScope pandoc-cli-overlay;
   })
     pandoc-cli
-    pandoc_3_1_6
+    pandoc_3_1_6_1
     pandoc-lua-engine
     ;
 
@@ -2539,13 +2540,6 @@ self: super: {
   })
   super.polynomial);
 
-  # Unreleased bound relaxing patch allowing scotty 0.12
-  taffybar = appendPatch (pkgs.fetchpatch {
-    name = "taffybar-allow-scotty-0.12.patch";
-    url = "https://github.com/taffybar/taffybar/commit/2e428ba550fc51067526a0350b91185acef72d19.patch";
-    sha256 = "1lpcz671mk5cwqffjfi9ncc0d67bmwgzypy3i37a2fhfmxd0y3nl";
-  }) ((p: assert p.version == "4.0.0"; p) super.taffybar);
-
   # Tests likely broke because of https://github.com/nick8325/quickcheck/issues/359,
   # but fft is not on GitHub, so no issue reported.
   fft = dontCheck super.fft;
@@ -2562,12 +2556,6 @@ self: super: {
   # has been resolved.
   lucid-htmx = doJailbreak super.lucid-htmx;
 
-  # Needs lsp >= 2.1
-  futhark = super.futhark.overrideScope (fself: _: {
-    lsp = fself.lsp_2_1_0_0;
-    lsp-types = fself.lsp-types_2_0_1_0;
-  });
-
   # Too strict bounds on hspec
   # https://github.com/klapaucius/vector-hashtables/issues/11
   vector-hashtables = doJailbreak super.vector-hashtables;
@@ -2777,12 +2765,7 @@ self: super: {
 
   # Tests fail due to the newly-build fourmolu not being in PATH
   # https://github.com/fourmolu/fourmolu/issues/231
-  fourmolu_0_13_1_0 = dontCheck (super.fourmolu_0_13_1_0.overrideScope (lself: lsuper: {
-    Cabal-syntax = lself.Cabal-syntax_3_10_1_0;
-    ghc-lib-parser = lself.ghc-lib-parser_9_6_2_20230523;
-    parsec = lself.parsec_3_1_16_1;
-    text = lself.text_2_0_2;
-  }));
+  fourmolu_0_13_1_0 = dontCheck super.fourmolu_0_13_1_0;
 
   # Merged upstream, but never released. Allows both intel and aarch64 darwin to build.
   # https://github.com/vincenthz/hs-gauge/pull/106
diff --git a/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix b/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix
index 4bf89ec4ea31..d452618667b2 100644
--- a/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix
+++ b/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-8.10.x.nix
@@ -103,7 +103,6 @@ self: super: {
     # These aren't included in hackage-packages.nix because hackage2nix is configured for GHC 9.2, under which these plugins aren't supported.
     # See https://github.com/NixOS/nixpkgs/pull/205902 for why we use `self.<package>.scope`
     additionalDeps = with self.haskell-language-server.scope; [
-      hls-brittany-plugin
       hls-haddock-comments-plugin
       (unmarkBroken hls-splice-plugin)
       hls-tactics-plugin
@@ -112,17 +111,21 @@ self: super: {
     Cabal = lself.Cabal_3_6_3_0;
     aeson = lself.aeson_1_5_6_0;
     lens-aeson = doJailbreak lself.lens-aeson_1_1_3;
-    lsp-types = doJailbreak lsuper.lsp-types; # Checks require aeson >= 2.0
+    lsp-types = dontCheck (doJailbreak lsuper.lsp-types); # Checks require aeson >= 2.0
     hls-overloaded-record-dot-plugin = null;
   }));
 
-  ghc-lib-parser = doDistribute self.ghc-lib-parser_9_2_7_20230228;
+  ghc-lib-parser = doDistribute self.ghc-lib-parser_9_2_8_20230729;
   ghc-lib-parser-ex = doDistribute self.ghc-lib-parser-ex_9_2_1_1;
-  ghc-lib = doDistribute self.ghc-lib_9_2_7_20230228;
+  ghc-lib = doDistribute self.ghc-lib_9_2_8_20230729;
 
   mod = super.mod_0_1_2_2;
   path-io = doJailbreak super.path-io;
 
+  hls-cabal-plugin = super.hls-cabal-plugin.override {
+    Cabal-syntax = self.Cabal-syntax_3_8_1_0;
+  };
+
   ormolu = self.ormolu_0_5_0_1;
   fourmolu = dontCheck self.fourmolu_0_9_0_0;
   hlint = self.hlint_3_4_1;
@@ -134,15 +137,6 @@ self: super: {
     parser-combinators prettyprinter refinery retrie syb unagi-chan unordered-containers
   ]) super.hls-tactics-plugin);
 
-  hls-brittany-plugin =  unmarkBroken (addBuildDepends (with self.hls-brittany-plugin.scope; [
-    brittany czipwith extra ghc-exactprint ghcide hls-plugin-api hls-test-utils lens lsp-types
-    ]) (super.hls-brittany-plugin.overrideScope (lself: lsuper: {
-    brittany = doJailbreak (unmarkBroken lself.brittany_0_13_1_2);
-    aeson = lself.aeson_1_5_6_0;
-    multistate = unmarkBroken (dontCheck lsuper.multistate);
-    lsp-types = doJailbreak lsuper.lsp-types; # Checks require aeson >= 2.0
-  })));
-
   # This package is marked as unbuildable on GHC 9.2, so hackage2nix doesn't include any dependencies.
   # See https://github.com/NixOS/nixpkgs/pull/205902 for why we use `self.<package>.scope`
   hls-haddock-comments-plugin =  unmarkBroken (addBuildDepends (with self.hls-haddock-comments-plugin.scope; [
diff --git a/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix b/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix
index 0e53c1935966..7c2d3828866d 100644
--- a/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix
+++ b/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix
@@ -68,6 +68,10 @@ self: super: {
   tuple = addBuildDepend self.base-orphans super.tuple;
   vector-th-unbox = doJailbreak super.vector-th-unbox;
 
+  hls-cabal-plugin = super.hls-cabal-plugin.override {
+    Cabal-syntax = self.Cabal-syntax_3_8_1_0;
+  };
+
   ormolu = self.ormolu_0_5_2_0.override {
     Cabal-syntax = self.Cabal-syntax_3_8_1_0;
   };
diff --git a/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix b/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix
index 2214a2055f5d..29e7aab2491a 100644
--- a/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix
+++ b/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-9.2.x.nix
@@ -63,6 +63,10 @@ self: super: {
     algebraic-graphs = dontCheck self.algebraic-graphs_0_6_1;
   };
 
+  hls-cabal-plugin = super.hls-cabal-plugin.override {
+    Cabal-syntax = self.Cabal-syntax_3_8_1_0;
+  };
+
   ormolu = self.ormolu_0_5_2_0.override {
     Cabal-syntax = self.Cabal-syntax_3_8_1_0;
   };
diff --git a/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix b/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix
index d2fcb916020c..182a259df31c 100644
--- a/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix
+++ b/nixpkgs/pkgs/development/haskell-modules/configuration-ghc-9.6.x.nix
@@ -68,20 +68,27 @@ self: super: {
   doctest = doDistribute super.doctest_0_22_0;
   http-api-data = doDistribute self.http-api-data_0_6; # allows base >= 4.18
   some = doDistribute self.some_1_0_5;
-  th-abstraction = doDistribute self.th-abstraction_0_5_0_0;
+  th-abstraction = doDistribute self.th-abstraction_0_6_0_0;
   th-desugar = doDistribute self.th-desugar_1_15;
   semigroupoids = doDistribute self.semigroupoids_6_0_0_1;
   bifunctors = doDistribute self.bifunctors_5_6_1;
   base-compat = doDistribute self.base-compat_0_13_0;
   base-compat-batteries = doDistribute self.base-compat-batteries_0_13_0;
 
+  # Because we bumped the version of th-abstraction above.^
+  aeson = doJailbreak super.aeson;
+  free = doJailbreak super.free;
+
+  # Requires filepath >= 1.4.100.0 <=> GHC >= 9.6
+  file-io = unmarkBroken super.file-io;
+
   # Too strict upper bound on template-haskell
   # https://github.com/mokus0/th-extras/pull/21
   th-extras = doJailbreak super.th-extras;
 
   ghc-lib = doDistribute self.ghc-lib_9_6_2_20230523;
   ghc-lib-parser = doDistribute self.ghc-lib-parser_9_6_2_20230523;
-  ghc-lib-parser-ex = doDistribute self.ghc-lib-parser-ex_9_6_0_0;
+  ghc-lib-parser-ex = doDistribute self.ghc-lib-parser-ex_9_6_0_1;
 
   # v0.1.6 forbids base >= 4.18
   singleton-bool = doDistribute super.singleton-bool_0_1_7;
@@ -164,23 +171,14 @@ self: super: {
 
   # 2023-04-03: plugins disabled for hls 1.10.0.0 based on
   #
-  haskell-language-server =
-    let
-      # TODO: HLS-2.0.0.0 added support for the foumolu plugin for ghc-9.6.
-      # However, putting together all the overrides to get the latest
-      # version of fourmolu compiling together with ghc-9.6 and HLS is a
-      # little annoying, so currently fourmolu has been disabled.  We should
-      # try to enable this at some point in the future.
-      hlsWithFlags = disableCabalFlag "fourmolu" super.haskell-language-server;
-    in
-    hlsWithFlags.override {
-      hls-ormolu-plugin = null;
+  haskell-language-server = super.haskell-language-server.override {
       hls-floskell-plugin = null;
-      hls-fourmolu-plugin = null;
-      hls-hlint-plugin = null;
-      hls-stylish-haskell-plugin = null;
     };
 
+  fourmolu = super.fourmolu_0_13_1_0;
+  ormolu = super.ormolu_0_7_1_0;
+  stylish-haskell = super.stylish-haskell_0_14_5_0;
+
   # Newer version of servant required for GHC 9.6
   servant = self.servant_0_20;
   servant-server = self.servant-server_0_20;
@@ -216,6 +214,8 @@ self: super: {
    HUnit Diff data-default extra fail free ghc-paths ordered-containers silently syb
   ]) super.ghc-exactprint_1_7_0_1);
 
+  hlint = super.hlint_3_6_1;
+
   inherit (pkgs.lib.mapAttrs (_: doJailbreak ) super)
     hls-cabal-plugin
     algebraic-graphs
diff --git a/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml b/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
index c4783feb5362..acf19176b95e 100644
--- a/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
+++ b/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml
@@ -1,6515 +1,6161 @@
 broken-packages:
   # These packages don't compile.
-  - 2captcha
-  - 3d-graphics-examples
-  - 3dmodels
-  - AAI
-  - aasam
-  - abacate
-  - abcnotation
-  - abeson
-  - abides
-  - abnf
-  - AbortT-transformers
-  - abt
-  - AC-BuildPlatform
-  - accelerate
-  - accentuateus
-  - access-time
-  - accuerr
-  - AC-EasyRaster-GTK
-  - ace # test failure in job https://hydra.nixos.org/build/230967016 at 2023-08-16
-  - AC-HalfInteger
-  - achille
-  - acid-state-dist
-  - acid-state-tls
-  - ac-machine
-  - ACME
-  - acme-all-monad
-  - acme-comonad
-  - acme-dont
-  - acme-flipping-tables
-  - acme-hq9plus
-  - acme-http
-  - acme-inator
-  - acme-io
-  - acme-kitchen-sink
-  - acme-left-pad
-  - acme-memorandom
-  - acme-miscorder
-  - acme-mutable-package
-  - acme-now
-  - acme-numbersystem
-  - acme-operators
-  - acme-schoenfinkel
-  - acme-strfry
-  - acme-stringly-typed
-  - acme-this
-  - acme-zalgo
-  - acme-zero
-  - AC-MiniTest
-  - acousticbrainz-client
-  - AC-Terminal
-  - ActionKid
-  - activehs-base
-  - activitypub
-  - activitystreams-aeson
-  - AC-VanillaArray
-  - AC-Vector
-  - Adaptive
-  - Adaptive-Blaisorblade
-  - adaptive-containers
-  - adaptive-tuple
-  - adb
-  - addy
-  - adjunction
-  - adobe-swatch-exchange
-  - adp-multi
-  - adtrees
-  - AERN-Basics
-  - aeson-applicative
-  - aeson-bson
-  - aeson-commit # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230970158 at 2023-08-16
-  - aeson-compat # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230955731 at 2023-08-16
-  - aeson-decode
-  - aeson-default
-  - aeson-dependent-sum # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230951615 at 2023-08-16
-  - aeson-deriving
-  - aeson-diff-generic
-  - aeson-filthy
-  - aeson-flat
-  - aeson-flatten
-  - aeson-flowtyped
-  - aeson-gadt-th
-  - aeson-injector
-  - aeson-json-ast
-  - aeson-lens
-  - aeson-match-qq
-  - aeson-modern-tojson
-  - aeson-options
-  - aeson-parsec-picky
-  - aeson-prefix
-  - aeson-schema
-  - aeson-single-field # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230952090 at 2023-08-16
-  - aeson-smart
-  - aeson-streams
-  - aeson-t
-  - aeson-toolkit
-  - aeson-utils
-  - aeson-via # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230971255 at 2023-08-16
-  - aeson-with
-  - affection
-  - affine-invariant-ensemble-mcmc
-  - Agata
-  - Agda-executable
-  - agda-language-server
-  - agda-snippets
-  - agda-unused
-  - AGI
-  - ag-pictgen # failure in compileBuildDriverPhase in job https://hydra.nixos.org/build/225557198 at 2023-06-28
-  - AhoCorasick
-  - aig
-  - airbrake
-  - air-extra
-  - airship
-  - airtable-api
-  - air-th
-  - aivika-gpss
-  - ajhc
-  - AlanDeniseEricLauren
-  - alerta
-  - alerts # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230970661 at 2023-08-16
-  - alex-prelude
-  - alfred
-  - alfred-margaret
-  - alga
-  - algebra-dag
-  - algebraic-classes
-  - algebraic-prelude
-  - algorithmic-composition-additional
-  - algorithmic-composition-complex
-  - AlgorithmW
-  - algo-s
-  - align-affine # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230969907 at 2023-08-16
-  - align-text
-  - ally-invest
-  - alpaca-netcode
-  - alphachar
-  - alpino-tools
-  - alsa
-  - alsa-midi
-  - altcomposition
-  - alternative-extra
-  - alternative-io
-  - altfloat
-  - alure
-  - amazon-emailer
-  - amazonka-core
-  - amazonka-iam-policy
-  - amazon-products
-  - AMI
-  - amqp-conduit
-  - analyze
-  - analyze-client
-  - anansi-pandoc
-  - android
-  - android-activity
-  - android-lint-summary
-  - angel
-  - angle
-  - animalcase
-  - Animas
-  - animascii
-  - animate
-  - anki-tools
-  - annotated-fix
-  - anonymous-sums
-  - ansigraph
-  - ansi-pretty
-  - antfarm
-  - antigate
-  - antimirov
-  - antiquoter
-  - antisplice
-  - antlr-haskell
-  - anydbm
-  - Aoide
-  - aop-prelude
-  - aosd
-  - apache-md5
-  - apart
-  - apecs-physics # failure in compileBuildDriverPhase in job https://hydra.nixos.org/build/230961455 at 2023-08-16
-  - api-builder
-  - api-rpc-factom
-  - apns-http2
-  - appc
-  - appendful-persistent # failure building library in job https://hydra.nixos.org/build/230949704 at 2023-08-16
-  - app-lens
-  - AppleScript
-  - applicative-fail
-  - applicative-parsec
-  - applicative-quoters
-  - applicative-splice
-  - apply-unordered
-  - approveapi
-  - approx
-  - ApproxFun-hs
-  - arbb-vm
-  - arb-fft
-  - arbor-lru-cache
-  - arbor-monad-counter
-  - arbor-monad-logger
-  - arbor-monad-metric
-  - arbor-postgres
-  - arch-hs
-  - archiver
-  - archlinux
-  - archnews
-  - arena
-  - argo # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230957050 at 2023-08-16
-  - argon2
-  - argparser
-  - arguedit
-  - arion
-  - armada
-  - armor
-  - arpa
-  - arpack
-  - arrayfire
-  - array-list
-  - array-primops
-  - ArrayRef
-  - arrowapply-utils
-  - arrow-improve
-  - arrow-list
-  - arrowp
-  - arrowp-qq
-  - ArrowVHDL
-  - artery
-  - artifact
-  - asap
-  - ascii85-conduit
-  - ascii-caseless
-  - asciidiagram # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230955130 at 2023-08-16
-  - ascii-flatten
-  - ascii-string
-  - ascii-vector-avc
-  - asif
-  - asil # failure in compileBuildDriverPhase in job https://hydra.nixos.org/build/225556674 at 2023-06-28
-  - asn1-ber-syntax
-  - asn1-codec
-  - asn1-data
-  - AspectAG
-  - assert
-  - assert4hs
-  - assert4hs-core
-  - assertions
-  - asset-map
-  - assoc-list # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230968246 at 2023-08-16
-  - assoc-listlike # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230957051 at 2023-08-16
-  - assumpta
-  - ast-monad
-  - astrds
-  - astro #  failure  in job https://hydra.nixos.org/build/225575437 at 2023-06-28
-  - async-combinators
-  - async-dejafu
-  - asynchronous-exceptions
-  - async-manager
-  - async-timer
-  - aterm
-  - atlassian-connect-descriptor
-  - atndapi
-  - atom
-  - atomic-modify # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230969549 at 2023-08-16
-  - atomic-primops-vector
-  - atomo
-  - atp-haskell
-  - ats-format # failure building executable 'atsfmt' in job https://hydra.nixos.org/build/230948414 at 2023-08-16
-  - ats-pkg
-  - ats-setup
-  - ats-storable
-  - attempt
-  - attic-schedule
-  - AttoBencode
-  - atto-lisp
-  - attomail
-  - attoparsec-aeson # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230964825 at 2023-08-16
-  - attoparsec-csv
-  - attoparsec-text
-  - attoparsec-trans
-  - attoparsec-varword
-  - attosplit
-  - Attrac
-  - augeas
-  - augur
-  - aur
-  - aur-api
-  - Aurochs
-  - authenticate-ldap
-  - authinfo-hs
-  - auto
-  - autom
-  - autonix-deps
-  - autopack
-  - avatar-generator
-  - aviation-units
-  - avl-static
-  - avro-piper
-  - avr-shake
-  - avwx
-  - awesome-prelude
-  - awesomium-raw
-  - aws-cloudfront-signer
-  - aws-ec2
-  - aws-ec2-knownhosts
-  - aws-general
-  - aws-lambda-haskell-runtime
-  - aws-lambda-runtime
-  - aws-larpi
-  - aws-performance-tests
-  - aws-route53
-  - aws-sdk-text-converter
-  - axel
-  - azubi
-  - azure-acs
-  - azure-email
-  - azurify
-  - b9
-  - babl # wants pkg-config dependency `babl`, but pkgs.babl's pkg-config file is called babl-0.1.pc
-  - backprop
-  - backstop
-  - backtracking-exceptions
-  - backward-state
-  - bag
-  - Baggins
-  - bake
-  - Bang
-  - banwords
-  - barbies-th # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230949387 at 2023-08-16
-  - barchart
-  - barcodes-code128
-  - barecheck
-  - barrie
-  - barrier
-  - barrier-monad
-  - base16-lens
-  - base32-lens
-  - base58address
-  - base62
-  - base64-bytes # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230952298 at 2023-08-16
-  - base64-conduit
-  - base64-lens
-  - base-compat-migrate
-  - based # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967441 at 2023-08-16
-  - base-encoding
-  - base-feature-macros
-  - base-generics
-  - base-io-access
-  - basement-cd # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230963879 at 2023-08-16
-  - basen
-  - basex-client
-  - basic-sop
-  - baskell
-  - battlenet
-  - battleplace
-  - bazel-coverage-report-renderer
-  - BCMtools
-  - bdd
-  - bdelta
-  - bdo
-  - beam
-  - beamable
-  - beam-mysql
-  - beam-newtype-field
-  - bech32
-  - bed-and-breakfast
-  - Befunge93
-  - bench-graph # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230958515 at 2023-08-16
-  - BenchmarkHistory
-  - bench-show # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230951256 at 2023-08-16
-  - bencodex
-  - bencoding-lens
-  - berkeleydb
-  - BerkeleyDBXML
-  - berp
-  - bert
-  - besout
-  - bet
-  - betacode
-  - betris # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230971705 at 2023-08-16
-  - bgmax
-  - bgzf
-  - bibdb
-  - bidi-icu
-  - bidirectional
-  - bidirectional-instances
-  - bidispec
-  - bidispec-extras
-  - BiGUL
-  - billeksah-services
-  - binary-bits
-  - binary-communicator
-  - binary-derive
-  - binary-ext
-  - binary-indexed-tree
-  - binary-parsers
-  - binary-protocol
-  - binary-strict
-  - binary-tree
-  - binary-typed
-  - BinderAnn
-  - binding-core
-  - bindings-apr
-  - bindings-bfd
-  - bindings-cctools
-  - bindings-common
-  - bindings-dc1394
-  - bindings-eskit
-  - bindings-EsounD
-  - bindings-fann
-  - bindings-fluidsynth
-  - bindings-friso
-  - bindings-gsl
-  - bindings-hamlib
-  - bindings-hdf5
-  - bindings-K8055
-  - bindings-libftdi
-  - bindings-libg15
-  - bindings-libpci
-  - bindings-librrd
-  - bindings-libstemmer
-  - bindings-libusb
-  - bindings-libv4l2
-  - bindings-monetdb-mapi
-  - bindings-mpdecimal
-  - bindings-sc3
-  - bindings-sipc
-  - bindings-wlc
-  - bind-marshal
-  - binembed
-  - binrep # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/231689637 at 2023-08-16
-  - binsm
-  - bio
-  - BiobaseNewick
-  - biocore
-  - biohazard
-  - bio-sequence
-  - birds-of-paradise
-  - biscuit-haskell
-  - bisect-binary
-  - bishbosh
-  - bitcoind-rpc # dependency missing in job https://hydra.nixos.org/build/217579845 at 2023-04-29
-  - bitcoin-hs
-  - bitcoin-keys
-  - bitcoin-rpc
-  - bitcoin-script
-  - bitfield # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967290 at 2023-08-16
-  - bits-atomic
-  - bits-conduit
-  - bitset
-  - bits-extras
-  - bitspeak
-  - bit-stream
-  - bitstream
-  - BitStringRandomMonad
-  - BitSyntax
-  - bitx-bitcoin
-  - bizzlelude # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230953184 at 2023-08-16
-  - bizzlelude-js
-  - bkr
-  - blagda
-  - blakesum
-  - blas
-  - blaze-html-hexpat
-  - blaze-html-truncate
-  - blaze-json
-  - blaze-shields
-  - blazeT
-  - blaze-textual-native
-  - blindpass
-  - bliplib
-  - blockchain
-  - blockhash
-  - Blogdown
-  - BlogLiterately
-  - bloomfilter-redis
-  - blosum
-  - blubber-server
-  - bludigon
-  - Blueprint
-  - bluetileutils
-  - blunk-hask-tests
-  - bogocopy
-  - bolt
-  - boltzmann-brain
-  - bookhound
-  - bookkeeping # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230958716 at 2023-08-16
-  - boolean-like
-  - boolean-normal-forms
-  - boolexpr
-  - boombox
-  - boring-window-switcher
-  - borsh
-  - bot
-  - botpp
-  - bottom
-  - bounded-array # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230957201 at 2023-08-16
-  - bound-simple # failure building library in job https://hydra.nixos.org/build/230950474 at 2023-08-16
-  - box
-  - box-tuples # failure building library in job https://hydra.nixos.org/build/230956723 at 2023-08-16
-  - bpath
-  - BPS
-  - braid
-  - brain-bleep
-  - brassica
-  - Bravo
-  - brians-brain
-  - brick-dropdownmenu
-  - brick-filetree
-  - brick-list-search #  failure  in job https://hydra.nixos.org/build/211236614 at 2023-03-13
-  - brick-list-skip #  failure  in job https://hydra.nixos.org/build/215850872 at 2023-04-17
-  - brick-panes # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230961711 at 2023-08-16
-  - bricks-internal
-  - brick-tabular-list
-  - brillig
-  - brittany
-  - broadcast-chan-tests
-  - broccoli
-  - brok
-  - broker-haskell
-  - bronyradiogermany-common
-  - brotli-conduit
-  - browscap
-  - bsd-sysctl
-  - bson-generic
-  - bson-generics
-  - bson-mapping
-  - bsparse
-  - btree-concurrent # dependency missing in job https://hydra.nixos.org/build/211250233 at 2023-03-13
-  - btrfs
-  - buffer
-  - buffer-builder-aeson
-  - BufferedSocket
-  - buffet
-  - buffon
-  - buffon-machines
-  - bugzilla
-  - build
-  - buildable
-  - buildbox
-  - builder
-  - bullet
-  - bumper
-  - bunz
-  - burst-detection
-  - bus-pirate
-  - buster
-  - Buster
-  - butter
-  - buttplug-hs-core
-  - bv-little
-  - byline
-  - by-other-names
-  - bytearray-parsing
-  - bytestring-aeson-orphans
-  - bytestring-arbitrary
-  - bytestring-class
-  - bytestring-conversion # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230970130 at 2023-08-16
-  - bytestring-csv
-  - bytestring-delta
-  - bytestring-handle
-  - bytestringparser
-  - bytestringparser-temporary
-  - bytestring-plain
-  - bytestringreadp
-  - bytestring-rematch
-  - bytestring-show
-  - bytestring-substring
-  - bytestring-time
-  - bytestring-typenats
-  - bzlib
-  - bzlib-conduit-jappie
-  - c10k
-  - c2ats
-  - cab
-  - cabal2doap
-  - cabal2ebuild
-  - cabal2ghci
-  - cabal2json # dependency missing in job https://hydra.nixos.org/build/225572535 at 2023-06-28
-  - cabal-audit
-  - cabal-auto-expose
-  - cabal-bundle-clib
-  - cabal-constraints
-  - cabal-db
-  - cabal-debian # failure building library in job https://hydra.nixos.org/build/230959173 at 2023-08-16
-  - cabal-dependency-licenses
-  - cabal-dev
-  - cabal-dir
-  - cabal-edit
-  - cabal-file-th
-  - cabal-ghc-dynflags
-  - cabal-ghci
-  - cabalgraph
-  - cabal-graphdeps
-  - cabal-helper
-  - cabal-hoogle # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230965454 at 2023-08-16
-  - Cabal-ide-backend
-  - cabal-info
-  - cabal-install-bundle
-  - cabal-install-ghc72
-  - cabal-install-ghc74
-  - cabalish
-  - cabal-lenses
-  - cabal-meta
-  - cabal-mon
-  - cabal-nirvana
-  - cabal-plan-bounds
-  - cabal-plan # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230949515 at 2023-08-16
-  - cabal-progdeps
-  - cabalQuery
-  - CabalSearch
-  - cabal-setup
-  - cabal-sort
-  - cabal-src
-  - cabal-test-quickcheck
-  - cabal-toolkit
-  - cabal-upload
-  - cabalvchk
-  - cabin
-  - cabocha
-  - cached
-  - cache-polysemy
-  - caching
-  - cacophony
-  - cafeteria-prelude
-  - cairo-core
-  - cake3
-  - cal3d
-  - caledon
-  - calenderweek
-  - call-alloy
-  - cal-layout
-  - call-haskell-from-anything
-  - call-plantuml
-  - canon
-  - canonical-filepath
-  - canteven-listen-http
-  - canteven-log
-  - canteven-parsedate
-  - cantor
-  - capataz
-  - ca-patterns # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230959692 at 2023-08-16
-  - capped-list
-  - capri
-  - caps
-  - caramia
-  - carbonara
-  - carettah
-  - CarneadesDSL
-  - carte
-  - Cartesian
-  - casa-abbreviations-and-acronyms
-  - casadi-bindings-internal
-  - Cascade
-  - cascading
-  - case-insensitive-match # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230953665 at 2023-08-16
-  - caseof
-  - cas-hashable
-  - casr-logbook
-  - casr-logbook-types
-  - cassandra-cql
-  - Cassava
-  - cassava-conduit
-  - cassava-records
-  - cassava-streams # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230968263 at 2023-08-16
-  - cassette
-  - castagnoli #  failure  in job https://hydra.nixos.org/build/219826672 at 2023-05-19
-  - castle
-  - catamorphism
-  - Catana
-  - catch-fd
-  - category-printf
-  - category-traced
-  - catnplus
-  - cautious-file
-  - cautious-gen
-  - cayene-lpp
-  - cayley-client
-  - cblrepo
-  - cbor-tool # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947427 at 2023-08-16
-  - CCA
-  - ccast
-  - CC-delcont-cxe
-  - CC-delcont-exc
-  - CC-delcont-ref
-  - CC-delcont-ref-tf
-  - cci
-  - ccnx
-  - cdp
-  - c-dsl
-  - cedict
-  - cef
-  - cef3-raw
-  - cellrenderer-cairo
-  - cereal-derive
-  - cereal-ieee754
-  - cereal-plus
-  - cf
-  - cfenv
-  - cfn-flip
-  - cg
-  - cgen
-  - cgi
-  - cgroup-rts-threads
-  - chakra
-  - chalkboard
-  - chalmers-lava2000
-  - changelogged # failure building library in job https://hydra.nixos.org/build/230967974 at 2023-08-16
-  - ChannelT
-  - character-cases
-  - charter
-  - chart-histogram
-  - Chart-simple
-  - chaselev-deque
-  - chatty-text
-  - chatwork
-  - cheapskate # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230951147 at 2023-08-16
-  - check-cfg-ambiguity #  failure  in job https://hydra.nixos.org/build/225575902 at 2023-06-28
-  - checked
-  - Checked
-  - checkmate
-  - chez-grater
-  - chiphunk
-  - Chitra
-  - choose
-  - chorale
-  - chp
-  - ChristmasTree
-  - chronograph
-  - chr-parse
-  - chunky
-  - church
-  - church-maybe
-  - churros # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230954366 at 2023-08-16
-  - cicero-api # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967916 at 2023-08-16
-  - cielo
-  - cil
-  - cimple # failure building library in job https://hydra.nixos.org/build/230963662 at 2023-08-16
-  - cinvoke
-  - c-io
-  - cio
-  - cipher-aes128
-  - cipher-blowfish
-  - cipher-des
-  - circle
-  - circlehs
-  - circular-enum # dependency missing in job https://hydra.nixos.org/build/225566485 at 2023-06-28
-  - citeproc-hs
-  - cjk
-  - cj-token
-  - cl3-hmatrix-interface
-  - cl3-linear-interface
-  - clang-compilation-database
-  - clang-pure
-  - clanki
-  - clarifai
-  - CLASE
-  - clash-prelude # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967667 at 2023-08-16
-  - Clash-Royale-Hack-Cheats
-  - ClassLaws
-  - classy-influxdb-simple
-  - classy-parallel
-  - classyplate
-  - ClassyPrelude
-  - clckwrks-plugin-bugs
-  - clckwrks-plugin-mailinglist
-  - clckwrks-theme-clckwrks
-  - clckwrks-theme-geo-bootstrap
-  - cld2
-  - Clean
-  - clean-unions
-  - cleff # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230963671 at 2023-08-16
-  - clerk # failure building library in job https://hydra.nixos.org/build/214864491 at 2023-04-07
-  - clevercss
-  - clexer
-  - CLI
-  - cli-builder
-  - cli-extras # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230949753 at 2023-08-16
-  - clif
-  - clifm
-  - cli-git
-  - clingo
-  - cli-nix
-  - clippard
-  - clipper
-  - clisparkline
-  - clit
-  - cloben # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230955543 at 2023-08-16
-  - clocked
-  - clock-extras
-  - clogparse
-  - clone-all
-  - closed-classes # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230969665 at 2023-08-16
-  - closed-intervals # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230959515 at 2023-08-16
-  - closure
-  - cloudfront-signer
-  - clplug #  failure  in job https://hydra.nixos.org/build/211239834 at 2023-03-13
-  - clr-host # failure building library in job https://hydra.nixos.org/build/230958504 at 2023-08-16
-  - clr-inline
-  - clr-typed
-  - cluss
-  - clustering
-  - cmark-highlight
-  - cmark-patterns
-  - cmark-sections
-  - cmath
-  - cmd-item
-  - cmdlib
-  - cmdtheline
-  - cmf
-  - cmonad
-  - c-mosquitto
-  - cmph
-  - CMQ
-  - cmt
-  - coalpit
-  - cobot-tools
-  - code-builder
-  - codec-beam
-  - codecov-haskell
-  - codeforces-cli
-  - codepad
-  - codex
-  - codo-notation
-  - coercible-utils
-  - coin
-  - coinbase-pro
-  - colchis
-  - collada-output
-  - collapse-util
-  - collate
-  - collections
-  - collections-api
-  - co-log-concurrent
-  - co-log-json
-  - co-log-sys
-  - colonnade
-  - colorless
-  - coltrane
-  - com
-  - comark-syntax
-  - combinat-compat
-  - combinat-diagrams
-  - combinat # failure building library in job https://hydra.nixos.org/build/230947031 at 2023-08-16
-  - combinatorial-problems
-  - combinator-interactive
-  - combobuffer
-  - comic
-  - Command
-  - commander
-  - commander-cli
-  - Commando
-  - commodities
-  - compact
-  - Compactable
-  - compactable # dependency missing in job https://hydra.nixos.org/build/225560369 at 2023-06-28
-  - compact-list
-  - compact-map
-  - compact-sequences
-  - compact-string
-  - compact-string-fix
-  - comparse
-  - compdata
-  - compendium-client
-  - competition
-  - compilation
-  - complex-generic
-  - composable-associations-aeson
-  - compose-trans
-  - composite-aeson-path
-  - composite-aeson-refined
-  - composite-base # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230966274 at 2023-08-16
-  - composite-cassava
-  - composition-tree
-  - compressed
-  - compression
-  - computational-geometry
-  - computations
-  - ConClusion # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230952663 at 2023-08-16
-  - concrete-relaxng-parser
-  - concrete-typerep
-  - concurrency-benchmarks
-  - concurrent-buffer
-  - Concurrent-Cache
-  - Concurrential
-  - concurrent-st
-  - concurrent-state
-  - concurrent-supply
-  - concurrent-utilities
-  - conditional-restriction-parser
-  - condorcet
-  - conductive-base
-  - conduit-audio-lame
-  - conduit-audio-samplerate
-  - conduit-connection
-  - conduit-find
-  - conduit-iconv
-  - conduit-network-stream
-  - conduit-resumablesink
-  - conduit-tokenize-attoparsec
-  - conduit-vfs
-  - conf
-  - conferer-dhall
-  - conferer # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230960587 at 2023-08-16
-  - conferer-hspec
-  - conferer-provider-json
-  - conferer-snap
-  - conferer-source-json
-  - confide
-  - ConfigFileTH
-  - config-parser
-  - Configurable
-  - configuration
-  - configurator-pg # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230962366 at 2023-08-16
-  - config-value-getopt
-  - confsolve
-  - congruence-relation
-  - conjure
-  - conkin
-  - conlogger
-  - connection-pool # failure building library in job https://hydra.nixos.org/build/230958887 at 2023-08-16
-  - connections
-  - connection-string
-  - Conscript
-  - consistent
-  - console-program
-  - constable
-  - const # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230972319 at 2023-08-16
-  - const-math-ghc-plugin
-  - constrained
-  - constrained-categories
-  - constrained-dynamic
-  - constrained-monads
-  - ConstraintKinds
-  - constraints-deriving
-  - constraints-emerge
-  - constr-eq
-  - construct # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230959867 at 2023-08-16
-  - constructive-algebra
-  - consul-haskell
-  - Consumer
-  - containers-benchmark
-  - containers-unicode-symbols
-  - containers-verified
-  - ContArrow
-  - ContextAlgebra
-  - context-stack
-  - contiguous-checked
-  - contiguous-fft
-  - continue
-  - continued-fractions #  failure  in job https://hydra.nixos.org/build/225575101 at 2023-06-28
-  - contracheck-applicative
-  - Contract
-  - contra-tracers
-  - control-dsl
-  - control-iso
-  - control-monad-failure
-  - control-monad-failure-mtl
-  - Control-Monad-ST2
-  - contstuff-monads-tf
-  - contstuff-transformers
-  - convert-annotation
-  - copilot-c99 # test failure in job https://hydra.nixos.org/build/230951365 at 2023-08-16
-  - copr
-  - coquina
-  - COrdering
-  - core
-  - corebot-bliki
-  - core-compiler
-  - CoreDump
-  - CoreErlang
-  - core-haskell
-  - corenlp-parser
-  - core-warn
-  - Coroutine
-  - coroutine-object
-  - CouchDB
-  - couchdb-conduit
-  - couch-hs
-  - counter
-  - country-codes # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230969077 at 2023-08-16
-  - courier
-  - court
-  - coverage
-  - cparsing
-  - cpio-conduit
-  - cplusplus-th
-  - cpuid
-  - cpuperf
-  - cpython
-  - cql-io
-  - cqrs-core
-  - cr
-  - crack
-  - Craft3e
-  - craftwerk
-  - crawlchain
-  - crc16
-  - crc32c
-  - crdt
-  - crdt-event-fold
-  - creatur # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230950704 at 2023-08-16
-  - credential-store
-  - crem # test failure in job https://hydra.nixos.org/build/214604824 at 2023-04-07
-  - critbit
-  - criterion-cmp
-  - criterion-compare
-  - criterion-plus
-  - criterion-to-html
-  - criu-rpc-types
-  - crjdt-haskell
-  - crockford # failure in compileBuildDriverPhase in job https://hydra.nixos.org/build/230965833 at 2023-08-16
-  - crocodile
-  - cronus
-  - cruncher-types
-  - crunghc
-  - crypto-cipher-benchmarks
-  - cryptocompare
-  - cryptoconditions
-  - cryptoids-types
-  - crypto-keys-ssh
-  - crypto-multihash
-  - crypton-connection # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230956968 at 2023-08-16
-  - crypto-numbers
-  - crypto-pubkey-openssh
-  - crypto-random-effect
-  - crypto-simple
-  - cryptsy-api
-  - csa
-  - cse-ghc-plugin
-  - csg
-  - csound-expression-dynamic
-  - CSPM-Frontend
-  - cspretty
-  - css
-  - css-easings
-  - css-selectors
-  - css-simple # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230951038 at 2023-08-16
-  - C-structs
-  - csv-nptools
-  - csv-sip
-  - ctemplate
-  - ctkl
-  - cuboid
-  - cuckoo-filter
-  - cuckoo # test failure in job https://hydra.nixos.org/build/225558690 at 2023-06-28
-  - curl-aeson
-  - curl-runnings
-  - curly-expander
-  - currencies # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230946919 at 2023-08-16
-  - currency-convert
-  - curry-base
-  - CurryDB
-  - curryer-rpc # dependency missing in job https://hydra.nixos.org/build/214772339 at 2023-04-07
-  - curry-frontend
-  - curryrs
-  - cursedcsv # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967021 at 2023-08-16
-  - curves
-  - custom-prelude
-  - cut-the-crap
-  - CV
-  - d3js
-  - dag
-  - DAG-Tournament
-  - dahdit
-  - damnpacket
-  - danibot
-  - dao
-  - Dao
-  - darcs2dot
-  - darcs-buildpackage
-  - darcs-cabalized
-  - darcs-graph
-  - darcs-monitor
-  - darkplaces-rcon
-  - darkplaces-text
-  - data-accessor-monadLib
-  - data-accessor-monads-fd
-  - data-accessor-monads-tf
-  - data-accessor-template
-  - data-ascii
-  - data-aviary
-  - data-base
-  - database-migrate
-  - database-study
-  - data-check
-  - data-combinator-gen
-  - data-concurrent-queue
-  - data-construction
-  - data-constructors
-  - data-default-instances-new-base
-  - data-default-instances-text # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230949390 at 2023-08-16
-  - data-dispersal
-  - data-diverse
-  - datadog
-  - data-easy
-  - data-embed
-  - data-emoticons
-  - data-filepath
-  - data-filter # failure building library in job https://hydra.nixos.org/build/230970830 at 2023-08-16
-  - data-fin
-  - data-fin-simple
-  - data-flagset
-  - data-forced # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230946495 at 2023-08-16
-  - data-index
-  - DataIndex
-  - data-ivar
-  - data-kiln
-  - data-lens-fd
-  - data-lens-ixset
-  - data-lens-template
-  - datalog
-  - data-map-multikey
-  - data-named
-  - data-nat
-  - data-object
-  - datapacker
-  - data-pdf-fieldreader
-  - data-pprint # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230972007 at 2023-08-16
-  - data-quotientref
-  - data-reify-cse
-  - data-repr
-  - data-rev
-  - datarobot
-  - data-rope
-  - Data-Rope
-  - data-r-tree
-  - data-size
-  - data-spacepart
-  - data-standards
-  - data-store
-  - data-stringmap
-  - DataTreeView
-  - data-type
-  - data-util
-  - data-validation
-  - data-variant
-  - data-vector-growable # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230964148 at 2023-08-16
-  - dates
-  - datetime
-  - datetime-sb
-  - dawdle
-  - dawg
-  - dawg-ord # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230969059 at 2023-08-16
-  - daytripper #  failure  in job https://hydra.nixos.org/build/225578117 at 2023-06-28
-  - dbcleaner
-  - dbf
-  - DBlimited
-  - dbm
-  - dbmigrations
-  - dbmonitor
-  - d-bus
-  - DBus
-  - dbus-core
-  - dbus-qq
-  - dclabel
-  - dclabel-eci11
-  - dcpu16
-  - ddc-base
-  - ddc-code
-  - dead-code-detection
-  - Deadpan-DDP
-  - dead-simple-json
-  - dear-imgui # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230968725 at 2023-08-16
-  - debugger-hs # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230968226 at 2023-08-16
-  - debug-me
-  - debug-trace-file # test failure in job https://hydra.nixos.org/build/230951658 at 2023-08-16
-  - debug-tracy
-  - decepticons
-  - decision-diagrams
-  - DecisionTree
-  - decoder-conduit
-  - deepcontrol
-  - DeepDarkFantasy
-  - deepl
-  - deepseq-bounded
-  - deepseq-instances
-  - deepseq-magic
-  - deepseq-th
-  - definitive-base
-  - deiko-config # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230964942 at 2023-08-16
-  - deka
-  - Delta-Lambda
-  - delude
-  - demarcate
-  - denominate
-  - dense
-  - dense-int-set
-  - dependent-hashmap
-  - dependent-monoidal-map # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230972604 at 2023-08-16
-  - dep-t-dynamic
-  - dep-t # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230956455 at 2023-08-16
-  - deptrack-core
-  - dep-t-value
-  - derangement
-  - derivation-trees
-  - derive
-  - derive-enumerable
-  - derive-gadt
-  - deriveJsonNoPrefix
-  - derive-lifted-instances
-  - derive-monoid
-  - derive-trie
-  - deriving-openapi3
-  - deriving-trans
-  - derp-lib
-  - describe
-  - descriptive
-  - desktop-portal # test failure in job https://hydra.nixos.org/build/217585702 at 2023-04-29
-  - deterministic-game-engine
-  - detrospector
-  - deunicode
-  - devil
-  - df1-html
-  - Dflow
-  - dfsbuild
-  - dgim
-  - dgs
-  - dhall-check
-  - dhall-csv
-  - dhall-fly
-  - dhall-lsp-server # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230971652 at 2023-08-16
-  - dhall-text
-  - dhall-to-cabal
-  - dhcp-lease-parser
-  - dhrun
-  - dia-base
-  - diagnose # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230962878 at 2023-08-16
-  - diagrams-boolean
-  - diagrams-builder
-  - diagrams-pdf
-  - diagrams-qrcode
-  - diagrams-rubiks-cube
-  - diagrams-tikz
-  - dialogflow-fulfillment
-  - dialogue
-  - dib
-  - dice2tex
-  - dicom
-  - dictionaries
-  - dictparser
-  - diet
-  - diffcabal
-  - differential
-  - DifferentialEvolution
-  - diff-gestalt
-  - diffmap
-  - difftodo
-  - digestive-bootstrap
-  - digestive-foundation-lucid
-  - digestive-functors-aeson
-  - digestive-functors-happstack
-  - digestive-functors-heist # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230948900 at 2023-08-16
-  - digestive-functors-lucid # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230969836 at 2023-08-16
-  - digestive-functors-snap
-  - digest-pure
-  - DigitalOcean
-  - digitalocean-kzs
-  - digraph
-  - dijkstra-simple
-  - DimensionalHash
-  - diophantine
-  - diplomacy
-  - direct-binary-files
-  - directed-cubical
-  - direct-fastcgi
-  - direct-http
-  - directory-ospath-streaming # dependency missing in job https://hydra.nixos.org/build/219209527 at 2023-05-10
-  - direct-plugins
-  - direm
-  - disco # failure building library in job https://hydra.nixos.org/build/219207076 at 2023-05-10
-  - discord-haskell # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230971973 at 2023-08-16
-  - discordian-calendar
-  - discord-register
-  - discord-types
-  - discrete
-  - DiscussionSupportSystem
-  - Dish
-  - disjoint-containers
-  - disjoint-set
-  - disjoint-set-stateful
-  - diskhash
-  - Dist
-  - distance
-  - distributed-closure
-  - distribution
-  - dist-upload
-  - ditto-lucid # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947345 at 2023-08-16
-  - djembe
-  - djinn-ghc
-  - djinn-th
-  - dmcc
-  - dmenu
-  - dnscache
-  - dns-patterns # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230959482 at 2023-08-16
-  - dnsrbl
-  - dnssd
-  - dobutok
-  - dobutokO
-  - doccheck
-  - docidx
-  - docker-build-cacher
-  - dockercook
-  - docker # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230961470 at 2023-08-16
-  - dockerfile-creator
-  - docopt
-  - docrecords
-  - doctest-discover-configurator
-  - doctest-prop
-  - docusign-example
-  - docvim
-  - DOH
-  - doi
-  - domaindriven-core # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230948092 at 2023-08-16
-  - domain-optics
-  - dom-events # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230958378 at 2023-08-16
-  - dom-parser
-  - domplate
-  - dom-selector
-  - do-notation-dsl
-  - dormouse-uri
-  - do-spaces
-  - dotfs
-  - dot-linker
-  - dotparse
-  - doublezip
-  - doublify-toolkit
-  - downloader
-  - dozenal
-  - dozens
-  - dph-base
-  - dpkg
-  - DPM
-  - dpor
-  - dragen
-  - drawille
-  - dr-cabal
-  - drClickOn
-  - dresdner-verkehrsbetriebe
-  - DrIFT
-  - DrIFT-cabalized
-  - drifter-postgresql
-  - drmaa
-  - drone
-  - dropbox
-  - dsc
-  - ds-kanren
-  - dsmc
-  - dson
-  - dson-parsec
-  - dstring
-  - dsv # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230953340 at 2023-08-16
-  - DTC
-  - dtd-text
-  - dtw
-  - dual-game # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230959616 at 2023-08-16
-  - dualizer
-  - duckling
-  - duet
-  - dumb-cas
-  - dump-core
-  - dunai-core
-  - Dung
-  - duplo
-  - dura
-  - duration
-  - dvault
-  - dvdread
-  - dvi-processing
-  - dwarf
-  - dwarfadt
-  - dyckword
-  - dyna-brick
-  - dynamic-graphs
-  - dynamic-mvector
-  - dynamic-object
-  - dynamic-pipeline
-  - DynamicTimeWarp
-  - dyna-processing
-  - dynloader
-  - DysFRP
-  - dywapitchtrack
-  - dzen-dhall
-  - dzen-utils
-  - each
-  - eager-sockets
-  - earclipper
-  - earcut
-  - early
-  - easy-api
-  - easy-args
-  - easy-bitcoin
-  - easyjson
-  - easyplot
-  - easytest
-  - ebeats
-  - ebnf-bff
-  - eccrypto
-  - ecma262
-  - ecta-plugin
-  - ecu
-  - eddie
-  - ede
-  - edenmodules
-  - edf # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230965074 at 2023-08-16
-  - edis
-  - edit
-  - edit-lenses
-  - editline
-  - effectful-st
-  - effect-handlers
-  - effective-aspects
-  - effect-stack
-  - effet
-  - effin
-  - eflint
-  - egison-pattern-src
-  - ehaskell
-  - ehs
-  - eibd-client-simple
-  - eigen
-  - Eight-Ball-Pool-Hack-Cheats
-  - eio
-  - EitherT
-  - either-unwrap
-  - ejdb2-binding
-  - ekg-bosun
-  - ekg-elastic
-  - ekg-elasticsearch
-  - ekg-json
-  - ekg-log
-  - ekg-push
-  - ekg-rrd
-  - ekg-statsd
-  - elevator
-  - eliminators
-  - elision
-  - elm-export-persistent
-  - elm-street
-  - elm-websocket
-  - elocrypt
-  - ema-generics # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230957258 at 2023-08-16
-  - emailaddress
-  - email-header
-  - email-postmark
-  - embed-config
-  - embla
-  - emgm
-  - Emping
-  - Empty
-  - empty-monad
-  - enchant
-  - encode-string
-  - encoding
-  - encoding-io
-  - encryptable
-  - endo
-  - engine-io
-  - entwine
-  - EnumContainers
-  - enumerator
-  - EnumMap
-  - enummapmap
-  - enummaps
-  - enummapset-th
-  - enum-subset-generate
-  - enum-text
-  - enum-utf8
-  - envelope
-  - env-extra # test failure in job https://hydra.nixos.org/build/230961939 at 2023-08-16
-  - env-parser
-  - envstatus
-  - envy-extensible # failure building library in job https://hydra.nixos.org/build/230971634 at 2023-08-16
-  - epanet-haskell
-  - epass
-  - epic
-  - epi-sim
-  - epoll
-  - epubname
-  - Eq
-  - EqualitySolver
-  - equational-reasoning-induction
-  - equeue
-  - erd
-  - erlang
-  - erlang-ffi
-  - eros
-  - error-context
-  - error-continuations
-  - error-list
-  - error-loc
-  - error-util
-  - ersaconcat
-  - ersatz
-  - ert
-  - escape-artist
-  - escoger
-  - esqueleto-pgcrypto
-  - ess
-  - essence-of-live-coding
-  - EstProgress
-  - Etage
-  - etc
-  - etcd
-  - ethereum-rlp
-  - eurofxref
-  - evdev-streamly
-  - eve-cli
-  - eved
-  - event
-  - event-driven
-  - eventsource-api
-  - eventsourced
-  - eventstore
-  - evoke # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230955694 at 2023-08-16
-  - ewe # failure building executable 'ewe' in job https://hydra.nixos.org/build/225555839 at 2023-06-28
-  - exact-cover
-  - exact-real-positional
-  - except-exceptions
-  - exceptional
-  - exceptionfree-readfile
-  - exception-monads-fd
-  - exception-via
-  - exchangerates
-  - execs
-  - executor
-  - exh
-  - exhaustive
-  - exherbo-cabal
-  - exif
-  - exigo-schema
-  - exinst
-  - exists
-  - exitcode
-  - exon # dependency missing in job https://hydra.nixos.org/build/210848638 at 2023-02-28
-  - exp-cache
-  - exp-extended
-  - explain
-  - explicit-constraint-lens
-  - explicit-determinant
-  - explicit-iomodes
-  - exploring-interpreters # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967612 at 2023-08-16
-  - exposed-containers
-  - expression-parser
-  - expressions
-  - expresso
-  - extcore
-  - extended-categories
-  - extended-containers
-  - extensible-data
-  - extensible-effects-concurrent
-  - extensible-skeleton
-  - extensioneer # failure building executable 'extensioneer' in job https://hydra.nixos.org/build/230953750 at 2023-08-16
-  - external-sort
-  - extism
-  - extractelf
-  - extralife # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230950860 at 2023-08-16
-  - ez3
-  - ez-couch
-  - Facebook-Password-Hacker-Online-Latest-Version
-  - faceted
-  - factory # test failure in job https://hydra.nixos.org/build/214600338 at 2023-04-07
-  - facts
-  - Facts # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230949709 at 2023-08-16
-  - fadno-braids
-  - fadno-xml
-  - failable-list
-  - failure-detector
-  - fake
-  - fake-type
-  - faktory
-  - f-algebra-gen
-  - falling-turnip
-  - fastbayes
-  - fast-combinatorics
-  - fast-downward
-  - fastedit
-  - fastly
-  - fast-nats
-  - fastparser # failure building library in job https://hydra.nixos.org/build/211240748 at 2023-03-13
-  - fastpbkdf2
-  - FastPush
-  - fast-tagsoup-utf8-only
-  - FastxPipe
-  - fathead-util
-  - fay
-  - fbmessenger-api
-  - fb-persistent
-  - fca
-  - fcache
-  - fcf-composite
-  - fcf-graphs
-  - fcg
-  - fclabels-monadlib
-  - fcm-client
-  - fdo-trash
-  - feather
-  - feature-flipper
-  - fedora-packages
-  - feed-cli
-  - feed-collect
-  - feed-crawl
-  - fei-cocoapi
-  - feldspar-language
-  - fenfire
-  - fernet
-  - FerryCore
-  - festival
-  - Feval
-  - fez-conf
-  - ffeed
-  - ffmpeg-light # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230963762 at 2023-08-16
-  - ffunctor
-  - fgl-extras-decompositions
-  - fib
-  - fibon
-  - fields
-  - fieldwise
-  - fig
-  - filecache # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230961614 at 2023-08-16
-  - file-collection
-  - file-command-qq
-  - filediff
-  - file-embed-poly
-  - file-io
-  - file-location
-  - FileManip
-  - FileManipCompat
-  - fileneglect
-  - Files
-  - FileSystem
-  - filesystem-conduit
-  - filesystem-trees
-  - file-templates
-  - fillit
-  - final-pretty-printer
-  - Finance-Quote-Yahoo
-  - find-conduit
-  - find-source-files
-  - fingertree-psqueue
-  - fingertree-tf
-  - finite
-  - FiniteCategories
-  - finite-fields
-  - firefly-example
-  - first-and-last
-  - first-class-instances
-  - FirstPrelude # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230952406 at 2023-08-16
-  - fit
-  - fitsio
-  - fits-parse
-  - fixed-point
-  - fixedprec
-  - fixed-precision
-  - fixed-storable-array
-  - fixed-timestep
-  - fixed-vector-hetero # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230959989 at 2023-08-16
-  - fixed-width
-  - fixer
-  - fixfile
-  - fixie
-  - fix-imports # dependency missing in job https://hydra.nixos.org/build/215306368 at 2023-04-11
-  - fix-symbols-gitit
-  - fizzbuzz
-  - fizzbuzz-as-a-service
-  - flaccuraterip
-  - flamethrower
-  - flamingra
-  - flat-maybe
-  - flat-mcmc # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230951840 at 2023-08-16
-  - flay
-  - flexible-time
-  - flickr
-  - flink-statefulfun
-  - float-binstring
-  - floating-bits
-  - flock
-  - flowdock
-  - flowdock-api
-  - flowdock-rest
-  - flow-er
-  - flowlocks-framework
-  - flp
-  - fltkhs
-  - fluffy-parser
-  - fluid-idl
-  - fluidsynth
-  - flux-monoid
-  - fmark
-  - FModExRaw
-  - fn-extra
-  - fold-debounce-conduit # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230972387 at 2023-08-16
-  - foldl-incremental
-  - foldl-statistics
-  - foldl-transduce # test failure in job https://hydra.nixos.org/build/230962135 at 2023-08-16
-  - folds-common
-  - follow
-  - fontconfig-pure # test failure in job https://hydra.nixos.org/build/230970811 at 2023-08-16
-  - font-opengl-basic4x6
-  - forbidden-fruit
-  - fordo
-  - forecast-io
-  - foreign
-  - foreign-var
-  - forest
-  - forest-fire
-  - forex2ledger
-  - for-free
-  - forger
-  - ForkableT
-  - forma # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967499 at 2023-08-16
-  - formal
-  - formattable
-  - forml
-  - formura
-  - Fortnite-Hack-Cheats-Free-V-Bucks-Generator
-  - fortran-src-extras
-  - fortytwo # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230950284 at 2023-08-16
-  - foscam-filename
-  - fpe
-  - fp-ieee # test failure in job https://hydra.nixos.org/build/225561952 at 2023-06-28
-  - FPretty
-  - fptest
-  - fquery
-  - Fractaler
-  - fractals
-  - fraction
-  - frag
-  - franchise
-  - fraxl
-  - freddy
-  - free-concurrent
-  - f-ree-hack-cheats-free-v-bucks-generator
-  - free-http
-  - freenect # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230969157 at 2023-08-16
-  - free-operational
-  - freer-effects
-  - freer-simple-catching
-  - freer-simple # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230959714 at 2023-08-16
-  - freer-simple-http
-  - freer-simple-profiling
-  - freer-simple-random
-  - freer-simple-time
-  - freesect
-  - freesound
-  - free-theorems
-  - FreeTypeGL
-  - freetype-simple
-  - free-v-bucks-generator-no-survey
-  - free-v-bucks-generator-ps4-no-survey
-  - freq
-  - fresh
-  - fresnel
-  - friday-devil
-  - friday-scale-dct
-  - friday # test failure in job https://hydra.nixos.org/build/225561573 at 2023-06-28
-  - friendly # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230966475 at 2023-08-16
-  - frown
-  - frp-arduino
-  - frpnow
-  - fs-events
-  - fsh-csv
-  - fsmActions
-  - FSM # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230963381 at 2023-08-16
-  - fsnotify-conduit # failure building library in job https://hydra.nixos.org/build/230972081 at 2023-08-16
-  - fst
-  - fsutils
-  - fswait
-  - fswatch
-  - fswatcher # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230959599 at 2023-08-16
-  - ft-generator
-  - FTGL-bytestring
-  - ftp-client
-  - ftp-conduit
-  - ftphs
-  - full-sessions
-  - funbot-client
-  - funcons-lambda-cbv-mp # failure building executable 'lambda-cbv' in job https://hydra.nixos.org/build/217559083 at 2023-04-29
-  - funcons-values # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230971643 at 2023-08-16
-  - functional-arrow
-  - function-instances-algebra
-  - functor-combinators
-  - functor-friends
-  - functor-infix
-  - functorm
-  - functor-products
-  - functor-utils
-  - Fungi
-  - funpat
-  - funspection
-  - fused-effects-exceptions
-  - fused-effects-mwc-random
-  - fused-effects-resumable
-  - fused-effects-th # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230961770 at 2023-08-16
-  - fusion
-  - futhask
-  - futun
-  - future
-  - futures # failure building library in job https://hydra.nixos.org/build/230952892 at 2023-08-16
-  - fuzzyfind
-  - fuzzyset # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967540 at 2023-08-16
-  - fuzzy-timings
-  - fwgl
-  - fxpak
-  - g4ip
-  - galois-field
-  - gameclock
-  - game-probability
-  - gamgee
-  - Gamgine
-  - gamma
-  - Ganymede
-  - garepinoh
-  - gargoyle # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230955806 at 2023-08-16
-  - gargoyle-postgresql-nix
-  - gas
-  - gather
-  - gc-monitoring-wai
-  - gconf
-  - gdiff-th
-  - gegl
-  - gelatin
-  - gemcap
-  - gemini-server
-  - gemstone
-  - gencheck
-  - gender
-  - genders
-  - general-allocate
-  - general-prelude
-  - GeneralTicTacToe
-  - generator
-  - generators
-  - generic-aeson # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230955043 at 2023-08-16
-  - generic-binary
-  - generic-church
-  - generic-enum
-  - generic-enumeration
-  - generic-labels
-  - generic-lens-labels
-  - generic-lucid-scaffold
-  - generic-match
-  - generic-maybe
-  - generic-override
-  - generic-persistence #  failure  in job https://hydra.nixos.org/build/215303659 at 2023-04-11
-  - generic-pretty
-  - generic-pretty-instances
-  - generic-records
-  - genericserialize
-  - generic-server
-  - generics-mrsop
-  - generic-storable
-  - generic-tree
-  - generic-xml
-  - generic-xmlpickler
-  - genetics
-  - genifunctors
-  - gen-imports
-  - geniplate
-  - geniplate-mirror
-  - gen-passwd
-  - genprog
-  - gentlemark
-  - geocode-google
-  - GeocoderOpenCage
-  - geodetic-types
-  - GeoIp
-  - geojson-types
-  - geom2d
-  - GeomPredicates-SSE
-  - geo-resolver
-  - geos
-  - gerrit # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230950005 at 2023-08-16
-  - Get
-  - getflag
-  - gev-lib # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230946300 at 2023-08-16
-  - GGg
-  - ggtsTC
-  - ghc-api-compat
-  - ghc-bignum-orphans # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230952175 at 2023-08-16
-  - ghc-clippy-plugin
-  - ghc-core-smallstep
-  - ghc-corroborate # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230966063 at 2023-08-16
-  - ghc-datasize
-  - ghc-definitions-th # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230968119 at 2023-08-16
-  - ghc-dump-core # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230962483 at 2023-08-16
-  - ghc-dump-tree
-  - ghc-dup
-  - ghc-events-analyze
-  - ghc-events-parallel
-  - ghcflags
-  - ghc-gc-hook # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230962629 at 2023-08-16
-  - ghc-generic-instances
-  - ghc-hotswap
-  - ghci-diagrams
-  - ghci-haskeline
-  - ghci-history-parser
-  - ghci-lib
-  - ghci-ng
-  - ghcjs-base-stub
-  - ghcjs-dom-jsffi
-  - ghcjs-promise
-  - ghcjs-xhr
-  - ghc-justdoit
-  - ghclive
-  - ghc-man-completion
-  - ghc-mtl
-  - ghc-parmake
-  - ghc-pkg-autofix
-  - ghc-pkg-lib
-  - ghc-plugin-non-empty
-  - ghc-plugs-out
-  - ghc-proofs
-  - ghc-simple
-  - ghc-source-gen
-  - ghc-srcspan-plugin
-  - ghc-syb
-  - ghc-syb-utils
-  - ghc-tags-core
-  - ghc-time-alloc-prof
-  - ghc-usage
-  - gh-labeler
-  - gi-adwaita
-  - giak
-  - gi-cogl
-  - Gifcurry
-  - gi-gio-hs-list-model
-  - gi-graphene
-  - gi-gsttag
-  - gi-gtk-declarative
-  - gi-gtk-layer-shell
-  - gi-gtksheet
-  - gi-gtksource # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230968384 at 2023-08-16
-  - gi-handy
-  - gi-ibus # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230971732 at 2023-08-16
-  - gingersnap
-  - ginsu
-  - gipeda
-  - giphy-api
-  - gist
-  - GiST
-  - git
-  - git-all
-  - git-brunch # failure building executable 'git-brunch' in job https://hydra.nixos.org/build/230966224 at 2023-08-16
-  - git-checklist
-  - git-cuk
-  - git-date
-  - github-backup
-  - github-data
-  - github-post-receive
-  - github-tools
-  - github-utils
-  - github-webhook-handler
-  - githud
-  - gitHUD # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230965338 at 2023-08-16
-  - gitignore
-  - git-jump
-  - gitlab-api
-  - gitlab-haskell
-  - gitlib-cmdline
-  - gitlib-utils
-  - git-repair
-  - gitter
-  - git-vogue
-  - gi-webkitwebprocessextension # failure in compileBuildDriverPhase in job https://hydra.nixos.org/build/215220491 at 2023-04-07
-  - glade
-  - glapp
-  - glaze
-  - Gleam
-  - GLFW
-  - GLFW-b-demo
-  - gli
-  - glicko
-  - glider-nlp
-  - GLMatrix
-  - global-variables
-  - glob-posix
-  - GlomeTrace
-  - gloss-banana
-  - gloss-export
-  - gloss-game
-  - glsl # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230960137 at 2023-08-16
-  - gltf-codec
-  - glue
-  - g-npm
-  - goa
-  - goal-core
-  - goatee
-  - gochan
-  - godot-haskell
-  - godot-megaparsec # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230948877 at 2023-08-16
-  - gofer-prelude
-  - gogol-core
-  - gooey
-  - google-cloud
-  - GoogleCodeJam
-  - google-html5-slide
-  - google-oauth2
-  - google-oauth2-easy
-  - google-oauth2-jwt
-  - googlepolyline
-  - google-search
-  - google-server-api
-  - google-static-maps
-  - google-translate
-  - gopherbot
-  - gopro-plus
-  - gore-and-ash
-  - gothic
-  - GotoT-transformers
-  - gotta-go-fast
-  - gotyno-hs # failure building library in job https://hydra.nixos.org/build/230953887 at 2023-08-16
-  - gpah
-  - GPipe
-  - GPipe-Core
-  - gpmf
-  - gpx-conduit
-  - graceful
-  - grafana
-  - Grafos
-  - grakn
-  - grammatical-parsers
-  - Graph500
-  - Graphalyze
-  - graphbuilder
-  - graphene
-  - graphics-drawingcombinators
-  - graphics-formats-collada
-  - graph-matchings
-  - graphmod-plugin
-  - graphql-api
-  - graphql-spice
-  - graphql-utils
-  - graphql-w-persistent
-  - graph-rewriting
-  - graph-serialize
-  - graphted
-  - graphula-core
-  - graph-utils
-  - graql
-  - grasp
-  - gray-code
-  - graylog
-  - greencard
-  - greg-client
-  - gremlin-haskell
-  - Grempa
-  - greplicate
-  - greskell-core # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230954493 at 2023-08-16
-  - gridfs
-  - grid-proto # failure building library in job https://hydra.nixos.org/build/219248049 at 2023-05-10
-  - grids
-  - grm
-  - GroteTrap
-  - groundhog
-  - grouped-list # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230962501 at 2023-08-16
-  - groups-generic
-  - group-theory
-  - group-with
-  - growler
-  - grow-vector
-  - grpc-api-etcd
-  - gsl-random
-  - gstreamer
-  - GTALib
-  - gtk2hs-cast-th
-  - gtk2hs-hello
-  - gtk2hs-rpn
-  - gtk3-helpers
-  - gtkglext
-  - gtk-helpers
-  - gtksourceview2
-  - gtksourceview3
-  - gtk-toy
-  - guardian   # transitive dependency uses doctest, but doctest doesn't build with newer Cabal version
-  - guess-combinator
-  - gulcii
-  - gw
-  - gyah-bin
-  - gym-http-api
-  - h2048
-  - h2c
-  - haar
-  - HABQT
-  - hack2-contrib
-  - hack2-handler-warp
-  - hackage2hwn
-  - hackage-api
-  - hackage-diff
-  - hackage-mirror
-  - hackage-processing
-  - hackage-proxy
-  - hackager
-  - hackage-server
-  - hackage-whatsnew
-  - hackernews
-  - hack-frontend-happstack
-  - hack-handler-cgi
-  - HackMail
-  - hackport
-  - hactor
-  - hactors
-  - haddock-api
-  - haddock-leksah
-  - haddock-test
-  - hadoop-formats
-  - hadoop-rpc
-  - hadoop-streaming
-  - hafar
-  - haggle # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967144 at 2023-08-16
-  - Haggressive
-  - HaGL # test failure in job https://hydra.nixos.org/build/225563740 at 2023-06-28
-  - hahp
-  - haiji
-  - hail
-  - hailgun
-  - hairy
-  - hakaru
-  - hakismet
-  - hakka
-  - hako
-  - hakyll-agda
-  - hakyll-blaze-templates
-  - hakyll-contrib
-  - hakyll-contrib-csv
-  - hakyll-contrib-elm
-  - hakyll-contrib-i18n
-  - hakyll-contrib-links
-  - hakyll-convert # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230951676 at 2023-08-16
-  - hakyll-dhall
-  - hakyll-dir-list
-  - hakyll-R
-  - hakyll-series
-  - hakyll-shortcode
-  - hakyll-typescript
-  - HaLeX
-  - hal # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230966637 at 2023-08-16
-  - halfs
-  - half-space
-  - halide-haskell # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230951821 at 2023-08-16
-  - halipeto
-  - halive
-  - halma
-  - halves
-  - ham
-  - HaMinitel
-  - hampp
-  - hamsql
-  - hamtmap
-  - hanabi-dealer
-  - handa-gdata
-  - handle-like
-  - HandlerSocketClient
-  - handsy
-  - Hangman
-  - HangmanAscii
-  - hannahci
-  - hans
-  - hanspell
-  - haphviz
-  - hapistrano
-  - happindicator
-  - happindicator3
-  - happlets
-  - happraise
-  - happstack
-  - happstack-clientsession # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230955472 at 2023-08-16
-  - happstack-hamlet
-  - happstack-heist
-  - happstack-hstringtemplate
-  - happstack-lite # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230969664 at 2023-08-16
-  - happstack-monad-peel
-  - happstack-server-tls-cryptonite
-  - happstack-util
-  - happstack-yui
-  - HAppS-Util
-  - happybara
-  - happybara-webkit-server
-  - happy-hour
-  - HappyTree
-  - hapstone
-  - HaPy
-  - haquery
-  - harchive
-  - hardware-edsl
-  - harfbuzz-pure
-  - HARM
-  - HarmTrace-Base
-  - haroonga
-  - harpy
-  - harvest-api
-  - has
-  - hasbolt
-  - HasCacBDD
-  - hascar
-  - hascard
-  - hascas
-  - hash
-  - hashable-extras
-  - hashable-generics
-  - hashabler
-  - hashed-storage
-  - hashring
-  - hashtables-plus
-  - hasim
-  - hask
-  - haskades
-  - haskanoid
-  - haskarrow
-  - haskbot-core
-  - haskeline-class
-  - haskelisp
-  - haskell2010
-  - haskell2020
-  - haskell98
-  - haskell98libraries
-  - haskell-abci
-  - haskell-admin-core
-  - HaskellAnalysisProgram
-  - haskell-awk
-  - haskell-bcrypt
-  - haskell-bitmex-rest
-  - haskell-brainfuck
-  - haskell-cnc
-  - haskell-compression
-  - haskell-conll
-  - haskell-course-preludes
-  - haskelldb
-  - haskelldb-wx
-  - haskell-disque
-  - HaskellForMaths
-  - haskell-formatter
-  - haskell-generate
-  - haskell-go-checkers
-  - haskell-holes-th
-  - haskell-igraph
-  - haskell-import-graph
-  - haskell-in-space
-  - haskell-kubernetes
-  - HaskellLM
-  - haskell-lsp-types
-  - haskell-ml
-  - haskell-mpfr
-  - haskell-names
-  - haskell-neo4j-client
-  - HaskellNN
-  - Haskelloids
-  - haskell-openflow
-  - haskell-overridez
-  - haskell-packages
-  - haskell-player
-  - haskell-plot
-  - haskell-postal
-  - haskell-postgis
-  - haskell-read-editor
-  - haskell-rules
-  - haskellscrabble
-  - haskellscript
-  - haskell-snake
-  - haskell-spacegoo
-  - haskell-src-exts-prisms
-  - haskell-src-exts-qq
-  - haskell-src-exts-sc
-  - haskell-src-match
-  - haskell-src-meta-mwotton
-  - haskell-stack-trace-plugin
-  - haskell-to-elm
-  - HaskellTorrent
-  - HaskellTutorials
-  - haskell-type-exts
-  - haskell-typescript
-  - haskell-tyrant
-  - haskelzinc
-  - haskeme
-  - haskey
-  - haskey-btree # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947127 at 2023-08-16
-  - haskheap
-  - haskhol-core
-  - haskintex # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947126 at 2023-08-16
-  - haskmon
-  - haskoin
-  - haskoin-util
-  - haskoin-wallet
-  - haskore
-  - haskore-vintage
-  - HaskRel
-  - hasktorch-codegen
-  - hasktorch-ffi-th
-  - hasktorch-signatures-partial
-  - hasktorch-signatures-support
-  - haskus-utils-variant
-  - haskyapi
-  - hasmin
-  - haspara
-  - hasparql-client
-  - hasql-backend
-  - hasql-class
-  - hasql-cursor-transaction
-  - hasql-explain-tests
-  - hasql-generic
-  - hasql-interpolate
-  - hasql-resource-pool
-  - hasql-simple
-  - hasql-streams-core
-  - hasql-transaction-io # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230949199 at 2023-08-16
-  - hasql-url
-  - hastache
-  - haste
-  - haste-prim
-  - hasura-ekg-core # failure building library in job https://hydra.nixos.org/build/230950264 at 2023-08-16
-  - hat
-  - hatex-guide
-  - hats
-  - hatt
-  - haveibeenpwned
-  - haven
-  - haverer
-  - hax
-  - haxl
-  - haxparse
-  - haxr-th
-  - hayland
-  - hayoo-cli
-  - hb3sum
-  - hBDD-CMUBDD
-  - hBDD-CUDD
-  - hbeanstalk
-  - hbeat
-  - hblas
-  - hblock
-  - h-booru
-  - hburg
-  - hcad
-  - HCard
-  - hcc
-  - hcg-minus
-  - hchesslib
-  - hcltest
-  - hcoap
-  - hcobs
-  - hcom
-  - hcron
-  - hCsound
-  - hdaemonize-buildfix
-  - hdbc-aeson
-  - HDBC-mysql
-  - hdbc-postgresql-hstore
-  - HDBC-postgresql-hstore
-  - hdevtools
-  - hdf5
-  - hDFA
-  - hdis86
-  - hdiscount
-  - hdm
-  - hdo
-  - hdph-closure
-  - hdr-histogram
-  - HDRUtils
-  - headergen
-  - headroom
-  - heap-console
-  - heapsort
-  - heartbeat-streams # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230948671 at 2023-08-16
-  - heart-core
-  - heatitup-complete # failure building executable 'heatitup-complete' in job https://hydra.nixos.org/build/230969611 at 2023-08-16
-  - hebrew-time
-  - heckle
-  - heddit
-  - hedgehog-checkers
-  - hedgehog-gen
-  - hedgehog-generic
-  - hedgehog-golden
-  - hedgehog-lens # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947380 at 2023-08-16
-  - hedgehog-servant
-  - hedis-config
-  - hedis-namespace
-  - hedis-simple
-  - hedis-tags
-  - hedra
-  - heidi
-  - hein
-  - heist-aeson
-  - heist-async
-  - heist-emanote
-  - heist-extra # failure building library in job https://hydra.nixos.org/build/230953957 at 2023-08-16
-  - helisp
-  - helix
-  - helm
-  - help-esb
-  - hemkay
-  - HERA
-  - herbalizer
-  - HerbiePlugin
-  - heredocs
-  - her-lexer-parsec
-  - Hermes
-  - herms
-  - heroku-persistent # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230959576 at 2023-08-16
-  - hetero-dict
-  - heterogeneous-list-literals
-  - hetris
-  - heukarya
-  - HExcel
-  - hexchat
-  - hexif
-  - hexmino
-  - hexml-lens
-  - hexpat-lens
-  - hexpat-pickle-generic
-  - hexpat-streamparser
-  - hexpr
-  - hexpress
-  - hexquote
-  - hexstring
-  - hext
-  - hextra
-  - heyefi
-  - heyting-algebras
-  - hF2
-  - hfann
-  - HFitUI
-  - hfmt
-  - hfoil # failure building library in job https://hydra.nixos.org/build/213500290 at 2023-03-26
-  - hfov
-  - HFrequencyQueue
-  - hfusion
-  - HGamer3D
-  - HGamer3D-Data
-  - hg-buildpackage
-  - hgdbmi
-  - HGE2D
-  - hgearman
-  - hGelf
-  - hgeometric
-  - hgeometry-ipe
-  - hgis
-  - hgom
-  - hgopher
-  - h-gpgme
-  - HGraphStorage
-  - hgreet # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230970023 at 2023-08-16
-  - hgrep
-  - hgrev
-  - hgrib
-  - hharp
-  - HHDL
-  - hhp
-  - hhwloc
-  - hi
-  - hi3status
-  - hichi
-  - hid
-  - hidden-char
-  - hid-examples
-  - hieraclus
-  - hierarchical-clustering # failure building library in job https://hydra.nixos.org/build/230953344 at 2023-08-16
-  - hierarchical-exceptions
-  - hierarchy
-  - hiernotify
-  - hifi # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230961852 at 2023-08-16
-  - higgledy
-  - higher-leveldb
-  - higherorder
-  - highjson
-  - highlight-versions
-  - highWaterMark
-  - hills
-  - himg
-  - hindley-milner
-  - hindley-milner-type-check
-  - hinquire
-  - hinstaller
-  - hinter
-  - hinterface
-  - hint-server
-  - hipchat-hs
-  - hipe
-  - Hipmunk
-  - hipsql-api
-  - hircules
-  - Hish
-  - hissmetrics
-  - historian
-  - hist-pl-types
-  - hit-on
-  - HJavaScript
-  - hjcase
-  - hjs
-  - hjsonpointer
-  - hjson-query
-  - hjugement-protocol
-  - HJVM
-  - hkd-delta
-  - hkd-lens
-  - hkd-records
-  - hkt
-  - hlbfgsb
-  - hleap
-  - hledger-chart
-  - hledger-diff
-  - hledger-flow # failure building library in job https://hydra.nixos.org/build/230963320 at 2023-08-16
-  - hledger-iadd
-  - hledger-irr
-  - hledger-makeitso # failure building library in job https://hydra.nixos.org/build/230946385 at 2023-08-16
-  - hledger-vty
-  - hlibBladeRF
-  - hlibev
-  - hlibfam
-  - HList # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230950021 at 2023-08-16
-  - hlivy
-  - hlogger
-  - HLogger
-  - hlongurl
-  - hls-brittany-plugin
-  - hls-haddock-comments-plugin
-  - hls-selection-range-plugin
-  - hls-stan-plugin
-  - hls-tactics-plugin
-  - hlwm
-  - hly
-  - hmarkup
-  - hmatrix-banded
-  - hmatrix-mmap
-  - hmatrix-nipals
-  - hmatrix-sparse
-  - hmatrix-static
-  - hmatrix-svdlibc
-  - hmatrix-syntax
-  - hmatrix-tests
-  - hmenu
-  - hmk
-  - hmm
-  - HMM
-  - hmm-hmatrix
-  - HMock # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230971948 at 2023-08-16
-  - hMollom
-  - hmp3
-  - Hmpf
-  - hmumps
-  - hnetcdf
-  - hnn
-  - hnock # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230960174 at 2023-08-16
-  - hnop
-  - hoauth
-  - hoauth2-providers
-  - hoauth2-tutorial
-  - hobbes
-  - hobbits
-  - hocilib
-  - hocker
-  - hocon
-  - hodatime
-  - HODE
-  - hoe
-  - hofix-mtl
-  - hog
-  - hogg
-  - hoggl
-  - hois
-  - hold-em
-  - hole
-  - holmes
-  - homeomorphic
-  - homoiconic
-  - homplexity
-  - honi
-  - hoobuddy
-  - hood2
-  - hoodle-types
-  - hood-off
-  - hoogle-index
-  - hooks-dir
-  - hoop
-  - hoopl
-  - hopencc
-  - hopencl
-  - HOpenCV
-  - hopenpgp-tools
-  - hopfield
-  - hoppy-generator
-  - hops
-  - hoq
-  - horizon
-  - horizon-spec # dependency missing in job https://hydra.nixos.org/build/213500294 at 2023-03-26
-  - horname
-  - hosc-json
-  - hosts-server
-  - hothasktags
-  - hourglass-fuzzy-parsing
-  - houseman
-  - hp2any-core
-  - hpack-convert
-  - hpack-dhall
-  - hpapi
-  - hpasteit
-  - HPath
-  - hpath-directory # failure building library in job https://hydra.nixos.org/build/214497909 at 2023-04-07
-  - hpc-coveralls
-  - hpg
-  - HPi
-  - hpio
-  - hplaylist
-  - hpodder
-  - hpqtypes
-  - hprox # dependency missing in job https://hydra.nixos.org/build/221844808 at 2023-05-30
-  - hps-kmeans
-  - hPushover
-  - hpygments
-  - hpylos
-  - hpyrg
-  - hquantlib-time
-  - hquery
-  - hR
-  - hreq-core
-  - hRESP
-  - h-reversi
-  - hricket
-  - Hricket
-  - HROOT-core
-  - hruby
-  - hs2bf
-  - hs2ps
-  - hsay
-  - hsbc
-  - hsbencher
-  - hs-brotli
-  - hsc3
-  - hsc3-rw
-  - hsc3-sf
-  - hscaffold
-  - hscamwire
-  - hs-carbon-examples
-  - hscd
-  - hscdio
-  - hschema-aeson
-  - hscim
-  - hsclock
-  - hScraper
-  - hscuid
-  - hs-di
-  - hsdif
-  - hsdip
-  - hsdns-cache
-  - hs-dotnet
-  - hs-duktape
-  - hsebaysdk
-  - hsenv
-  - HSet
-  - hs-excelx
-  - hsfcsh
-  - HSFFIG
-  - hsfilt
-  - hs-fltk
-  - hsforce
-  - hs-gizapp
-  - hsgnutls
-  - hsgnutls-yj
-  - hsgsom
-  - HsHaruPDF
-  - HsHyperEstraier
-  - hsI2C
-  - hSimpleDB
-  - hsimport
-  - hsini
-  - hsinspect
-  - hs-java
-  - hs-json-rpc
-  - HsJudy
-  - hskeleton
-  - hslackbuilder
-  - hslibsvm
-  - hslinks
-  - hslogger-reader
-  - hslogger-template
-  - hs-logo
-  - hslua-examples
-  - hsluv-haskell
-  - hsmagick
-  - hsmodetweaks
-  - Hsmtlib
-  - hsmtpclient
-  - hsnock
-  - hs-nombre-generator
-  - hsns
-  - hsnsq
-  - hsntp
-  - hs-openmoji-data
-  - hsoptions
-  - hsoz
-  - hsparql
-  - hs-pattrans
-  - hsp-cgi
-  - hspear
-  - hspec2
-  - hspec-api # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230957655 at 2023-08-16
-  - hspec-expectations-match
-  - hspec-experimental
-  - hspec-jenkins
-  - hspec-junit-formatter
-  - hspec-monad-control
-  - hspec-need-env # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230962402 at 2023-08-16
-  - hspec-slow
-  - hspec-snap
-  - hspec-structured-formatter
-  - hspec-tables
-  - hspec-webdriver
-  - HsPerl5
-  - hs-pgms
-  - hspkcs11
-  - hs-pkg-config
-  - hspread
-  - hspresent
-  - hspretty
-  - hsql
-  - hs-re
-  - hsrelp
-  - hs-rqlite
-  - hs-rs-notify
-  - hs-scrape
-  - hsseccomp
-  - hsshellscript # failure building library in job https://hydra.nixos.org/build/230964557 at 2023-08-16
-  - hs-snowtify
-  - hsSqlite3
-  - hssqlppp
-  - HsSVN
-  - hs-tags
-  - hstats
-  - hstatsd
-  - hs-term-emulator
-  - hstest
-  - hstidy
-  - HsTools
-  - hs-twitter
-  - hs-twitterarchiver
-  - hstyle
-  - hsudoku
-  - hs-vcard
-  - hs-watchman
-  - hsx
-  - hsXenCtrl
-  - hsyscall
-  - hsyslog-udp
-  - hszephyr
-  - hTalos
-  - htdp-image
-  - hTensor
-  - htestu
-  - HTicTacToe
-  - htiled
-  - htlset
-  - html-parse # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230962751 at 2023-08-16
-  - html-rules
-  - html-tokenizer
-  - htoml
-  - htoml-megaparsec
-  - hts
-  - htsn
-  - htssets
-  - http2-client-exe
-  - http2-client # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230949635 at 2023-08-16
-  - http2-grpc-types
-  - http3 # dependency missing in job https://hydra.nixos.org/build/214603147 at 2023-04-07
-  - http-attoparsec
-  - http-client-lens
-  - http-client-request-modifiers
-  - http-client-session
-  - http-client-streams
-  - http-conduit-browser
-  - http-conduit-downloader
-  - http-directory
-  - http-dispatch
-  - http-encodings
-  - http-grammar
-  - http-kinder
-  - http-kit
-  - http-listen
-  - http-monad
-  - http-pony
-  - http-pony-serve-wai
-  - http-proxy
-  - http-querystring
-  - http-response-decoder
-  - http-rfc7807
-  - http-server
-  - http-shed
-  - httpstan # dependency missing in job https://hydra.nixos.org/build/221916023 at 2023-05-31
-  - http-wget
-  - htune
-  - htvm
-  - htzaar
-  - huck
-  - HueAPI
-  - huff
-  - huffman
-  - HulkImport
-  - hum
-  - human-parse
-  - human-text
-  - humble-prelude
-  - hums
-  - hunch
-  - HUnit-Diff
-  - HUnit-Plus
-  - hunit-rematch
-  - hup
-  - hurl
-  - hurriyet
-  - husky
-  - hutton
-  - huttons-razor
-  - hVOIDP
-  - hwall-auth-iitk
-  - hw-ci-assist
-  - hw-dsv # failure building library in job https://hydra.nixos.org/build/230955653 at 2023-08-16
-  - hw-dump
-  - hweblib
-  - hwhile
-  - hw-json-demo
-  - hw-json-lens
-  - hw-json-simd
-  - hworker
-  - hw-playground-linear
-  - hw-prim-bits
-  - hw-simd-cli
-  - hwsl2
-  - hw-streams # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230953855 at 2023-08-16
-  - hw-tar
-  - hw-xml # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230966951 at 2023-08-16
-  - hx
-  - hxmppc
-  - HXQ
-  - hxt-pickle-utils
-  - hyakko
-  - hydra # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947287 at 2023-08-16
-  - hydra-hs
-  - hydrogen
-  - hydrogen-multimap
-  - hylide
-  - hylolib
-  - hyper
-  - hyperdrive
-  - hyperfunctions
-  - hyperion
-  - hyperloglogplus
-  - hyperscript
-  - hypertypes
-  - hypher
-  - hyraxAbif
-  - hzulip
-  - i18n
-  - I1M
-  - i3blocks-hs-contrib
-  - i3ipc
-  - iap-verifier
-  - iban
-  - ib-api
-  - ical
-  - icepeak
-  - icfpc2020-galaxy
-  - IcoGrid
-  - iconv-typed
-  - ideas
-  - ide-backend-common
-  - idempotent
-  - identifiers
-  - idiii
-  - idna2008
-  - IDynamic
-  - ieee-utils
-  - iexcloud
-  - ifcxt
-  - if-instance
-  - IFS
-  - ig
-  - ige
-  - ignore
-  - igraph
-  - ihaskell-charts
-  - ihaskell-diagrams
-  - ihaskell-gnuplot
-  - ihaskell-graphviz # failure building library in job https://hydra.nixos.org/build/230959018 at 2023-08-16
-  - ihaskell-parsec
-  - ihaskell-plot
-  - ihaskell-widgets
-  - ihp-hsx # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230971837 at 2023-08-16
-  - ilist # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230948898 at 2023-08-16
-  - illuminate
-  - imagemagick
-  - imagepaste
-  - image-type
-  - imapget
-  - imgur
-  - imj-prelude
-  - imm
-  - immortal-worker
-  - imperative-edsl
-  - imperative-edsl-vhdl
-  - ImperativeHaskell
-  - impl
-  - implicit-logging
-  - implicit-params
-  - imports
-  - impossible
-  - imprint
-  - impure-containers
-  - inchworm
-  - indentation-core
-  - index-core
-  - indexed-containers
-  - indexed-do-notation
-  - indextype
-  - indices
-  - infernal
-  - inferno-types
-  - infernu # failure building library in job https://hydra.nixos.org/build/230972899 at 2023-08-16
-  - infer-upstream
-  - inf-interval
-  - infix
-  - inflections # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230960295 at 2023-08-16
-  - inflist
-  - informative
-  - inilist
-  - ini-qq
-  - initialize
-  - inj-base
-  - inject-function
-  - injections
-  - inline-c-objc # failure building test suite 'tests' in job https://hydra.nixos.org/build/221844966 at 2023-05-30
-  - inline-r # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/231676486 at 2023-08-16
-  - in-other-words-plugin
-  - inserts
-  - instana-haskell-trace-sdk
-  - instance-map
-  - instant-generics
-  - instapaper-sender
-  - instinct
-  - intcode # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230963480 at 2023-08-16
-  - integer-pure
-  - integer-simple
-  - intensional-datatys
-  - interact
-  - interactive-plot
-  - interleavableGen
-  - interleavableIO
-  - interlude-l
-  - internetmarke
-  - intero
-  - interp
-  - interpol
-  - interpolatedstring-qq2
-  - interpolator
-  - interruptible
-  - interval
-  - interval-algebra
-  - interval-patterns
-  - interval-tree-clock
-  - IntFormats
-  - int-interval-map
-  - int-like # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230957175 at 2023-08-16
-  - int-multimap
-  - intrinsic-superclasses
-  - intro
-  - introduction
-  - inventory
-  - invertible
-  - invertible-syntax
-  - involutive-semigroups
-  - io-capture
-  - io-choice
-  - ioctl
-  - IOR
-  - io-reactive
-  - iostring
-  - iothread
-  - iotransaction
-  - ip2location
-  - ip2proxy
-  - ipa
-  - ipfs
-  - ipopt-hs
-  - ip-quoter
-  - iptables-helpers
-  - IPv6DB
-  - Irc
-  - ircbot
-  - irc-core # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230962123 at 2023-08-16
-  - irc-dcc
-  - irc-fun-types
-  - ireal
-  - iri
-  - iridium
-  - iris
-  - iron-mq
-  - irt
-  - isdicom
-  - IsNull
-  - iso8601-duration
-  - isobmff
-  - isotope
-  - itcli
-  - itemfield
-  - iteratee
-  - iterative-forward-search
-  - iterIO
-  - iterm-show
-  - it-has
-  - ivory
-  - ixdopp
-  - ixmonad
-  - ixset-typed # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967299 at 2023-08-16
-  - ixshader
-  - j
-  - jack-bindings
-  - jackminimix
-  - JackMiniMix
-  - jacobi-roots
-  - jaeger-flamegraph
-  - jail
-  - jalla
-  - jammittools
-  - jarfind
-  - jarify
-  - jaskell # test failure in job https://hydra.nixos.org/build/230959845 at 2023-08-16
-  - jason
-  - java-adt
-  - javascript-bridge
-  - javav
-  - Javav
-  - jbi
-  - jcdecaux-vls
-  - Jdh
-  - jdi
-  - jenga
-  - jenkinsPlugins2nix
-  - jet-stream
-  - Jikka
-  - jinquantities
-  - jmacro-rpc
-  - jml-web-service
-  - jni
-  - jobqueue
-  - join-api
-  - joinlist
-  - jonathanscard
-  - jordan # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230965587 at 2023-08-16
-  - jort
-  - joy-rewrite
-  - jpeg
-  - jsaddle-clib
-  - jsaddle-warp
-  - jsaddle-wkwebview
-  - js-good-parts
-  - json2
-  - json-alt
-  - json-api
-  - json-api-lib
-  - json-assertions
-  - json-ast-quickcheck
-  - JSONb
-  - json-builder
-  - json-bytes-builder
-  - json-encoder
-  - jsonextfilter
-  - json-extra
-  - json-fu
-  - json-litobj
-  - jsonlogic-aeson
-  - jsonnet
-  - json-pointer
-  - json-pointy
-  - json-python
-  - json-qq
-  - jsonresume
-  - json-rpc-generic
-  - json-rpc-server
-  - json-rpc # test failure in job https://hydra.nixos.org/build/214602304 at 2023-04-07
-  - jsonrpc-tinyclient
-  - json-schema
-  - jsonschema-gen
-  - jsonsql
-  - json-syntax
-  - json-tools
-  - json-tracer
-  - jsontsv
-  - jsonxlsx
-  - jsop
-  - judge
-  - judy
-  - juicy-gcode
-  - JuicyPixels-blp
-  - JuicyPixels-blurhash
-  - JuicyPixels-canvas
-  - JuicyPixels-util
-  - jukebox # failure building library in job https://hydra.nixos.org/build/230961139 at 2023-08-16
-  - JunkDB
-  - jupyter
-  - justified-containers
-  - JustParse
-  - jvm-binary
-  - jvm-parser
-  - JYU-Utils
-  - k8s-wrapper # test failure in job https://hydra.nixos.org/build/211254982 at 2023-03-13
-  - kademlia
-  - kafka-client # dependency missing in job https://hydra.nixos.org/build/211238496 at 2023-03-13
-  - kafka-client-sync
-  - kalman
-  - Kalman
-  - kangaroo
-  - kanji # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967903 at 2023-08-16
-  - karabiner-config
-  - karps
-  - katip-datadog
-  - katip-elasticsearch
-  - katip-kafka
-  - katip-logzio
-  - katip-raven
-  - katip-scalyr-scribe
-  - katip-syslog
-  - katt
-  - katydid
-  - kawaii
-  - Kawaii-Parser
-  - kawhi
-  - kdesrc-build-extra
-  - kd-tree
-  - keccak
-  - keenser
-  - keera-hails-reactivevalues
-  - keid-render-basic #  failure  in job https://hydra.nixos.org/build/225578420 at 2023-06-28
-  - keid-ui-dearimgui
-  - keiretsu
-  - kempe
-  - kesha
-  - Ketchup
-  - kewar
-  - keycloak-hs
-  - keyed
-  - keyed-vals
-  - khph
-  - kickass-torrents-dump-parser
-  - kickchan
-  - kind-generics-deriving
-  - kind-integer # failure building library in job https://hydra.nixos.org/build/214501345 at 2023-04-07
-  - kleene-list
-  - kmn-programming
-  - kmonad
-  - kmp-dfa
-  - knots
-  - koellner-phonetic
-  - koneko
-  - Konf
-  - konnakol
-  - kontra-config
-  - koofr-client
-  - korea-holidays
-  - kraken
-  - krapsh
-  - Kriens
-  - kriti-lang
-  - krpc
-  - KSP
-  - ktx
-  - kubernetes-client-core
-  - kubernetes-webhook-haskell
-  - kudzu # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947047 at 2023-08-16
-  - kuifje
-  - kure
-  - KyotoCabinet
-  - l10n # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230958884 at 2023-08-16
-  - labeled-graph
-  - lagrangian
-  - lambda2js
-  - lambdaBase
-  - lambdabot-utils
-  - lambdabot-xmpp
-  - lambda-bridge
-  - lambda-calculator
-  - lambda-canvas
-  - lambdacms-core
-  - lambda-cube
-  - lambdacube-core
-  - lambdacube-engine
-  - lambdacube-ir
-  - LambdaDesigner
-  - Lambdajudge
-  - LambdaNet
-  - lambda-sampler
-  - lambdatex
-  - lambda-toolbox
-  - lambdatwit
-  - Lambdaya
-  - lame
-  - lame-tester
-  - language-asn
-  - language-c-comments
-  - language-c-inline
-  - language-conf
-  - language-csharp
-  - language-dart
-  - language-dockerfile
-  - language-elm
-  - language-fortran
-  - language-gcl
-  - language-gemini
-  - language-go
-  - language-guess
-  - language-hcl
-  - language-java-classfile
-  - language-js
-  - language-lua2
-  - language-lua-qq
-  - language-mixal
-  - language-objc
-  - language-ocaml
-  - language-openscad
-  - language-pig
-  - language-rust
-  - language-sally # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230953286 at 2023-08-16
-  - language-sh
-  - language-sqlite
-  - language-sygus
-  - language-typescript
-  - language-webidl
-  - laop
-  - LargeCardinalHierarchy
-  - large-generics # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230948096 at 2023-08-16
-  - Lastik
-  - latest-npm-version
-  - latex-formulae-image
-  - latex-svg-image
-  - LATS
-  - launchdarkly-server-sdk
-  - launchpad-control
-  - lawful-classes-hedgehog
-  - lawless-concurrent-machines
-  - layers
-  - layout
-  - layout-bootstrap
-  - layout-rules
-  - lazify
-  - lazyarray
-  - lazyboy
-  - lazy-priority-queue
-  - lazyset
-  - LazyVault
-  - l-bfgs-b
-  - LC3
-  - lcs
-  - ldif
-  - ld-intervals
-  - leaf
-  - leapseconds
-  - learn
-  - Learning
-  - learn-physics-examples # dependency missing in job https://hydra.nixos.org/build/213500293 at 2023-03-26
-  - leetify
-  - lendingclub
-  - lens-datetime
-  - lenses
-  - lens-filesystem
-  - lens-labels
-  - lens-prelude
-  - lens-process
-  - lensref
-  - lens-simple
-  - lens-tell
-  - lens-text-encoding
-  - lens-th-rewrite
-  - lens-time
-  - lens-toml-parser # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230971016 at 2023-08-16
-  - lens-tutorial
-  - lens-typelevel
-  - lens-xml
-  - lenz-template
-  - less-arbitrary
-  - Level0
-  - level-monad
-  - levmar
-  - lfst
-  - lhc
-  - lhs2TeX-hl
-  - lhslatex
-  - libarchive # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230954627 at 2023-08-16
-  - LibClang
-  - libexpect
-  - libGenI
-  - libhbb
-  - libinfluxdb
-  - libjenkins
-  - libjwt-typed # failure building library in job https://hydra.nixos.org/build/230959244 at 2023-08-16
-  - libltdl
-  - libmdbx #  failure  in job https://hydra.nixos.org/build/230971264 at 2023-08-16
-  - liboath-hs
-  - liboleg
-  - libpafe
-  - libphonenumber # dependency missing in job https://hydra.nixos.org/build/214497968 at 2023-04-07
-  - libpq
-  - librandomorg
-  - libsecp256k1
-  - libssh2 # failure in compileBuildDriverPhase in job https://hydra.nixos.org/build/223222399 at 2023-06-07
-  - libsystemd-daemon
-  - libtagc
-  - libtelnet # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230948008 at 2023-08-16
-  - libxls
-  - libxlsxwriter-hs
-  - libxslt
-  - libyaml-streamly # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230965706 at 2023-08-16
-  - libzfs
-  - licensor
-  - lie
-  - life-sync
-  - lifetimes
-  - lifted-protolude
-  - lifter
-  - ligature
-  - light
-  - lilypond
-  - Limit
-  - limp-cbc
-  - linda
-  - linden
-  - linear-algebra-cblas
-  - linear-maps
-  - linear-opengl
-  - linearscan
-  - linear-socket
-  - linear-vect
-  - line-bot-sdk
-  - line-drawing
-  - line-indexed-cursor # test failure in job https://hydra.nixos.org/build/230971466 at 2023-08-16
-  - linenoise # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230954880 at 2023-08-16
-  - lines-of-action
-  - lingo
-  - linguistic-ordinals # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230962191 at 2023-08-16
-  - linkedhashmap
-  - linked-list-with-iterator
-  - linklater
-  - linnet
-  - linode
-  - linode-v4
-  - linux-blkid
-  - linux-cgroup
-  - linux-evdev
-  - linux-kmod
-  - linux-perf
-  - linux-xattr
-  - linx-gateway
-  - lipsum-gen
-  - liquid
-  - liquid-fixpoint # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230948295 at 2023-08-16
-  - liquidhaskell-cabal
-  - Liquorice
-  - list-fusion-probe
-  - listlike-instances
-  - list-mux
-  - list-prompt
-  - list-t-http-client
-  - list-t-libcurl
-  - list-tries
-  - list-t-text
-  - list-zip-def
-  - list-zipper
-  - liszt
-  - lit
-  - literals
-  - LiterateMarkdown
-  - little-earley # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230949904 at 2023-08-16
-  - ll-picosat
-  - llsd
-  - llvm-base
-  - llvm-extra # dependency missing in job https://hydra.nixos.org/build/217586045 at 2023-04-29
-  - llvm-general-pure
-  - llvm-hs
-  - llvm-ht
-  - llvm-party # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967625 at 2023-08-16
-  - llvm-pretty
-  - llvm-tf # failure building library in job https://hydra.nixos.org/build/230970343 at 2023-08-16
-  - lmdb-high-level # failure building library in job https://hydra.nixos.org/build/230954528 at 2023-08-16
-  - lmdb-simple
-  - lmonad
-  - lnurl
-  - load-balancing
-  - load-font
-  - local-address
-  - located
-  - located-monad-logger
-  - loch
-  - loc-test # failure in haddockPhase in job https://hydra.nixos.org/build/230967699 at 2023-08-16
-  - log2json
-  - log-base
-  - log-effect
-  - logentries
-  - logger
-  - logging-effect-extra-file
-  - logging-effect-extra-handler
-  - Logic
-  - logicst
-  - logict-sequence
-  - logplex-parse
-  - log-warper
-  - lojbanParser
-  - lojbanXiragan
-  - lol-calculus
-  - longboi
-  - long-double # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230964106 at 2023-08-16
-  - looksee # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230959202 at 2023-08-16
-  - lookup-tables
-  - loopbreaker
-  - loop-dsl
-  - looper # failure building test suite 'looper-test' in job https://hydra.nixos.org/build/225553593 at 2023-06-28
-  - loops
-  - loop-while
-  - loopy
-  - lord
-  - lorem
-  - loris
-  - loshadka
-  - louis
-  - lowgl
-  - lp-diagrams-svg
-  - LRU
-  - lrucaching
-  - lscabal
-  - L-seed
-  - lsfrom
-  - ltiv1p1
-  - ltk
-  - LTS
-  - lua-bc
-  - luautils
-  - lucid2-htmx
-  - lucid-alpine # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230948075 at 2023-08-16
-  - lucid-aria
-  - lucid-hyperscript
-  - luhn # failure in compileBuildDriverPhase in job https://hydra.nixos.org/build/230960533 at 2023-08-16
-  - luis-client
-  - luka
-  - luminance
-  - lushtags
-  - luthor
-  - lvmlib
-  - lvmrun
-  - lxd-client
-  - lxd-client-config # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967232 at 2023-08-16
-  - lye
-  - lz4-bytes # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230958626 at 2023-08-16
-  - lz4-frame-conduit
-  - lzip
-  - lzlib
-  - lzma-streams
-  - lzo
-  - maam
-  - mac
-  - macaroon-shop
-  - machinecell
-  - machines-attoparsec
-  - machines-binary
-  - machines-bytestring
-  - machines-encoding
-  - machines-io
-  - machines-zlib
-  - macho
-  - maclight
-  - macos-corelibs
-  - macrm
-  - madlang
-  - mage
-  - magic-tyfams
-  - magma
-  - mailchimp
-  - mailchimp-subscribe
-  - makedo
-  - makefile
-  - make-hard-links
-  - make-monofoldable-foldable
-  - mallard
-  - mandulia
-  - mangopay
-  - mapalgebra
-  - map-exts
-  - Mapping
-  - mappy
-  - map-reduce-folds
-  - MapWith
-  - markdown-kate
-  - marked-pretty
-  - markov-realization
-  - mars
-  - marshal-contt # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230964051 at 2023-08-16
-  - marvin-interpolate
-  - MASMGen
-  - massiv-persist
-  - massiv-scheduler
-  - massiv-serialise
-  - master-plan
-  - matcher # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947893 at 2023-08-16
-  - mathflow
-  - math-grads
-  - math-interpolate
-  - math-metric
-  - math-programming # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230964799 at 2023-08-16
-  - matrix-as-xyz
-  - matrix-lens
-  - matrix-market
-  - matrix-sized
-  - matroid
-  - maude
-  - maxent-learner-hw
-  - maybench
-  - MaybeT
-  - MaybeT-monads-tf
-  - MaybeT-transformers
-  - MazesOfMonad
-  - MBot
-  - mbox-tools
-  - mbtiles # failure building library in job https://hydra.nixos.org/build/230947737 at 2023-08-16
-  - mbug
-  - mcl
-  - mcm
-  - mcmaster-gloss-examples
-  - mcmc-synthesis
-  - mcpi
-  - md5 # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230966189 at 2023-08-16
-  - mdapi
-  - mdcat
-  - mdp
-  - mealstrom
-  - mealy # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230952277 at 2023-08-16
-  - MeanShift
-  - Measure
-  - mecab
-  - mech
-  - Mecha
-  - mechs
-  - Mechs
-  - mediabus
-  - mediawiki
-  - medium-sdk-haskell
-  - meep
-  - megalisp
-  - megastore #  failure  in job https://hydra.nixos.org/build/211239200 at 2023-03-13
-  - melf
-  - mellon-core
-  - melody
-  - membrain
-  - memcached
-  - memcached-binary
-  - memcache-haskell
-  - meminfo
-  - memoization-utils
-  - memo-ptr
-  - memorable-bits
-  - memorypool
-  - memo-sqlite
-  - menoh
-  - menshen
-  - mercury-api
-  - mergeful-persistent
-  - mergeless-persistent
-  - messagepack-rpc
-  - messente
-  - metadata
-  - MetaHDBC
-  - metaheuristics
-  - meta-misc
-  - meta-par
-  - method
-  - metric
-  - metricsd-client
-  - mezzo
-  - mezzolens
-  - mgeneric
-  - MHask
-  - mi
-  - miconix-test
-  - microbase
-  - microformats2-parser
-  - microgroove
-  - microlens-each
-  - microlens-process # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230957561 at 2023-08-16
-  - micrologger
-  - micro-recursion-schemes
-  - microsoft-translator
-  - mida
-  - midi-simple
-  - midisurface # dependency missing in job https://hydra.nixos.org/build/217805409 at 2023-04-29
-  - midi-utils
-  - mighttpd2 #  failure  in job https://hydra.nixos.org/build/225576224 at 2023-06-28
-  - mighty-metropolis # test failure in job https://hydra.nixos.org/build/214599789 at 2023-04-07
-  - migrant-postgresql-simple
-  - mikmod
-  - mikrokosmos
-  - miku
-  - milena
-  - mime-directory
-  - MiniAgda
-  - miniforth
-  - minilens
-  - minilight
-  - minions
-  - miniplex
-  - ministg
-  - minizinc-process
-  - minst-idx
-  - mios
-  - MIP
-  - mirror-tweet
-  - mismi-p # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230949261 at 2023-08-16
-  - mismi-s3-core
-  - miso-action-logger
-  - miso-examples
-  - mit-3qvpPyAi6mH
-  - mix-arrows
-  - mixpanel-client
-  - mkcabal
-  - mltool
-  - ml-w
-  - mm2
-  - mmsyn2
-  - mmsyn4
-  - mmsyn7l
-  - mmsyn7ukr-array
-  - mmsyn7ukr-common
-  - mmtf
-  - mmtl
-  - mmzk-typeid # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230951832 at 2023-08-16
-  - Mobile-Legends-Hack-Cheats
-  - mockazo
-  - mock-httpd
-  - modbus-tcp
-  - model
-  - modelicaparser
-  - modular-prelude
-  - module-management
-  - modulespection
-  - moe
-  - Moe
-  - MoeDict
-  - moesocks
-  - mohws
-  - mollie-api-haskell
-  - monadacme
-  - monad-atom
-  - monad-atom-simple
-  - monad-branch
-  - MonadCatchIO-mtl
-  - MonadCatchIO-transformers-foreign
-  - monad-choice
-  - MonadCompose
-  - monad-control-aligned
-  - monadcryptorandom
-  - monad-fork
-  - monadic-bang
-  - monadiccp
-  - monadic-recursion-schemes
-  - monad-introspect
-  - Monadius
-  - monad-levels
-  - monad-lgbt
-  - monadLib-compose
-  - monadloc-pp
-  - monad-log
-  - monadlog
-  - monad-logger-prefix # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230955752 at 2023-08-16
-  - monad-logger-syslog
-  - monad-lrs
-  - monad-mersenne-random
-  - monad-metrics # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947569 at 2023-08-16
-  - monad-mock
-  - monad-open
-  - monad-parallel-progressbar
-  - monad-param
-  - monad-persist
-  - monadplus
-  - monad-ran
-  - MonadRandomLazy
-  - monad-recorder
-  - monad-skeleton # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230956155 at 2023-08-16
-  - MonadStack
-  - monad-statevar
-  - monad-ste
-  - monad-stlike-io
-  - monad-task
-  - monad-throw-exit
-  - monad-time-effectful # failure building library in job https://hydra.nixos.org/build/225552858 at 2023-06-28
-  - monad-timing
-  - monad-tree
-  - monad-tx
-  - monad-unify
-  - monad-wrap
-  - Monatron
-  - mondo
-  - money
-  - mongodb-queue
-  - monitor
-  - monocypher # failure in compileBuildDriverPhase in job https://hydra.nixos.org/build/212811942 at 2023-03-22
-  - mono-foldable
-  - monoid
-  - monoid-absorbing
-  - monoidal-functors # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230956652 at 2023-08-16
-  - monoid-owns
-  - monoidplus
-  - monoids
-  - monoid-statistics
-  - monomer-flatpak-example #  failure  in job https://hydra.nixos.org/build/215851035 at 2023-04-17
-  - monopati
-  - monus
-  - monzo
-  - moo-nad
-  - morfette
-  - morfeusz
-  - morpheus-graphql-cli
-  - morphisms-functors
-  - morphisms-objects
-  - morte
-  - mortred
-  - mosaico-lib # dependency missing in job https://hydra.nixos.org/build/212818174 at 2023-03-22
-  - motor-reflection
-  - mount
-  - movie-monad
-  - mpppc
-  - mpris
-  - mpvguihs
-  - mqtt
-  - mqtt-hs
-  - mrifk
-  - mrm
-  - ms
-  - ms-auth # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947549 at 2023-08-16
-  - ms-azure-api # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230969734 at 2023-08-16
-  - msgpack
-  - msgpack-types
-  - ms-graph-api # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230953084 at 2023-08-16
-  - msh
-  - mssql-simple
-  - MTGBuilder
-  - mtgoxapi
-  - mtl-c
-  - mtl-evil-instances
-  - mtl-extras
-  - mtl-tf
-  - mtlx
-  - mtp
-  - mtsl
-  - MuCheck
-  - mud
-  - mudbath
-  - mulang
-  - multext-east-msd
-  - multiaddr
-  - multiarg
-  - multihash
-  - multi-instance # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230954844 at 2023-08-16
-  - multilinear
-  - multipass
-  - multipath
-  - multiplate-simplified
-  - multipool
-  - multirec
-  - Munkres # failure building library in job https://hydra.nixos.org/build/230964280 at 2023-08-16
-  - Munkres-simple
-  - muon
-  - murmur
-  - mu-schema
-  - musicScroll
-  - music-util
-  - musicxml
-  - mustache2hs
-  - mustache-haskell
-  - mutable
-  - mvc
-  - mxnet
-  - mxnet-nnvm
-  - myanimelist-export
-  - myo
-  - my-package-testing
-  - MyPrimes
-  - mysnapsession
-  - mysql-effect
-  - mysql-simple-quasi
-  - mystem
-  - my-test-docs
-  - mywork
-  - myxine-client
-  - mzv
-  - n2o-protocols
-  - NaCl
-  - nagios-plugin-ekg
-  - named-binary-tag
-  - named-lock
-  - named-servant
-  - named-sop
-  - namelist
-  - nanoAgda
-  - nano-cryptr
-  - nanocurses
-  - nano-hmac
-  - NanoID # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230948998 at 2023-08-16
-  - nano-md5
-  - nanomsg
-  - nanomsg-haskell
-  - nanoparsec
-  - nanopass
-  - NanoProlog
-  - nanovg-simple
-  - nanq
-  - naperian
-  - Naperian
-  - naqsha
-  - narc
-  - nationstates
-  - nats-client
-  - nat-sized-numbers
-  - natural
-  - NaturalSort
-  - naver-translate
-  - nbt
-  - ncurses
-  - neat
-  - needle
-  - neet
-  - nehe-tuts
-  - neil
-  - neither
-  - neither-data
-  - neko-lib
-  - neko-obfs
-  - Neks
-  - neptune-backend
-  - nero
-  - nest
-  - NestedFunctor
-  - nestedmap
-  - nested-sequence
-  - netclock
-  - netease-fm
-  - netrium
-  - NetSNMP
-  - netspec
-  - net-spider
-  - netwire-input-javascript
-  - netwire-vinylglfw-examples
-  - network-address
-  - network-api-support
-  - network-arbitrary
-  - network-attoparsec
-  - network-bitcoin
-  - network-builder
-  - network-bytestring
-  - network-carbon
-  - network-dbus
-  - networked-game
-  - network-house
-  - network-manager-tui
-  - network-messagepack-rpc-websocket
-  - network-metrics
-  - network-msg
-  - network-msgpack-rpc
-  - network-packet-linux
-  - network-server
-  - network-service
-  - network-simple-sockaddr
-  - network-simple-wss
-  - network-socket-options
-  - network-transport-amqp
-  - network-transport-inmemory
-  - network-voicetext
-  - network-wai-router
-  - neural-network-blashs
-  - neural-network-hmatrix
-  - newbase60
-  - newhope
-  - newline # dependency missing in job https://hydra.nixos.org/build/211250825 at 2023-03-13
-  - newports
-  - newsletter
-  - newt
-  - newtype-deriving
-  - newtype-th
-  - next-ref
-  - nextstep-plist
-  - NGrams
-  - ngrams-loader
-  - ngx-export-log
-  - niagra
-  - nibblestring
-  - nice-html
-  - nicovideo-translator
-  - nist-beacon
-  - nitro
-  - nix-delegate
-  - nixdu
-  - nix-eval
-  - nix-freeze-tree
-  - nixfromnpm
-  - nixpkgs-update
-  - nix-serve-ng # failure building executable 'nix-serve' in job https://hydra.nixos.org/build/231635876 at 2023-08-16
-  - nix-tools
-  - nlp-scores
-  - nm
-  - NMap
-  - nme
-  - nn
-  - nntp
-  - noether
-  - nofib-analyse
-  - nofib-analyze
-  - noise
-  - noli
-  - NonEmpty
-  - non-empty-containers
-  - nonempty-lift
-  - non-empty-zipper
-  - nonlinear-optimization # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230950369 at 2023-08-16
-  - noodle
-  - normalization-insensitive # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230969473 at 2023-08-16
-  - no-role-annots
-  - notcpp
-  - notmuch-haskell
-  - not-prelude # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947663 at 2023-08-16
-  - NoTrace
-  - notzero
-  - np-linear
-  - nptools
-  - nri-prelude
-  - ntp-control
-  - ntrip-client
-  - n-tuple
-  - nuha # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230959017 at 2023-08-16
-  - nullary
-  - null-canvas
-  - nullpipe
-  - NumberSieves
-  - NumberTheory
-  - number-wall # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947084 at 2023-08-16
-  - numeric-qq
-  - numeric-ranges
-  - numhask-free
-  - numhask-histogram
-  - numhask-prelude
-  - numhask-space # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230958208 at 2023-08-16
-  - numtype
-  - numtype-tf
-  - Nutri
-  - nvfetcher # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/231635785 at 2023-08-16
-  - nvim-hs-ghcid
-  - NXT
-  - NXTDSL
-  - nyan-interpolation-core
-  - nylas
-  - nyx-game
-  - oanda-rest-api
-  - oasis-xrd
-  - oauthenticated
-  - obd
-  - Object
-  - ObjectIO
-  - ocaml-export
-  - Octree
-  - OddWord
-  - oden-go-packages
-  - oeis2
-  - OGDF
-  - OGL
-  - ogma-language-c
-  - ogma-language-cocospec
-  - ogma-language-smv
-  - ogmarkup
-  - ohloh-hs
-  - oi
-  - okapi
-  - old-version
-  - om-actor
-  - omaketex
-  - ombra
-  - om-doh
-  - omega
-  - Omega
-  - om-elm
-  - om-fail
-  - om-http-logging
-  - omnifmt
-  - om-plugin-imports
-  - om-show
-  - om-time
-  - on-a-horse
-  - onama
-  - ONC-RPC # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230952342 at 2023-08-16
-  - on-demand-ssh-tunnel
-  - oneormore
-  - onpartitions
-  - onu-course
-  - op
-  - opaleye-classy
-  - opaleye-sqlite
-  - opaleye-trans
-  - open-adt
-  - OpenAFP
-  - openai-hs # failure building library in job https://hydra.nixos.org/build/215850908 at 2023-04-17
-  - openapi3
-  - openapi3-code-generator
-  - openapi-petstore
-  - openapi-typed
-  - opencc
-  - opench-meteo
-  - OpenCL
-  - OpenCLRaw
-  - OpenCLWrappers
-  - opencog-atomspace
-  - opencv
-  - opencv-raw
-  - opendatatable
-  - openexchangerates
-  - openflow
-  - opengles
-  - OpenGLRaw21
-  - open-haddock
-  - openid-connect
-  - open-pandoc
-  - open-signals
-  - opensoundcontrol-ht
-  - openssh-protocol
-  - opentelemetry-extra
-  - opentelemetry-http-client
-  - opentheory-char
-  - opentracing # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230951073 at 2023-08-16
-  - opentype
-  - open-typerep
-  - OpenVGRaw
-  - openweathermap
-  - Operads
-  - operate-do
-  - operational-extra
-  - opn
-  - optima
-  - optimization
-  - optional
-  - options-time
-  - optparse-applicative-simple
-  - optparse-helper
-  - optstream
-  - orc
-  - orchestrate
-  - OrchestrateDB
-  - ordered
-  - order-statistics
-  - Ordinary
-  - ordrea
-  - oref
-  - organize-imports
-  - orgmode
-  - orgmode-parse
-  - org-parser # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230971946 at 2023-08-16
-  - origami
-  - orion-hs
-  - orizentic
-  - OrPatterns
-  - ory-hydra-client # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230971097 at 2023-08-16
-  - ory-kratos # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230968815 at 2023-08-16
-  - osc
-  - oscpacking
-  - oset
-  - Oslo-Vectize
-  - OSM
-  - osm-conduit
-  - oso2pdf
-  - osx-ar
-  - ot
-  - OTP
-  - ottparse-pretty
-  - overeasy
-  - overload
-  - overloaded
-  - overloaded-records
-  - overture
-  - owoify-hs
-  - pack
-  - package-description-remote
-  - package-version # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230960762 at 2023-08-16
-  - package-vt
-  - packdeps
-  - packed
-  - packed-dawg
-  - packed-multikey-map
-  - packedstring
-  - packer-messagepack
-  - packman
-  - packstream
-  - packunused
-  - pacman-memcache
-  - padic
-  - pads-haskell
-  - pagarme
-  - pagerduty
-  - pagerduty-hs
-  - pagure-hook-receiver
-  - PandocAgda
-  - pandoc-citeproc
-  - pandoc-columns # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230956006 at 2023-08-16
-  - pandoc-csv2table # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230968874 at 2023-08-16
-  - pandoc-filter-graphviz
-  - pandoc-filter-indent
-  - pandoc-include
-  - pandoc-include-plus # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230962699 at 2023-08-16
-  - pandoc-lens
-  - pandoc-linear-table # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230968966 at 2023-08-16
-  - pandoc-link-context # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230972013 at 2023-08-16
-  - pandoc-logic-proof # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230961625 at 2023-08-16
-  - pandoc-markdown-ghci-filter
-  - pandoc-placetable
-  - pandoc-plantuml-diagrams
-  - pandoc-pyplot
-  - pandoc-select-code # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230956087 at 2023-08-16
-  - pandoc-unlit
-  - pandoc-utils
-  - pandora
-  - panfiguration
-  - pang-a-lambda
-  - pangraph
-  - pan-os-syslog
-  - panpipe
-  - pansite
-  - pantry-tmp
-  - papa-base-export
-  - papa-include
-  - papa-lens-export
-  - papa-lens-implement
-  - papa-prelude
-  - papa-prelude-core
-  - papa-prelude-lens
-  - papa-prelude-semigroupoids
-  - papa-prelude-semigroups
-  - papa-semigroupoids-implement
-  - paphragen
-  - papillon
-  - pappy
-  - paragon
-  - Parallel-Arrows-Definition
-  - parallel-tasks
-  - parameterized-data
-  - parameterized-utils
-  - paranoia
-  - parco
-  - parcom-lib
-  - par-dual
-  - pareto
-  - paripari
-  - parochial
-  - PArrows
-  - Parry
-  - parse
-  - parsec2
-  - parsec3
-  - parsec-free
-  - parsec-parsers
-  - parsec-pratt
-  - parseerror-eq
-  - parse-gcstats
-  - parsely
-  - parser241
-  - parser-combinators-tests
-  - parsergen
-  - parser-helper
-  - parsers-megaparsec
-  - parser-unbiased-choice-monad-embedding
-  - parsimony
-  - parsix # failure building library in job https://hydra.nixos.org/build/230966036 at 2023-08-16
-  - parsnip
-  - partage
-  - partial-lens
-  - partial-records
-  - partly
-  - passage
-  - passman
-  - passman-core
-  - PasswordGenerator
-  - passwords
-  - pasta
-  - pasta-curves
-  - pastis
-  - pasty
-  - patches-vector
-  - Pathfinder
-  - pathfindingcore
-  - path-formatting # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230969881 at 2023-08-16
-  - PathTree
-  - patrol
-  - patronscraper
-  - pattern-trie
-  - paynow-zw
-  - paypal-adaptive-hoops
-  - paypal-api
-  - paypal-rest-client
-  - pb
-  - pbc4hs
-  - PBKDF2
-  - pb-next
-  - pcd-loader
-  - pcf-font-embed
-  - pcgen
-  - PCLT
-  - pcre2
-  - pcre-light-extra
-  - pdfinfo
-  - pdf-slave-template
-  - pdf-toolbox-viewer
-  - pdftotext
-  - pdynload
-  - PeanoWitnesses
-  - pecoff
-  - pedestrian-dag
-  - peg
-  - peggy
-  - pencil
-  - penntreebank-megaparsec
-  - percent-encoder
-  - perceptron
-  - peregrin
-  - perf
-  - PerfectHash
-  - perfect-vector-shuffle
-  - perhaps
-  - periodic
-  - periodic-common
-  - periodic-polynomials
-  - permutation
-  - permute
-  - persist2er
-  - Persistence
-  - persistent-cereal
-  - persistent-database-url
-  - persistent-equivalence
-  - persistent-generic
-  - persistent-mongoDB
-  - persistent-odbc
-  - persistent-postgresql-streaming # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967419 at 2023-08-16
-  - persistent-ratelimit
-  - persistent-stm
-  - persistent-template-classy
-  - persistent-zookeeper
-  - persist # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230970536 at 2023-08-16
-  - persist-state
-  - persona
-  - pesca
-  - pez
-  - pgdl
-  - pg-extras
-  - pgf2
-  - pg-harness
-  - pg-harness-server
-  - pg-recorder
-  - pgsql-simple
-  - pg-store
-  - pgstream
-  - pg-transact
-  - pgvector #  failure  in job https://hydra.nixos.org/build/215851675 at 2023-04-17
-  - phasechange
-  - phaser
-  - phoityne
-  - phoityne-vscode # failure building executable 'phoityne-vscode' in job https://hydra.nixos.org/build/230958609 at 2023-08-16
-  - phone-metadata
-  - phone-numbers
-  - phone-push
-  - phonetic-languages-constaints
-  - phonetic-languages-constraints-array
-  - phonetic-languages-filters-array
-  - phonetic-languages-permutations-array
-  - phonetic-languages-phonetics-basics
-  - phonetic-languages-plus
-  - phonetic-languages-simplified-properties-array-old
-  - phonetic-languages-ukrainian-array
-  - phonetic-languages-vector
-  - phraskell
-  - Phsu
-  - phybin
-  - pia-forward
-  - pi-calculus
-  - picedit
-  - pickle
-  - picologic
-  - picoparsec
-  - pictikz
-  - pier-core
-  - piet
-  - pi-forall
-  - pig
-  - pi-hoole
-  - pi-lcd
-  - pinboard
-  - pinch-gen
-  - pinchot
-  - pine
-  - Pipe
-  - pipes-async
-  - pipes-bgzf
-  - pipes-break # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230950050 at 2023-08-16
-  - pipes-brotli
-  - pipes-category
-  - pipes-cereal
-  - pipes-core
-  - pipes-errors
-  - pipes-interleave
-  - pipes-io
-  - pipes-lines # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230965615 at 2023-08-16
-  - pipes-lzma # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230954108 at 2023-08-16
-  - pipes-network-ws # failure building library in job https://hydra.nixos.org/build/214504366 at 2023-04-07
-  - pipes-protolude
-  - pipes-rt
-  - pipes-s3
-  - pipes-shell
-  - pipes-sqlite-simple
-  - pipes-transduce
-  - pipes-vector
-  - pipes-zeromq4
-  - Piso
-  - pit
-  - pivotal-tracker
-  - pixela
-  - pixelated-avatar-generator
-  - pixel-printer
-  - pixiv
-  - pkcs10
-  - pkcs7
-  - pkggraph
-  - plailude
-  - plan-applicative
-  - planar-graph
-  - plan-b
-  - planb-token-introspection
-  - planet-mitchell-test
-  - plankton
-  - plat
-  - platinum-parsing
-  - PlayingCards
-  - playlists
-  - plist
-  - plist-buddy
-  - plivo
-  - ploterific
-  - plot-gtk
-  - plot-gtk3
-  - plot-gtk-ui
-  - plot-lab
-  - plots
-  - plow-log
-  - plugins
-  - plugins-multistage
-  - plumbers
-  - plur
-  - plural
-  - plzwrk
-  - pngload-fixed
-  - pocket
-  - podenv
-  - pointedalternative
-  - pointfree-fancy
-  - pointful
-  - pointless-haskell
-  - poke
-  - pokemon-go-protobuf-types
-  - poker-base
-  - poker-eval
-  - pokitdok
-  - polar-configfile
-  - polar-shader
-  - policeman
-  - polling-cache
-  - Pollutocracy
-  - poly-cont
-  - poly-control
-  - polydata-core
-  - polynom
-  - polynomial
-  - polysemy-check
-  - polysemy-keyed-state
-  - polysemy-kvstore # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230971431 at 2023-08-16
-  - polysemy-kvstore-jsonfile
-  - polysemy-managed # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230972262 at 2023-08-16
-  - polysemy-methodology-co-log
-  - polysemy-mocks
-  - polysemy-path
-  - polysemy-readline
-  - polysemy-req
-  - polysemy-resume
-  - polysemy-several # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230969795 at 2023-08-16
-  - polysemy-socket
-  - polysemy-video
-  - polysemy-vinyl
-  - polysemy-zoo # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230962140 at 2023-08-16
-  - poly # test failure in job https://hydra.nixos.org/build/225574715 at 2023-06-28
-  - polytypeable
-  - polyvariadic # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230956502 at 2023-08-16
-  - pomaps
-  - pomohoro
-  - ponder
-  - pong-server
-  - pontarius-xmpp-extras # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/231689607 at 2023-08-16
-  - pontarius-xpmn
-  - pool
-  - poolboy # test failure in job https://hydra.nixos.org/build/212819440 at 2023-03-26
-  - pool-conduit
-  - pop3-client
-  - popkey # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230964862 at 2023-08-16
-  - poppler
-  - porpoise
-  - portager
-  - porte
-  - PortFusion
-  - posable # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230948222 at 2023-08-16
-  - posit
-  - positron
-  - posix-acl
-  - posix-api # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230954850 at 2023-08-16
-  - posix-realtime
-  - posix-waitpid
-  - posplyu # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230957556 at 2023-08-16
-  - postcodes
-  - postgres-embedded
-  - PostgreSQL
-  - postgresql-common
-  - postgresql-config # failure building library in job https://hydra.nixos.org/build/230957015 at 2023-08-16
-  - postgresql-cube
-  - postgresql-lo-stream
-  - postgresql-ltree
-  - postgresql-named
-  - postgresql-orm
-  - postgresql-query
-  - postgresql-replicant
-  - postgresql-resilient
-  - postgresql-simple-bind
-  - postgresql-simple-migration
-  - postgresql-simple-named
-  - postgresql-simple-sop
-  - postgresql-tx-monad-logger
-  - postgresql-tx-simple
-  - postgresql-typed-lifted
-  - postgres-tmp
-  - postgrest-ws
-  - postgres-websockets
-  - postie
-  - postmark-streams
-  - postmaster
-  - potato-tool
-  - potoki-core
-  - powerdns
-  - powermate
-  - powerpc
-  - powerqueue-levelmem
-  - pprecord
-  - PPrinter
-  - pqc
-  - praglude
-  - prairie
-  - preamble
-  - precis
-  - precursor
-  - predicate-class
-  - predicate-typed
-  - prednote
-  - pregame
-  - preliminaries
-  - Prelude
-  - prelude-generalize
-  - prelude-plus
-  - preprocess-haskell
-  - preprocessor
-  - preql
-  - presburger
-  - present
-  - press
-  - pretty-compact
-  - pretty-ghci
-  - pretty-loc # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230953975 at 2023-08-16
-  - pretty-ncols
-  - prettyprinter-vty
-  - prim
-  - primal
-  - prim-array
-  - prime
-  - primes-type
-  - prim-instances
-  - PrimitiveArray
-  - PrimitiveArray-Pretty
-  - primitive-atomic
-  - primitive-checked # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230957933 at 2023-08-16
-  - primitive-convenience
-  - primitive-foreign
-  - primitive-indexed
-  - primitive-maybe
-  - primitive-primvar # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230951857 at 2023-08-16
-  - primitive-simd
-  - primitive-slice # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230949991 at 2023-08-16
-  - primitive-sort
-  - primitive-stablename
-  - prim-ref
-  - pringletons
-  - printcess
-  - print-debugger
-  - print-info
-  - prints
-  - PriorityChansConverger
-  - priority-queue
-  - pro-abstract # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230968325 at 2023-08-16
-  - probable
-  - prob-fx
-  - Probnet
-  - process-conduit
-  - processing
-  - process-leksah
-  - process-listlike
-  - processmemory
-  - process-sequential
-  - procrastinating-variable
-  - procstat
-  - product-isomorphic
-  - prof2pretty
-  - prof-flamegraph
-  - profiteur # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230962019 at 2023-08-16
-  - profunctor-monad
-  - progression
-  - progressive
-  - progress-meter
-  - progress-reporting
-  - proj4-hs-bindings
-  - project-forge
-  - projectile
-  - project-m36
-  - prolens
-  - prolog
-  - prometheus-effect
-  - prometheus # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230959996 at 2023-08-16
-  - prometheus-proc
-  - promise
-  - pronounce
-  - proof-combinators
-  - PropaFP
-  - Proper
-  - properties
-  - property-list
-  - prop-unit # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230950936 at 2023-08-16
-  - proquint #  failure  in job https://hydra.nixos.org/build/215308028 at 2023-04-11
-  - prosidy
-  - pro-source # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230963769 at 2023-08-16
-  - prosper
-  - proteaaudio # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230950003 at 2023-08-16
-  - protocol
-  - protocol-buffers
-  - protocol-buffers-fork
-  - proto-lens-arbitrary # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230953387 at 2023-08-16
-  - proto-lens-combinators
-  - protolude-lifted
-  - proton-haskell
-  - prototype
-  - prove-everywhere-server
-  - provenience
-  - proxy-kindness
-  - proxy-mapping
-  - prune-juice
-  - psc-ide
-  - pseudo-trie
-  - psi
-  - pstemmer # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230955354 at 2023-08-16
-  - psx
-  - PTQ
-  - pub
-  - publicsuffix
-  - publicsuffixlistcreate
-  - publish
-  - pubnub
-  - pugixml
-  - pugs-DrIFT
-  - pugs-HsSyck
-  - PUH-Project
-  - Pup-Events-Server
-  - pure-io
-  - pure-priority-queue
-  - purescript-ast
-  - purescript-cst
-  - purescript-tsd-gen
-  - pure-zlib
-  - purview # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230961366 at 2023-08-16
-  - pushbullet
-  - pushbullet-types
-  - pusher-haskell
-  - pusher-ws
-  - pushme
-  - push-notifications
-  - putlenses
-  - puzzle-draw
-  - pvector # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230952685 at 2023-08-16
-  - pyffi
-  - pyfi
-  - python-pickle
-  - q4c12-twofinger
-  - qc-oi-testgenerator
-  - qd
-  - qed
-  - qhull-simple
-  - qif
-  - QIO
-  - QLearn
-  - qlinear
-  - qrcode
-  - qr-imager
-  - qsem
-  - qt
-  - QuadEdge
-  - QuadTree
-  - qualified-imports-plugin
-  - quandl-api
-  - quantification
-  - quantum-arrow
-  - quarantimer
-  - qudb # failure building executable 'qudb' in job https://hydra.nixos.org/build/211250260 at 2023-03-13
-  - quenya-verb
-  - querystring-pickle
-  - questioner
-  - quibble-core
-  - quic # failure building library in job https://hydra.nixos.org/build/230948542 at 2023-08-16
-  - QuickAnnotate
-  - quickbooks
-  - quickcheck-arbitrary-template
-  - quickcheck-combinators # failure building library in job https://hydra.nixos.org/build/230952645 at 2023-08-16
-  - quickcheck-dynamic # failure building library in job https://hydra.nixos.org/build/230963873 at 2023-08-16
-  - quickcheck-groups
-  - quickcheck-lockstep # dependency missing in job https://hydra.nixos.org/build/210845914 at 2023-02-28
-  - quickcheck-monoid-subclasses
-  - quickcheck-property-comb
-  - quickcheck-property-monad
-  - quickcheck-rematch
-  - quickcheck-report
-  - QuickCheckVariant
-  - quickcheck-webdriver
-  - quickjs-hs
-  - QuickPlot
-  - quickpull
-  - quick-schema
-  - quickset
-  - quickson
-  - Quickson
-  - quickspec
-  - quickwebapp
-  - quipper-core
-  - quiver
-  - quokka
-  - quoridor-hs
-  - RabbitMQ
-  - rad
-  - radian
-  - radium
-  - radium-formula-parser
-  - radix
-  - radix-tree
-  - rados-haskell
-  - raft
-  - rakhana
-  - rakuten
-  - ralist
-  - raml
-  - rando
-  - random-access-list
-  - random-cycle # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230957192 at 2023-08-16
-  - random-derive
-  - RandomDotOrg
-  - random-eff
-  - Randometer
-  - random-source
-  - random-stream
-  - random-string
-  - rand-vars
-  - Range
-  - rangemin
-  - rangeset
-  - rank1dynamic
-  - rank-product
-  - rapid # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230958426 at 2023-08-16
-  - rapid-term
-  - Rasenschach
-  - rating-chgk-info
-  - rational-list
-  - rattle
-  - rattletrap
-  - raven-haskell-scotty
-  - raylib-imgui
-  - raz
-  - rbst
-  - rclient
-  - rdf4h # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230965619 at 2023-08-16
-  - react-flux
-  - react-haskell
-  - reaction-logic
-  - reactive-bacon
-  - reactive-banana-automation
-  - reactive-banana-bunch
-  - reactive-banana-gi-gtk
-  - reactive-banana-sdl2
-  - reactive-banana-threepenny
-  - reactive-thread
-  - react-tutorial-haskell-server
-  - readability
-  - read-bounded
-  - read-ctags
-  - reader-soup
-  - read-io
-  - readline-statevar
-  - readme-lhs
-  - readshp
-  - really-simple-xml-parser
-  - reanimate-svg
-  - reasonable-lens
-  - reason-export
-  - record
-  - record-encode
-  - records
-  - records-sop
-  - record-wrangler
-  - recover-rtti
-  - rec-smallarray # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230971840 at 2023-08-16
-  - recursors
-  - red-black-record
-  - redis-glob
-  - redis-hs
-  - redis-simple
-  - Redmine
-  - reedsolomon
-  - reenact
-  - ref
-  - Ref
-  - refcount
-  - Referees
-  - references
-  - ref-extras
-  - refined-http-api-data
-  - refined-with
-  - reflection-extras
-  - reflex-backend-socket
-  - reflex-basic-host
-  - reflex-dom-ace
-  - reflex-dom-contrib
-  - reflex-dom-fragment-shader-canvas
-  - reflex-dom-helpers
-  - reflex-dom-pandoc # failure building library in job https://hydra.nixos.org/build/230953122 at 2023-08-16
-  - reflex-dom-retractable
-  - reflex-dom-svg
-  - reflex-external-ref
-  - reflex-fsnotify
-  - reflex-gi-gtk
-  - reflex-gloss
-  - reflex-jsx
-  - reflex-libtelnet
-  - reflex-orphans
-  - reflex-sdl2
-  - reflex-test-host
-  - reflex-transformers
-  - reflex-vty
-  - ref-mtl
-  - reformat
-  - reform-hamlet # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230965992 at 2023-08-16
-  - reform-hsp # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230957580 at 2023-08-16
-  - reform-lucid # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230968858 at 2023-08-16
-  - refresht
-  - refty
-  - refurb
-  - reg-alloc
-  - regex-dfa
-  - regexdot
-  - regex-generator
-  - regex-parsec
-  - regex-posix-unittest
-  - regexpr-symbolic
-  - regexqq
-  - regex-tdfa-pipes
-  - regex-tdfa-quasiquoter
-  - regex-tdfa-rc
-  - regex-tdfa-text
-  - regex-tdfa-unittest
-  - regex-tdfa-utf8
-  - regex-tre
-  - regex-type
-  - regions
-  - register-machine-typelevel
-  - registry
-  - regress
-  - regular
-  - rehoo
-  - rei
-  - reified-records
-  - reify
-  - relacion
-  - relation
-  - releaser # failure building library in job https://hydra.nixos.org/build/230963399 at 2023-08-16
-  - relevant-time
-  - reload
-  - remark
-  - remarks
-  - remote
-  - remote-debugger
-  - remote-monad
-  - reorderable
-  - reorder-expression # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230952702 at 2023-08-16
-  - repa-bytestring
-  - repa-devil
-  - repa-eval
-  - repa-examples
-  - repa # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230959980 at 2023-08-16
-  - repa-linear-algebra
-  - repa-scalar
-  - repa-series
-  - repl
-  - RepLib
-  - replica
-  - ReplicateEffects
-  - repl-toolkit
-  - repo-based-blog
-  - representable-functors
-  - reprinter # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230970043 at 2023-08-16
-  - reproject
-  - req-conduit
-  - request
-  - request-monad
-  - require
-  - req-url-extra
-  - rescue
-  - reservoir
-  - resolve
-  - resolve-trivial-conflicts
-  - resource-effect
-  - resource-embed
-  - resource-pool-monad # failure building library in job https://hydra.nixos.org/build/230949096 at 2023-08-16
-  - resourcet-pool # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230950524 at 2023-08-16
-  - respond
-  - restartable
-  - restyle
-  - resumable-exceptions
-  - rethinkdb
-  - rethinkdb-client-driver
-  - retryer
-  - reverse-geocoding
-  - reverse-list
-  - reversi
-  - ReviewBoard
-  - rewrite-inspector
-  - rfc
-  - rfc-prelude
-  - r-glpk-phonetic-languages-ukrainian-durations
-  - rhbzquery
-  - rhine
-  - riak
-  - riak-protobuf-lens
-  - ribbit
-  - rib-core
-  - RichConditional
-  - ridley
-  - riemann
-  - riff
-  - rigel-viz
-  - ring-buffer
-  - ring-buffers
-  - riscv-isa
-  - rison
-  - Ritt-Wu
-  - rivers
-  - rivet-migration
-  - rivet-simple-deploy
-  - RJson
-  - Rlang-QQ
-  - rle # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230950686 at 2023-08-16
-  - rlglue
-  - RLP
-  - rl-satton
-  - robin
-  - robots-txt
-  - roc-cluster
-  - roc-id
-  - roguestar
-  - roku-api
-  - rollbar-client
-  - rollbar-hs
-  - roller
-  - roman-numerals
-  - ron
-  - rope
-  - rosebud
-  - rose-trees
-  - rosmsg
-  - rospkg # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/231689673 at 2023-08-16
-  - rosso
-  - rotating-log
-  - rounded
-  - rounding
-  - roundtrip-aeson
-  - rowrecord
-  - R-pandoc
-  - rpc-framework
-  - rpm
-  - rpmbuild-order
-  - rpmostree-update # failure building executable 'rpmostree-update' in job https://hydra.nixos.org/build/230963857 at 2023-08-16
-  - rrule
-  - rspp
-  - rss2irc
-  - rstream
-  - RtMidi
-  - rtnetlink
-  - rtorrent-rpc
-  - rtorrent-state
-  - rts-loader
-  - rubberband # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230972230 at 2023-08-16
-  - ruby-marshal
-  - ruby-qq
-  - ruff
-  - ruin
-  - runhs
-  - runmany
-  - runtime-instances
-  - rustls
-  - rws
-  - RxHaskell
-  - rzk # failure in compileBuildDriverPhase in job https://hydra.nixos.org/build/217574605 at 2023-04-29
-  - rz-pipe
-  - SableCC2Hs
-  - safe-buffer-monad
-  - safe-coerce
-  - safe-coloured-text-gen # test failure in job https://hydra.nixos.org/build/225565471 at 2023-06-28
-  - safe-coloured-text-layout # test failure in job https://hydra.nixos.org/build/225562935 at 2023-06-28
-  - safecopy-migrate
-  - safecopy-store
-  - safe-freeze
-  - safe-globals
-  - safeint
-  - safeio
-  - safe-lazy-io
-  - safe-length
-  - safe-money-xmlbf
-  - safepath
-  - safe-printf
-  - saferoute
-  - safe-tensor
-  - safe-wild-cards
-  - sajson
-  - sakuraio-platform
-  - salak
-  - Salsa
-  - salvia-protocol
-  - sandlib
-  - sandman
-  - sarasvati
-  - sasha # dependency missing in job https://hydra.nixos.org/build/211237944 at 2023-03-13
-  - sat
-  - satchmo-backends
-  - satchmo-minisat
-  - saturn # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230961398 at 2023-08-16
-  - Saturnin
-  - satyros
-  - savage
-  - sax
-  - sbv
-  - sc2-proto
-  - scale
-  - scaleimage
-  - scalendar
-  - s-cargot-letbind
-  - scat # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230970581 at 2023-08-16
-  - scc
-  - schedevr
-  - schedule-planner
-  - schedyield
-  - schemas
-  - scholdoc-types
-  - scidb-hquery
-  - sci-ratio
-  - scons2dot
-  - scottish
-  - scotty-binding-play
-  - scotty-blaze
-  - scotty-format
-  - scotty-params-parser
-  - scotty-resource
-  - scotty-rest
-  - scotty-session
-  - scotty-tls
-  - scotty-view
-  - scrapbook-core
-  - scrape-changes
-  - ScratchFs
-  - script-monad
-  - scrobble
-  - scroll-list
-  - scrz
-  - scythe
-  - scyther-proof
-  - sde-solver
-  - sdl2-cairo-image
-  - sdl2-compositor
-  - sdl2-fps
-  - sdl2-gfx # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947327 at 2023-08-16
-  - sdl2-image # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230965350 at 2023-08-16
-  - sdl2-mixer # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230969457 at 2023-08-16
-  - sdl2-ttf # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230963820 at 2023-08-16
-  - sdp
-  - sdr
-  - seacat
-  - seakale
-  - sec
-  - secdh
-  - seclib
-  - second-transfer
-  - secp256k1
-  - secp256k1-legacy
-  - secret-santa
-  - SecureHash-SHA3
-  - secure-memory
-  - secure-sockets
-  - secureUDP
-  - SegmentTree
-  - selda # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230970840 at 2023-08-16
-  - selda-postgresql
-  - selectors
-  - selenium
-  - selinux
-  - Semantique
-  - semaphore-compat # dependency missing in job https://hydra.nixos.org/build/214509429 at 2023-04-07
-  - semdoc
-  - semialign-extras
-  - semialign-indexed # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230950953 at 2023-08-16
-  - semialign-optics # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230950916 at 2023-08-16
-  - semibounded-lattices
-  - Semigroup
-  - semigroupoids-syntax
-  - semigroups-actions
-  - semilattices
-  - sendgrid-haskell
-  - sendgrid-v3
-  - sensu-run
-  - sentry
-  - seonbi
-  - separated
-  - SeqAlign
-  - sequent-core
-  - sequential-index
-  - serf # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230970238 at 2023-08-16
-  - serialize-instances
-  - serialport # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230962754 at 2023-08-16
-  - serokell-util
-  - servant-aeson-specs
-  - servant-auth-cookie
-  - servant-auth-hmac
-  - servant-auth-server # failure building test suite 'spec' in job https://hydra.nixos.org/build/230968407 at 2023-08-16
-  - servant-avro
-  - servant-benchmark
-  - servant-client-js
-  - servant-combinators # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230950496 at 2023-08-16
-  - servant-db
-  - servant-dhall
-  - servant-docs-simple
-  - servant-elm
-  - servant-errors
-  - servant-event-stream
-  - servant-foreign # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967834 at 2023-08-16
-  - servant-gdp
-  - servant-generate
-  - servant-generic
-  - servant-github
-  - servant-github-webhook
-  - servant-hmac-auth
-  - servant-htmx
-  - servant-http2-client
-  - servant-http-streams # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230956465 at 2023-08-16
-  - servant-iCalendar
-  - servant-jquery
-  - servant-JuicyPixels # failure building library in job https://hydra.nixos.org/build/230963492 at 2023-08-16
-  - servant-kotlin
-  - servant-mock
-  - servant-namedargs
-  - servant-nix
-  - servant-pandoc
-  - servant-pool
-  - servant-proto-lens
-  - servant-purescript
-  - servant-py
-  - servant-quickcheck
-  - servant-reflex
-  - servant-router
-  - servant-scotty
-  - servant-seo
-  - servant-serf
-  - servant-smsc-ru
-  - servant-stache
-  - servant-static-th
-  - servant-streaming
-  - servant-streamly
-  - servant-tracing
-  - servant-typed-error
-  - servant-wasm
-  - servant-xml
-  - servant-yaml
-  - servant-zeppelin
-  - server-generic
-  - serversession-backend-acid-state
-  - serversession-backend-persistent
-  - services
-  - serviette
-  - ses-html-snaplet
-  - SessionLogger
-  - sessions
-  - sessiontypes
-  - setgame
-  - set-of
-  - setoid
-  - setters
-  - set-with
-  - sexp
-  - sexpr-parser # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967001 at 2023-08-16
-  - sext
-  - SFML
-  - sfml-audio
-  - sfmt
-  - SG
-  - sgd
-  - SGplus
-  - sh2md
-  - shade
-  - shadower
-  - shake-cabal-build
-  - shake-dhall
-  - shake-extras
-  - shake-minify
-  - shake-path
-  - shake-persist
-  - shakespeare-babel
-  - shakespeare-sass
-  - shared-buffer
-  - shared-fields
-  - sha-streams
-  - she
-  - Shellac
-  - shellify # failure building test suite 'haskelltest-test' in job https://hydra.nixos.org/build/230963414 at 2023-08-16
-  - shellish
-  - shellmate
-  - shellmet # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230972264 at 2023-08-16
-  - shell-pipe
-  - shikensu # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230951632 at 2023-08-16
-  - shimmer
-  - shine-examples
-  - shivers-cfg
-  - shoap
-  - shopify
-  - shortbytestring
-  - shortcut-links
-  - shorten-strings
-  - short-vec
-  - show-prettyprint
-  - show-type # failure building library in job https://hydra.nixos.org/build/230946625 at 2023-08-16
-  - Shpadoinkle-console
-  - Shpadoinkle-debug
-  - Shpadoinkle-isreal
-  - shwifty
-  - sifflet
-  - sifflet-lib
-  - sigmacord # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230948674 at 2023-08-16
-  - signable
-  - signable-haskell-protoc
-  - signed-multiset
-  - significant-figures # test failure in job https://hydra.nixos.org/build/225555677 at 2023-06-28
-  - simd
-  - simfin
-  - simple-actors
-  - simpleargs
-  - simple-atom
-  - simple-bluetooth
-  - simple-conduit
-  - simple-config
-  - simpleconfig
-  - simple-css
-  - simple-download
-  - simple-effects # failure building library in job https://hydra.nixos.org/build/230951952 at 2023-08-16
-  - simple-eval
-  - simple-form
-  - simple-genetic-algorithm
-  - SimpleH
-  - simple-index
-  - simpleirc
-  - simple-log
-  - simple-logging
-  - simple-media-timestamp-formatting # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230946985 at 2023-08-16
-  - simple-money
-  - simple-neural-networks
-  - simplenote
-  - simple-parser # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230951616 at 2023-08-16
-  - simple-pipe
-  - simpleprelude
-  - simple-rope
-  - simple-server
-  - simplesmtpclient
-  - simple-sql-parser
-  - simple-stacked-vm
-  - simplest-sqlite
-  - simple-tabular
-  - simple-tar
-  - simple-templates
-  - simple-ui
-  - simple-units
-  - simplexmq
-  - simple-zipper
-  - simplistic-generics
-  - singlethongs
-  - singleton-dict
-  - singleton-typelits
-  - single-tuple
-  - singnal
-  - singular-factory
-  - sink
-  - sint # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230966755 at 2023-08-16
-  - siphash
-  - sitepipe
-  - sixfiguregroup
-  - sized-grid
-  - sized-types
-  - sized-vector
-  - sizes
-  - sjsp
-  - SJW
-  - skeletal-set
-  - skell
-  - skemmtun
-  - skews
-  - skulk
-  - skylighting-extensions
-  - skylighting-lucid
-  - skype4hs
-  - slack
-  - slack-api
-  - slack-notify-haskell
-  - slack-verify
-  - sliceofpy
-  - slidemews
-  - Slides
-  - slim
-  - sloane
-  - sloth
-  - slot-lambda
-  - slug
-  - slugger
-  - slugify
-  - smallarray
-  - small-bytearray-builder
-  - smallcaps
-  - smallcheck-kind-generics
-  - smallcheck-series
-  - smallpt-hs
-  - smap
-  - smartcheck
-  - smartconstructor
-  - smartGroup
-  - smash
-  - smawk # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230963766 at 2023-08-16
-  - sme
-  - smerdyakov
-  - smiles
-  - smith # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230967626 at 2023-08-16
-  - SmithNormalForm # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230970411 at 2023-08-16
-  - smoothie
-  - smsaero
-  - smt-lib
-  - SmtLib
-  - smtlib2
-  - smtlib-backends
-  - SMTPClient
-  - smtp-mail-ng
-  - smtps-gmail
-  - smuggler
-  - smuggler2
-  - snack
-  - snake
-  - snake-game
-  - snap-accept
-  - snap-auth-cli
-  - snap-blaze-clay
-  - snap-configuration-utilities
-  - snap-error-collector
-  - snap-language
-  - snaplet-acid-state
-  - snaplet-amqp
-  - snaplet-auth-acid
-  - snaplet-coffee
-  - snaplet-css-min
-  - snaplet-environments
-  - snaplet-hslogger
-  - snaplet-influxdb
-  - snaplet-mandrill
-  - snaplet-mongodb-minimalistic
-  - snaplet-mysql-simple
-  - snaplet-postgresql-simple
-  - snaplet-purescript # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230971794 at 2023-08-16
-  - snaplet-recaptcha
-  - snaplet-redis
-  - snaplet-sass
-  - snaplet-scoped-session
-  - snaplet-ses-html
-  - snaplet-sqlite-simple-jwt-auth
-  - snaplet-typed-sessions
-  - snap-loader-dynamic
-  - snap-predicates
-  - snappy-conduit
-  - snappy-iteratee
-  - snap-routes
-  - snap-stream
-  - snap-testing
-  - snap-utils
-  - snap-web-routes
-  - SNet
-  - snipcheck
-  - snorkels
-  - snowchecked
-  - snowtify
-  - socket-activation
-  - socketed
-  - socketio
-  - sockets
-  - sockets-and-pipes
-  - socket-sctp
-  - socket-unix
-  - sodium
-  - soegtk
-  - softfloat-hs
-  - solar
-  - solga
-  - som # test failure in job https://hydra.nixos.org/build/216744749 at 2023-04-20
-  - Sonnex
-  - sorted
-  - sorting
-  - sorty
-  - souffle-haskell
-  - source-constraints
-  - sousit
-  - soyuz
-  - SpaceInvaders # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230963310 at 2023-08-16
-  - spacepart
-  - spade # dependency missing in job https://hydra.nixos.org/build/225563353 at 2023-06-28
-  - spake2
-  - spanout
-  - spars
-  - sparse
-  - sparsecheck
-  - sparse-lin-alg
-  - sparse-linear-algebra # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230966041 at 2023-08-16
-  - sparse-merkle-trees # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230948641 at 2023-08-16
-  - sparse-tensor
-  - spdx # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230970358 at 2023-08-16
-  - special-functors
-  - special-keys
-  - spectacle
-  - speculation
-  - sphinx
-  - sphinxesc
-  - Spintax # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230964258 at 2023-08-16
-  - spiros
-  - spir-v
-  - splay
-  - splaytree
-  - splint
-  - split-morphism
-  - splitter
-  - Spock-api-ghcjs
-  - Spock-auth
-  - spoonutil
-  - spotify # test failure in job https://hydra.nixos.org/build/230953177 at 2023-08-16
-  - spoty
-  - Sprig
-  - spritz
-  - spsa
-  - spy
-  - sqids # test failure in job https://hydra.nixos.org/build/230970531 at 2023-08-16
-  - sqlcipher
-  - sqlite
-  - sqlite-easy
-  - sqlite-simple-errors
-  - sql-simple
-  - sqlvalue-list
-  - srcinst
-  - srt-attoparsec # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230966533 at 2023-08-16
-  - srt-dhall
-  - sscan
-  - ssh
-  - ssh-tunnel
-  - SSTG
-  - st2 # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230965507 at 2023-08-16
-  - stable-heap
-  - stable-maps
-  - stable-marriage
-  - stable-memo
-  - stack2cabal
-  - stack2nix
-  - stackage-cli
-  - stackage-metadata
-  - stackage-to-hackage
-  - stackage-types
-  - stack-bump
-  - stackcollapse-ghc
-  - stack-fix
-  - stack-lib
-  - stack-prism
-  - stack-run
-  - stack-type
-  - stack-wrapper
-  - staged-gg
-  - standalone-derive-topdown
-  - standalone-haddock
-  - starling
-  - starter # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947332 at 2023-08-16
-  - stash
-  - Stasis
-  - state
-  - state-bag
-  - state-plus
-  - state-record
-  - static
-  - static-canvas
-  - static-ls #  failure  in job https://hydra.nixos.org/build/221848657 at 2023-05-30
-  - static-tensor
-  - statistics-dirichlet
-  - statistics-fusion
-  - statistics-hypergeometric-genvar
-  - statistics-skinny #  failure  in job https://hydra.nixos.org/build/225576019 at 2023-06-28
-  - stats
-  - statsd
-  - statvfs
-  - staversion
-  - stb-image-redux
-  - stc-lang
-  - stdata
-  - stdf
-  - stdio
-  - steambrowser
-  - stego-uuid
-  - stemmer
-  - stemmer-german
-  - stepwise
-  - stgi
-  - STL
-  - stm-chunked-queues
-  - stm-firehose
-  - stm-incremental
-  - stm-promise
-  - stm-queue
-  - stm-stats
-  - stochastic
-  - Stomp
-  - stooq-api
-  - storable
-  - storable-offset # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230956457 at 2023-08-16
-  - storable-static-array
-  - stp
-  - str
-  - Strafunski-ATermLib
-  - Strafunski-StrategyLib
-  - StrappedTemplates
-  - StrategyLib
-  - stratux-types
-  - stream
-  - streamdeck
-  - streamed # dependency missing in job https://hydra.nixos.org/build/217576821 at 2023-04-29
-  - stream-fusion
-  - streaming-benchmarks
-  - streaming-brotli
-  - streaming-cassava
-  - streaming-concurrency
-  - streaming-conduit
-  - streaming-events
-  - streaming-lzma
-  - streaming-osm
-  - streaming-pcap
-  - streaming-png
-  - streaming-postgresql-simple
-  - streaming-sort
-  - streaming-with # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230956271 at 2023-08-16
-  - streamly-binary
-  - streamly-cassava
-  - streamly-examples
-  - streamly-fsnotify # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230946720 at 2023-08-16
-  - streamly-lz4
-  - streamly-posix # failure building library in job https://hydra.nixos.org/build/230968738 at 2023-08-16
-  - streamly-process
-  - stream-monad
-  - streamproc
-  - strelka-core
-  - StrictBench
-  - StrictCheck
-  - strict-containers
-  - strict-ghc-plugin
-  - strictly
-  - strict-tuple-lens
-  - string-class # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230948470 at 2023-08-16
-  - string-conv-tests
-  - string-fromto
-  - string-isos
-  - stringlike
-  - string-quote
-  - strings
-  - stringtable-atom
-  - stripe
-  - stripe-core
-  - stripe-hs
-  - strong-path
-  - structural-traversal
-  - structured-haskell-mode
-  - structures
-  - stt
-  - stunclient
-  - stylish-cabal
-  - stylist # failure building test suite 'test-stylist' in job https://hydra.nixos.org/build/230952543 at 2023-08-16
-  - stylized
-  - subG-instances
-  - subleq-toolchain
-  - submark
-  - subsample
-  - sub-state
-  - subwordgraph
-  - suffix-array
-  - suffixarray
-  - SuffixStructures
-  - sugar
-  - sugarhaskell
-  - suitable
-  - summer
-  - summoner
-  - sump
-  - sum-type-boilerplate
-  - sunlight
-  - sunroof-compiler
-  - superbubbles
-  - superevent
-  - supermonad
-  - supero
-  - superrecord
-  - super-user-spark
-  - supervisor
-  - supervisors
-  - supplemented
-  - surjective
-  - sv2v
-  - sv-core
-  - SVD2HS
-  - svfactor
-  - svg-builder-fork
-  - svg-icons
-  - SvgIcons
-  - svgsym
-  - svgutils
-  - svm-light-utils
-  - svm-simple
-  - svndump
-  - swagger
-  - swagger-petstore
-  - swagger-test
-  - swearjure
-  - swf
-  - swift-lda
-  - swiss
-  - swiss-ephemeris
-  - sws
-  - syb-extras
-  - syb-with-class # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230970380 at 2023-08-16
-  - syb-with-class-instances-text
-  - sydtest-hedis # test failure in job https://hydra.nixos.org/build/225562212 at 2023-06-28
-  - sydtest-hspec # failure building library in job https://hydra.nixos.org/build/230968205 at 2023-08-16
-  - sydtest-mongo #  failure  in job https://hydra.nixos.org/build/225574398 at 2023-06-28
-  - sydtest-persistent-postgresql # test failure in job https://hydra.nixos.org/build/225560820 at 2023-06-28
-  - sydtest-persistent-sqlite # test failure in job https://hydra.nixos.org/build/225566898 at 2023-06-28
-  - sydtest-rabbitmq # test failure in job https://hydra.nixos.org/build/225569272 at 2023-06-28
-  - sydtest-webdriver # test failure in job https://hydra.nixos.org/build/225552802 at 2023-06-28
-  - syfco
-  - symantic
-  - symantic-cli
-  - symantic-http-client
-  - symantic-parser
-  - symantic-xml
-  - symbolic-link
-  - symengine
-  - symengine-hs
-  - sync
-  - sync-mht
-  - syntactic # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230958352 at 2023-08-16
-  - syntax-trees
-  - syntax-trees-fork-bairyn
-  - synthesizer # dependency missing in job https://hydra.nixos.org/build/217577245 at 2023-04-29
-  - Sysmon
-  - system-canonicalpath
-  - system-command
-  - system-extra
-  - system-inotify
-  - system-lifted
-  - system-linux-proc
-  - system-locale
-  - system-random-effect
-  - system-test
-  - t3-server
-  - table
-  - tables
-  - Tables
-  - tablestorage
-  - table-tennis
-  - Tablify
-  - tabloid
-  - tabs
-  - tag-bits
-  - tagged-exception-core
-  - tagged-timers
-  - taggy-lens
-  - taglib-api
-  - tagsoup-ht
-  - tagsoup-megaparsec
-  - tagsoup-parsec
-  - tagsoup-selection
-  - tagtree # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230961266 at 2023-08-16
-  - tai
-  - tai64
-  - tailwind # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/231536572 at 2023-08-16
-  - tak
-  - takahashi
-  - Takusen
-  - takusen-oracle
-  - tamarin-prover-utils
-  - Tape
-  - tapioca
-  - TaskMonad
-  - tasty-auto
-  - tasty-autocollect
-  - tasty-fail-fast
-  - tasty-grading-system
-  - tasty-hedgehog-coverage
-  - tasty-json
-  - tasty-mgolden
-  - tasty-papi # test failure in job https://hydra.nixos.org/build/216756583 at 2023-04-20
-  - tasty-stats
-  - tasty-test-reporter # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230958587 at 2023-08-16
-  - tasty-test-vector
-  - TastyTLT
-  - TBC
-  - TBit
-  - TCache
-  - tcod-haskell
-  - tcp
-  - tcp-streams-openssl
-  - tdd-util
-  - tdigest-Chart
-  - tdoc
-  - tds
-  - teams
-  - technique
-  - teeth
-  - tehepero
-  - telega
-  - telegram
-  - telegram-api
-  - telegram-types
-  - telegraph
-  - teleport
-  - teleshell
-  - tellbot
-  - template-default
-  - template # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230971653 at 2023-08-16
-  - template-haskell-optics # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230946806 at 2023-08-16
-  - template-haskell-util
-  - template-hsml
-  - templateify
-  - templatepg
-  - template-toolkit
-  - template-yj
-  - tempodb
-  - tempus
-  - ten
-  - tensor
-  - tensor-safe
-  - termbox-bindings
-  - termination-combinators
-  - termplot
-  - terntup
-  - tersmu
-  - tesla
-  - testCom
-  - testcontainers
-  - TestExplode # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230964283 at 2023-08-16
-  - test-fixture
-  - test-framework-doctest
-  - test-framework-quickcheck
-  - test-framework-skip
-  - test-framework-testing-feat
-  - test-framework-th-prime
-  - test-lib
-  - testloop
-  - testpack
-  - testpattern
-  - test-pkg
-  - testPkg
-  - testrunner
-  - test-shouldbe
-  - tex2txt
-  - texbuilder
-  - tex-join-bib # failure building library in job https://hydra.nixos.org/build/230946498 at 2023-08-16
-  - text1
-  - text-all
-  - text-and-plots
-  - text-ascii
-  - text-builder-linear
-  - text-compression # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230952349 at 2023-08-16
-  - text-containers
-  - text-display
-  - text-format-heavy
-  - text-generic-pretty
-  - text-icu-normalized
-  - text-icu-translit
-  - text-lens
-  - text-markup
-  - text-normal
-  - textocat-api
-  - text-offset
-  - text-position
-  - text-register-machine
-  - text-stream-decode # failure building library in job https://hydra.nixos.org/build/230960721 at 2023-08-16
-  - text-trie
-  - textual
-  - text-utf7
-  - text-utf8
-  - text-xml-qq
-  - text-zipper-monad
-  - tfp-th
-  - tftp
-  - tga
-  - thank-you-stars
-  - th-build
-  - th-dict-discovery
-  - THEff
-  - themoviedb # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230961888 at 2023-08-16
-  - thentos-cookie-session
-  - Theora
-  - theoremquest
-  - th-fold
-  - th-format
-  - thih
-  - Thingie
-  - th-inline-io-action
-  - th-instance-reification
-  - th-kinds
-  - th-kinds-fork
-  - thock
-  - thorn
-  - th-pprint
-  - threadmanager
-  - thread-supervisor # test failure in job https://hydra.nixos.org/build/214156434 at 2023-03-29
-  - threepenny-editors
-  - threepenny-gui-contextmenu
-  - threepenny-gui-flexbox
-  - thrift
-  - Thrift
-  - throttled-io-loop
-  - throttle-io-stream
-  - through-text # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230972325 at 2023-08-16
-  - throwable-exceptions
-  - th-sccs
-  - th-tc
-  - th-to-exp
-  - th-traced
-  - thumbnail
-  - thumbnail-plus
-  - tianbar
-  - ticket-management
-  - TicTacToe
-  - tictactoe3d
-  - tidal-midi
-  - tidal-serial
-  - tidal-vis
-  - tie-knot
-  - tiempo
-  - tiger # failure in compileBuildDriverPhase in job https://hydra.nixos.org/build/225568410 at 2023-06-28
-  - TigerHash
-  - tightrope
-  - tikzsd
-  - timecalc
-  - time-extras
-  - time-machine
-  - timemap
-  - timeout
-  - timeout-with-results
-  - timeparsers
-  - TimePiece
-  - timeplot
-  - time-qq
-  - time-quote
-  - time-recurrence
-  - time-series
-  - timeseries # dependency missing in job https://hydra.nixos.org/build/217565262 at 2023-04-29
-  - time-series-lib
-  - timeutils
-  - time-w3c
-  - timezone-detect
-  - tinyid
-  - TinyLaunchbury
-  - tinylog
-  - tinyMesh
-  - tiny-scheduler
-  - tinytemplate
-  - TinyURL
-  - tinyXml
-  - tiphys
-  - titan-debug-yampa
-  - titan-record-yampa
-  - Titim
-  - tkhs
-  - tkyprof
-  - tls-debug # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230964438 at 2023-08-16
-  - TLT # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947319 at 2023-08-16
-  - tmp-proc-example
-  - tofromxml
-  - to-haskell
-  - toilet # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230965271 at 2023-08-16
-  - token-bucket
-  - tokenify
-  - tokenizer
-  - tokenizer-streaming
-  - token-limiter
-  - token-search
-  - tokstyle
-  - tokyocabinet-haskell
-  - tokyotyrant-haskell
-  - toml
-  - tonalude
-  - tonaparser
-  - toodles
-  - Top
-  - topkata
-  - torch
-  - TORCS
-  - to-string-class
-  - TotalMap
-  - total-maps
-  - touched
-  - Tournament
-  - toxiproxy-haskell
-  - tptp
-  - trace
-  - trace-call
-  - traced
-  - trace-function-call
-  - tracetree
-  - tracked-files
-  - tracker
-  - trackit
-  - traction
-  - tracy
-  - traildb
-  - transactional-events
-  - TransformeR
-  - transformers-bifunctors
-  - transformers-compose
-  - transformers-lift
-  - transformers-runnable
-  - TransformersStepByStep
-  - trans-fx-core
-  - transient
-  - translatable-intset
-  - translate
-  - traverse-code # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230968928 at 2023-08-16
-  - travis
-  - travis-meta-yaml
-  - trawl
-  - traypoweroff
-  - treap
-  - treemap
-  - treemap-html
-  - tree-monad
-  - tree-render-text
-  - TreeStructures
-  - tree-traversals
-  - t-regex
-  - tremulous-query
-  - TrendGraph
-  - trhsx
-  - trial-tomland
-  - tries
-  - trigger
-  - trim
-  - tripLL
-  - trivia
-  - tropical
-  - tropical-geometry
-  - trust-chain # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230956012 at 2023-08-16
-  - tsession
-  - tslib
-  - tsparse
-  - tsp-viz
-  - tsuntsun
-  - tsvsql
-  - ttask
-  - ttl-hashtables
-  - ttn-client
-  - tttool
-  - tubes
-  - tuntap
-  - tuple-append
-  - tuple-gen
-  - tuple-hlist
-  - tupleinstances
-  - tuple-lenses
-  - tuple-morph
-  - turing-machines
-  - turing-music
-  - turtle-options
-  - twain # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230972118 at 2023-08-16
-  - tweak
-  - twentefp-websockets
-  - twfy-api-client
-  - twhs
-  - twilio
-  - twiml
-  - twine
-  - twirl # dependency missing in job https://hydra.nixos.org/build/217564808 at 2023-04-29
-  - twirp
-  - twisty
-  - twitchapi
-  - twitch # failure building test suite 'unit-tests' in job https://hydra.nixos.org/build/230961695 at 2023-08-16
-  - twitter
-  - twitter-feed
-  - tx
-  - txtblk
-  - TYB
-  - tyfam-witnesses
-  - typalyze
-  - typeable-th
-  - type-combinators
-  - type-compare # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230964481 at 2023-08-16
-  - TypeCompose
-  - typed-digits
-  - typed-encoding
-  - typedquery
-  - typed-spreadsheet # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230959517 at 2023-08-16
-  - typed-time
-  - typed-wire
-  - type-eq
-  - type-errors-pretty
-  - typehash
-  - type-indexed-queues
-  - type-int
-  - type-interpreter
-  - typelet
-  - type-level-bst
-  - type-level-natural-number-induction
-  - type-level-natural-number-operations
-  - typelevel-rewrite-rules
-  - type-level-sets
-  - typelevel-tensor
-  - type-list
-  - typelits-witnesses
-  - type-of-html-static
-  - type-operators # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230949643 at 2023-08-16
-  - typeparams
-  - type-prelude
-  - typerep-map # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230969193 at 2023-08-16
-  - type-safe-avl
-  - types-compat
-  - type-settheory
-  - type-spine
-  - type-tree
-  - type-unary
-  - typograffiti
-  - typson-core
-  - tyro
-  - tztime
-  - uAgda
-  - uberlast
-  - ucam-webauth-types
-  - ucl # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230952255 at 2023-08-16
-  - uconv
-  - udbus
-  - udp-conduit
-  - udp-streaming
-  - ueberzug
-  - uhexdump
-  - uhttpc
-  - ui-command
-  - ukrainian-phonetics-basic-array
-  - ukrainian-phonetics-basic-array-bytestring
-  - unamb-custom
-  - unbeliever
-  - unbounded-delays-units
-  - unbound-kind-generics # failure building library in job https://hydra.nixos.org/build/219201570 at 2023-05-10
-  - unboxed
-  - unboxed-containers
-  - unboxed-references
-  - unbreak
-  - unescaping-print
-  - unfix-binders
-  - unicode-data-names
-  - unicode-data-scripts
-  - unicode-data-security
-  - unicode-general-category
-  - unicode-prelude
-  - unicode-symbols
-  - unicode-tricks
-  - uniform-json # failure building test suite 'json-test' in job https://hydra.nixos.org/build/214602707 at 2023-04-07
-  - union-find # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230950510 at 2023-08-16
-  - union-map
-  - unionmount # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230961993 at 2023-08-16
-  - uniprot-kb
-  - uniqueid
-  - uniquely-represented-sets
-  - uniqueness-periods-general
-  - uniqueness-periods-vector
-  - uniqueness-periods-vector-common
-  - units-attoparsec
-  - unittyped
-  - unitym # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230958411 at 2023-08-16
-  - unitym-yesod
-  - uni-util
-  - universal-binary
-  - universe-instances-base
-  - universe-instances-trans
-  - universe-some
-  - unix-handle
-  - unix-process-conduit
-  - unix-recursive
-  - unlift
-  - unlifted-list
-  - unliftio-messagebox
-  - unlift-stm
-  - unm-hip
-  - unordered-containers-rematch
-  - unordered-graphs
-  - unordered-intmap
-  - unpacked-either
-  - unpacked-maybe
-  - unpacked-maybe-numeric # failure building library in job https://hydra.nixos.org/build/230962818 at 2023-08-16
-  - unpack-funcs
-  - unroll-ghc-plugin
-  - unsafely
-  - unsatisfiable
-  - unsequential
-  - unused
-  - uom-plugin
-  - Updater
-  - uploadcare
-  - upskirt
-  - urbit-hob # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230966459 at 2023-08-16
-  - uri
-  - uri-conduit
-  - uri-encoder
-  - uri-parse
-  - uri-template
-  - uri-templater
-  - URLb
-  - url-bytes
-  - urlcheck
-  - urldecode
-  - url-decoders
-  - urldisp-happstack
-  - urlencoded # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230946607 at 2023-08-16
-  - url-generic
-  - urn
-  - urn-random
-  - urxml
-  - useragents
-  - userid # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230959568 at 2023-08-16
-  - users-persistent
-  - utc
-  - utf8-conversions
-  - utf8-prelude
-  - utf8-validator
-  - util
-  - util-logict
-  - util-plus
-  - util-primitive
-  - uuagc-bootstrap
-  - uuagc-diagrams
-  - uu-cco
-  - uuid-aeson
-  - uusi
-  - uvector
-  - uxadt
-  - vabal-lib
-  - vacuum
-  - vado # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947987 at 2023-08-16
-  - validated-types
-  - Validation
-  - validations
-  - validators # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230966128 at 2023-08-16
-  - validity-network-uri
-  - valid-names
-  - value-supply
-  - vampire
-  - var
-  - varan
-  - variable-media-field # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230971903 at 2023-08-16
-  - variables
-  - variadic
-  - variation
-  - vault-tool
-  - vcache
-  - vcatt
-  - vcf
-  - vcswrapper
-  - Vec-Boolean
-  - Vec-OpenGLRaw
-  - vect-floating
-  - vect-opengl
-  - vector-bytestring
-  - vector-circular # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230951925 at 2023-08-16
-  - vector-clock
-  - vector-conduit
-  - vector-doublezip
-  - vector-endian
-  - vector-fftw
-  - vector-functorlazy
-  - vector-heterogenous
-  - vector-quicksort # dependency missing in job https://hydra.nixos.org/build/216753081 at 2023-04-20
-  - vector-random
-  - vector-read-instances
-  - vector-shuffling # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230963853 at 2023-08-16
-  - vector-space-map
-  - vector-space-opengl
-  - vector-space-points
-  - vector-static
-  - vega-view
-  - velma # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230963085 at 2023-08-16
-  - Verba
-  - verbalexpressions
-  - verdict
-  - verify
-  - verilog
-  - verset
-  - versioning
-  - vformat
-  - vgrep
-  - vhd
-  - vhdl
-  - vicinity
-  - viewprof
-  - views
-  - Villefort
-  - vimus
-  - vintage-basic
-  - vinyl-json
-  - vinyl-named-sugar
-  - vinyl-plus
-  - vinyl-utils
-  - vinyl-vectors
-  - virthualenv
-  - visibility
-  - visualize-cbn
-  - visual-prof
-  - vitrea
-  - vk-aws-route53
-  - VKHS
-  - vowpal-utils
-  - voyeur
-  - VRML
-  - vte
-  - vtegtk3
-  - vt-utils
-  - vty-examples
-  - vty-menu
-  - vty-ui
-  - wacom-daemon
-  - waddle
-  - wai-git-http
-  - wai-graceful
-  - wai-handler-devel
-  - wai-handler-fastcgi
-  - wai-handler-scgi
-  - wai-handler-webkit
-  - wai-hmac-auth
-  - wai-lambda
-  - wai-lens
-  - wai-lite
-  - wai-logger-buffered
-  - wai-logger-prefork
-  - wai-middleware-auth
-  - wai-middleware-catch
-  - wai-middleware-crowd
-  - wai-middleware-delegate
-  - wai-middleware-etag
-  - wai-middleware-headers
-  - wai-middleware-hmac-client
-  - wai-middleware-preprocessor
-  - wai-middleware-static-caching
-  - wai-middleware-travisci
-  - wai-middleware-validation
-  - wai-predicates
-  - wai-problem-details # dependency missing in job https://hydra.nixos.org/build/219206235 at 2023-05-10
-  - wai-rate-limit-postgres
-  - wai-rate-limit-redis
-  - wai-request-spec
-  - wai-responsible
-  - wai-router
-  - wai-routes
-  - wai-saml2 # test failure in job https://hydra.nixos.org/build/230969677 at 2023-08-16
-  - wai-secure-cookies
-  - wai-session-mysql
-  - wai-session-postgresql
-  - wai-session-redis
-  - wai-static-cache
-  - waitfree
-  - wai-throttler
-  - waitra
-  - wakame # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947444 at 2023-08-16
-  - wallpaper
-  - warc
-  - warp-dynamic
-  - warp-static
-  - warp-systemd
-  - wasm
-  - watcher
-  - watchit
-  - wavefront
-  - wavefront-obj
-  - weak-bag
-  - WeakSets
-  - Weather
-  - weather-api
-  - web3-ipfs
-  - webapi
-  - webapp
-  - webauthn # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230964346 at 2023-08-16
-  - WebBits
-  - webby # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230952008 at 2023-08-16
-  - webcrank
-  - webcrank-dispatch
-  - web-css
-  - webdriver-angular
-  - webdriver-snoy
-  - web-encodings
-  - WeberLogic
-  - webfinger-client
-  - webkitgtk3
-  - webkit-javascriptcore
-  - webmention
-  - web-output
-  - web-page
-  - web-plugins # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230962603 at 2023-08-16
-  - web-push
-  - Webrexp
-  - web-routes-quasi
-  - web-routes-transformers
-  - webshow
-  - webwire
-  - wedged
-  - WEditor
-  - weekdaze
-  - weighted-regexp
-  - welshy
-  - werewolf
-  - wgpu-raw-hs
-  - Wheb
-  - while-lang-parser
-  - whim
-  - whiskers
-  - whois
-  - why3
-  - wide-word-instances # failure building library in job https://hydra.nixos.org/build/211245524 at 2023-03-13
-  - wikicfp-scraper # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230946581 at 2023-08-16
-  - WikimediaParser
-  - wild-bind # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230951433 at 2023-08-16
-  - willow
-  - windns
-  - windowslive
-  - window-utils # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230962777 at 2023-08-16
-  - winerror
-  - wireguard-hs
-  - wires
-  - wiring
-  - witty
-  - wkt
-  - wkt-geom
-  - WL500gPLib
-  - wl-pprint-console
-  - wl-pprint-extras
-  - WMSigner
-  - woe
-  - woffex
-  - wol
-  - word24
-  - word2vec-model
-  - word8set #  failure  in job https://hydra.nixos.org/build/221843616 at 2023-05-30
-  - wordchoice
-  - wordify
-  - Wordlint
-  - wordlist # dependency missing in job https://hydra.nixos.org/build/214500004 at 2023-04-07
-  - wordn
-  - WordNet
-  - WordNet-ghc74
-  - wordpass
-  - wordsearch
-  - workdays
-  - workflow-osx
-  - workflow-windows
-  - work-time
-  - worldturtle
-  - wp-archivebot
-  - wreq-helper
-  - wreq-patchable
-  - wreq-sb
-  - writer-cps-lens
-  - writer-cps-monads-tf
-  - writer-cps-morph
-  - wsdl
-  - wsedit
-  - wss-client
-  - wtk
-  - wumpus-core
-  - wxdirect
-  - X
-  - X11-extras
-  - X11-rm
-  - X11-xdamage
-  - X11-xfixes
-  - xchat-plugin
-  - xcp
-  - x-dsp
-  - Xec
-  - xenstore
-  - xfconf
-  - xformat
-  - xhaskell-library
-  - xhb
-  - xilinx-lava
-  - xine
-  - xing-api
-  - xkbcommon
-  - xkcd
-  - xleb
-  - xls
-  - xlsior
-  - xlsx-tabular
-  - xlsx-templater
-  - xml2json
-  - xml-conduit-decode
-  - xml-conduit-parse
-  - xml-conduit-selectors
-  - xml-conduit-stylist # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230949082 at 2023-08-16
-  - xml-html-conduit-lens
-  - XmlHtmlWriter
-  - xml-parsec
-  - xml-prettify
-  - xml-prettify-text
-  - xml-query # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230947454 at 2023-08-16
-  - xml-query-xml-types
-  - xml-syntax
-  - xml-to-json
-  - xml-tydom-core
-  - xml-verify
-  - XMMS
-  - xmonad-bluetilebranch
-  - xmonad-contrib-gpl
-  - xmonad-entryhelper
-  - xmonad-eval
-  - xmonad-screenshot
-  - xmonad-vanessa
-  - xmonad-wallpaper
-  - xmonad-windownames
-  - Xorshift128Plus
-  - xorshift-plus
-  - xsact
-  - xsd
-  - xsha1
-  - xslt
-  - xxhash
-  - y0l0bot
-  - yabi-muno
-  - yackage
-  - YACPong
-  - yahoo-finance-api
-  - yahoo-finance-conduit
-  - yahoo-prices
-  - yahoo-web-search
-  - yajl
-  - yak
-  - yall
-  - yam-app
-  - yam-config
-  - yaml-combinators
-  - yaml-config
-  - yamlkeysdiff
-  - yaml-light-lens
-  - yaml-pretty-extras
-  - YamlReference
-  - yaml-rpc
-  - yaml-union
-  - yaml-unscrambler # dependency missing in job https://hydra.nixos.org/build/212821989 at 2023-03-22
-  - yampa2048
-  - yampa-glfw
-  - yampa-gloss
-  - yampa-glut
-  - yampa-sdl2
-  - YampaSynth
-  - yampa-test # dependency missing in job https://hydra.nixos.org/build/214864510 at 2023-04-07
-  - yandex-translate
-  - yaop
-  - yapb
-  - yarn2nix
-  - yarr
-  - yate
-  - yaya-test
-  - yaya-unsafe-test
-  - yeller
-  - yeshql-hdbc
-  - yeshql-postgresql-simple
-  - yesod-angular
-  - yesod-angular-ui
-  - yesod-auth-account
-  - yesod-auth-account-fork
-  - yesod-auth-bcrypt
-  - yesod-auth-bcryptdb
-  - yesod-auth-deskcom
-  - yesod-auth-fb
-  - yesod-auth-hmac-keccak
-  - yesod-auth-kerberos
-  - yesod-auth-ldap-mediocre
-  - yesod-auth-ldap-native
-  - yesod-auth-nopassword
-  - yesod-auth-pam
-  - yesod-auth-smbclient
-  - yesod-auth-zendesk
-  - yesod-bootstrap
-  - yesod-comments
-  - yesod-content-pdf
-  - yesod-crud
-  - yesod-crud-persist
-  - yesod-csp
-  - yesod-datatables
-  - yesod-dsl
-  - yesod-fast-devel
-  - yesod-filter
-  - yesod-form-json
-  - yesod-form-richtext
-  - yesod-gitrev
-  - yesod-goodies
-  - yesod-ip
-  - yesod-job-queue
-  - yesod-katip
-  - yesod-links
-  - yesod-lucid
-  - yesod-middleware-csp
-  - yesod-paginate
-  - yesod-pagination
-  - yesod-pnotify
-  - yesod-pure
-  - yesod-raml
-  - yesod-recaptcha
-  - yesod-routes
-  - yesod-rst
-  - yesod-s3
-  - yesod-sass
-  - yesod-static-angular
-  - yesod-static-remote
-  - yesod-static-streamly # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230966153 at 2023-08-16
-  - yesod-test-json
-  - yesod-text-markdown
-  - yesod-tls
-  - yesod-transloadit
-  - yesod-vend
-  - YFrob
-  - yggdrasil
-  - yhccore
-  - yhseq
-  - yices
-  - yi-language
-  - yoctoparsec
-  - yoda
-  - Yogurt
-  - youtube
-  - yst
-  - yu-auth
-  - yu-core
-  - yuiGrid
-  - yu-tool
-  - yxdb-utils
-  - z3-encoding
-  - z85
-  - zabt
-  - zampolit
-  - zbar # failure in setupCompilerEnvironmentPhase in job https://hydra.nixos.org/build/230967764 at 2023-08-16
-  - Z-Data
-  - ZEBEDDE
-  - zendesk-api
-  - zeno
-  - zeolite-lang
-  - zephyr
-  - zero
-  - zeromq3-haskell
-  - zeromq4-clone-pattern
-  - zeromq4-conduit
-  - zeromq4-patterns
-  - zeromq-haskell
-  - zettelkast
-  - ZFS
-  - zifter
-  - zigbee-znet25
-  - zip-conduit
-  - zipedit
-  - zipkin
-  - ziptastic-core
-  - zlib-bytes # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230946586 at 2023-08-16
-  - zlib-lens
-  - ZMachine
-  - zmidi-score
-  - zmqat
-  - zoneinfo
-  - zoom
-  - zoom-refs
-  - zsdd
-  - zsh-battery
-  - zsyntax
-  - ztail # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/230962012 at 2023-08-16
-  - ztar
-  - zuul
-  - Zwaluw
-  - zxcvbn-dvorak
-  - zydiskell
-  - zyre2
+  - 2captcha # failure in job https://hydra.nixos.org/build/233233765 at 2023-09-02
+  - 3d-graphics-examples # failure in job https://hydra.nixos.org/build/234454565 at 2023-09-13
+  - 3dmodels # failure in job https://hydra.nixos.org/build/233220850 at 2023-09-02
+  - AAI # failure in job https://hydra.nixos.org/build/233258828 at 2023-09-02
+  - aasam # failure in job https://hydra.nixos.org/build/233216423 at 2023-09-02
+  - abacate # failure in job https://hydra.nixos.org/build/233201225 at 2023-09-02
+  - abcnotation # failure in job https://hydra.nixos.org/build/233204259 at 2023-09-02
+  - abeson # failure in job https://hydra.nixos.org/build/233210579 at 2023-09-02
+  - abides # failure in job https://hydra.nixos.org/build/233260056 at 2023-09-02
+  - abnf # failure in job https://hydra.nixos.org/build/233238839 at 2023-09-02
+  - AbortT-transformers # failure in job https://hydra.nixos.org/build/233210345 at 2023-09-02
+  - abt # failure in job https://hydra.nixos.org/build/233201301 at 2023-09-02
+  - AC-BuildPlatform # failure in job https://hydra.nixos.org/build/233219130 at 2023-09-02
+  - accelerate # failure in job https://hydra.nixos.org/build/233198907 at 2023-09-02
+  - accentuateus # failure in job https://hydra.nixos.org/build/233253627 at 2023-09-02
+  - access-time # failure in job https://hydra.nixos.org/build/233246051 at 2023-09-02
+  - accuerr # failure in job https://hydra.nixos.org/build/233220965 at 2023-09-02
+  - AC-EasyRaster-GTK # failure in job https://hydra.nixos.org/build/233226232 at 2023-09-02
+  - ace # failure in job https://hydra.nixos.org/build/233214870 at 2023-09-02
+  - AC-HalfInteger # failure in job https://hydra.nixos.org/build/233239266 at 2023-09-02
+  - achille # failure in job https://hydra.nixos.org/build/233236118 at 2023-09-02
+  - acid-state-dist # failure in job https://hydra.nixos.org/build/233216067 at 2023-09-02
+  - acid-state-tls # failure in job https://hydra.nixos.org/build/233211210 at 2023-09-02
+  - ac-machine # failure in job https://hydra.nixos.org/build/233253535 at 2023-09-02
+  - acme-all-monad # failure in job https://hydra.nixos.org/build/233197817 at 2023-09-02
+  - acme-comonad # failure in job https://hydra.nixos.org/build/233249166 at 2023-09-02
+  - acme-dont # failure in job https://hydra.nixos.org/build/233226392 at 2023-09-02
+  - ACME # failure in job https://hydra.nixos.org/build/233229388 at 2023-09-02
+  - acme-flipping-tables # failure in job https://hydra.nixos.org/build/233222456 at 2023-09-02
+  - acme-hq9plus # failure in job https://hydra.nixos.org/build/233248868 at 2023-09-02
+  - acme-http # failure in job https://hydra.nixos.org/build/233203112 at 2023-09-02
+  - acme-inator # failure in job https://hydra.nixos.org/build/233211599 at 2023-09-02
+  - acme-io # failure in job https://hydra.nixos.org/build/233224872 at 2023-09-02
+  - acme-kitchen-sink # failure in job https://hydra.nixos.org/build/233222038 at 2023-09-02
+  - acme-left-pad # failure in job https://hydra.nixos.org/build/233197685 at 2023-09-02
+  - acme-memorandom # failure in job https://hydra.nixos.org/build/233222926 at 2023-09-02
+  - acme-miscorder # failure in job https://hydra.nixos.org/build/233209957 at 2023-09-02
+  - acme-mutable-package # failure in job https://hydra.nixos.org/build/233213349 at 2023-09-02
+  - acme-now # failure in job https://hydra.nixos.org/build/233243289 at 2023-09-02
+  - acme-numbersystem # failure in job https://hydra.nixos.org/build/233208106 at 2023-09-02
+  - acme-operators # failure in job https://hydra.nixos.org/build/233248282 at 2023-09-02
+  - acme-schoenfinkel # failure in job https://hydra.nixos.org/build/233231988 at 2023-09-02
+  - acme-strfry # failure in job https://hydra.nixos.org/build/233242092 at 2023-09-02
+  - acme-stringly-typed # failure in job https://hydra.nixos.org/build/233192651 at 2023-09-02
+  - acme-this # failure in job https://hydra.nixos.org/build/233230930 at 2023-09-02
+  - acme-zalgo # failure in job https://hydra.nixos.org/build/233216155 at 2023-09-02
+  - acme-zero # failure in job https://hydra.nixos.org/build/233192937 at 2023-09-02
+  - AC-MiniTest # failure in job https://hydra.nixos.org/build/233216015 at 2023-09-02
+  - acousticbrainz-client # failure in job https://hydra.nixos.org/build/233192638 at 2023-09-02
+  - AC-Terminal # failure in job https://hydra.nixos.org/build/233192747 at 2023-09-02
+  - ActionKid # failure in job https://hydra.nixos.org/build/234443624 at 2023-09-13
+  - activehs-base # failure in job https://hydra.nixos.org/build/233254736 at 2023-09-02
+  - activitypub # failure in job https://hydra.nixos.org/build/233253119 at 2023-09-02
+  - activitystreams-aeson # failure in job https://hydra.nixos.org/build/233222522 at 2023-09-02
+  - AC-VanillaArray # failure in job https://hydra.nixos.org/build/233216801 at 2023-09-02
+  - AC-Vector # failure in job https://hydra.nixos.org/build/233201957 at 2023-09-02
+  - Adaptive-Blaisorblade # failure in job https://hydra.nixos.org/build/233229679 at 2023-09-02
+  - adaptive-containers # failure in job https://hydra.nixos.org/build/233243181 at 2023-09-02
+  - Adaptive # failure in job https://hydra.nixos.org/build/233217421 at 2023-09-02
+  - adaptive-tuple # failure in job https://hydra.nixos.org/build/233244881 at 2023-09-02
+  - adb # failure in job https://hydra.nixos.org/build/233193888 at 2023-09-02
+  - addy # failure in job https://hydra.nixos.org/build/233240594 at 2023-09-02
+  - adjunction # failure in job https://hydra.nixos.org/build/233237774 at 2023-09-02
+  - adobe-swatch-exchange # failure in job https://hydra.nixos.org/build/233255779 at 2023-09-02
+  - adp-multi # failure in job https://hydra.nixos.org/build/233256331 at 2023-09-02
+  - adtrees # failure in job https://hydra.nixos.org/build/233192320 at 2023-09-02
+  - AERN-Basics # failure in job https://hydra.nixos.org/build/233246999 at 2023-09-02
+  - aeson-applicative # failure in job https://hydra.nixos.org/build/233213824 at 2023-09-02
+  - aeson-bson # failure in job https://hydra.nixos.org/build/233201964 at 2023-09-02
+  - aeson-commit # failure in job https://hydra.nixos.org/build/233198515 at 2023-09-02
+  - aeson-compat # failure in job https://hydra.nixos.org/build/233208257 at 2023-09-02
+  - aeson-decode # failure in job https://hydra.nixos.org/build/233251197 at 2023-09-02
+  - aeson-default # failure in job https://hydra.nixos.org/build/233203427 at 2023-09-02
+  - aeson-dependent-sum # failure in job https://hydra.nixos.org/build/233223384 at 2023-09-02
+  - aeson-deriving # failure in job https://hydra.nixos.org/build/233247857 at 2023-09-02
+  - aeson-diff-generic # failure in job https://hydra.nixos.org/build/233213146 at 2023-09-02
+  - aeson-filthy # failure in job https://hydra.nixos.org/build/233198472 at 2023-09-02
+  - aeson-flat # failure in job https://hydra.nixos.org/build/233220787 at 2023-09-02
+  - aeson-flatten # failure in job https://hydra.nixos.org/build/233242954 at 2023-09-02
+  - aeson-flowtyped # failure in job https://hydra.nixos.org/build/233245878 at 2023-09-02
+  - aeson-gadt-th # failure in job https://hydra.nixos.org/build/233247060 at 2023-09-02
+  - aeson-injector # failure in job https://hydra.nixos.org/build/233200351 at 2023-09-02
+  - aeson-json-ast # failure in job https://hydra.nixos.org/build/233249406 at 2023-09-02
+  - aeson-lens # failure in job https://hydra.nixos.org/build/233235357 at 2023-09-02
+  - aeson-modern-tojson # failure in job https://hydra.nixos.org/build/233202149 at 2023-09-02
+  - aeson-options # failure in job https://hydra.nixos.org/build/233245051 at 2023-09-02
+  - aeson-parsec-picky # failure in job https://hydra.nixos.org/build/233222117 at 2023-09-02
+  - aeson-prefix # failure in job https://hydra.nixos.org/build/233215656 at 2023-09-02
+  - aeson-schema # failure in job https://hydra.nixos.org/build/233229960 at 2023-09-02
+  - aeson-single-field # failure in job https://hydra.nixos.org/build/233247758 at 2023-09-02
+  - aeson-smart # failure in job https://hydra.nixos.org/build/233197032 at 2023-09-02
+  - aeson-streams # failure in job https://hydra.nixos.org/build/233191057 at 2023-09-02
+  - aeson-t # failure in job https://hydra.nixos.org/build/233243634 at 2023-09-02
+  - aeson-toolkit # failure in job https://hydra.nixos.org/build/233248208 at 2023-09-02
+  - aeson-utils # failure in job https://hydra.nixos.org/build/233238768 at 2023-09-02
+  - aeson-with # failure in job https://hydra.nixos.org/build/233206342 at 2023-09-02
+  - affection # failure in job https://hydra.nixos.org/build/233213076 at 2023-09-02
+  - affine-invariant-ensemble-mcmc # failure in job https://hydra.nixos.org/build/233237176 at 2023-09-02
+  - Agata # failure in job https://hydra.nixos.org/build/233221026 at 2023-09-02
+  - Agda-executable # failure in job https://hydra.nixos.org/build/233332629 at 2023-09-02
+  - agda-language-server # failure in job https://hydra.nixos.org/build/233332694 at 2023-09-02
+  - agda-snippets # failure in job https://hydra.nixos.org/build/233332749 at 2023-09-02
+  - agda-unused # failure in job https://hydra.nixos.org/build/233332657 at 2023-09-02
+  - AGI # failure in job https://hydra.nixos.org/build/233211491 at 2023-09-02
+  - ag-pictgen # failure in job https://hydra.nixos.org/build/233252615 at 2023-09-02
+  - AhoCorasick # failure in job https://hydra.nixos.org/build/233204899 at 2023-09-02
+  - aig # failure in job https://hydra.nixos.org/build/233199755 at 2023-09-02
+  - airbrake # failure in job https://hydra.nixos.org/build/233199319 at 2023-09-02
+  - air-extra # failure in job https://hydra.nixos.org/build/233250519 at 2023-09-02
+  - airship # failure in job https://hydra.nixos.org/build/233239011 at 2023-09-02
+  - airtable-api # failure in job https://hydra.nixos.org/build/233228482 at 2023-09-02
+  - air-th # failure in job https://hydra.nixos.org/build/233228206 at 2023-09-02
+  - aivika-gpss # failure in job https://hydra.nixos.org/build/233254603 at 2023-09-02
+  - ajhc # failure in job https://hydra.nixos.org/build/233197894 at 2023-09-02
+  - AlanDeniseEricLauren # failure in job https://hydra.nixos.org/build/233235486 at 2023-09-02
+  - alerta # failure in job https://hydra.nixos.org/build/233203379 at 2023-09-02
+  - alerts # failure in job https://hydra.nixos.org/build/233251101 at 2023-09-02
+  - alex-prelude # failure in job https://hydra.nixos.org/build/233238387 at 2023-09-02
+  - alfred # failure in job https://hydra.nixos.org/build/233227316 at 2023-09-02
+  - alfred-margaret # failure in job https://hydra.nixos.org/build/233223038 at 2023-09-02
+  - alga # failure in job https://hydra.nixos.org/build/233252723 at 2023-09-02
+  - algebra-dag # failure in job https://hydra.nixos.org/build/233191945 at 2023-09-02
+  - algebraic-classes # failure in job https://hydra.nixos.org/build/233246872 at 2023-09-02
+  - algebraic-prelude # failure in job https://hydra.nixos.org/build/233197561 at 2023-09-02
+  - AlgorithmW # failure in job https://hydra.nixos.org/build/233245254 at 2023-09-02
+  - algo-s # failure in job https://hydra.nixos.org/build/233221988 at 2023-09-02
+  - align-affine # failure in job https://hydra.nixos.org/build/233230079 at 2023-09-02
+  - align-text # failure in job https://hydra.nixos.org/build/233215779 at 2023-09-02
+  - ally-invest # failure in job https://hydra.nixos.org/build/233236224 at 2023-09-02
+  - alpaca-netcode # failure in job https://hydra.nixos.org/build/233239392 at 2023-09-02
+  - alpino-tools # failure in job https://hydra.nixos.org/build/233236168 at 2023-09-02
+  - alsa # failure in job https://hydra.nixos.org/build/233250059 at 2023-09-02
+  - alsa-midi # failure in job https://hydra.nixos.org/build/233245836 at 2023-09-02
+  - altcomposition # failure in job https://hydra.nixos.org/build/233203544 at 2023-09-02
+  - alternative-extra # failure in job https://hydra.nixos.org/build/233222901 at 2023-09-02
+  - alternative-io # failure in job https://hydra.nixos.org/build/233259524 at 2023-09-02
+  - altfloat # failure in job https://hydra.nixos.org/build/233197874 at 2023-09-02
+  - alure # failure in job https://hydra.nixos.org/build/233230238 at 2023-09-02
+  - amazon-emailer # failure in job https://hydra.nixos.org/build/233220018 at 2023-09-02
+  - amazonka # failure in job https://hydra.nixos.org/build/233220743 at 2023-09-02
+  - amazonka-iam-policy # failure in job https://hydra.nixos.org/build/233233098 at 2023-09-02
+  - amazon-products # failure in job https://hydra.nixos.org/build/233193877 at 2023-09-02
+  - AMI # failure in job https://hydra.nixos.org/build/233232505 at 2023-09-02
+  - amqp-conduit # failure in job https://hydra.nixos.org/build/233228080 at 2023-09-02
+  - analyze # failure in job https://hydra.nixos.org/build/233251441 at 2023-09-02
+  - anansi-pandoc # failure in job https://hydra.nixos.org/build/233252389 at 2023-09-02
+  - android-activity # failure in job https://hydra.nixos.org/build/233203400 at 2023-09-02
+  - android # failure in job https://hydra.nixos.org/build/233222148 at 2023-09-02
+  - android-lint-summary # failure in job https://hydra.nixos.org/build/233194598 at 2023-09-02
+  - angel # failure in job https://hydra.nixos.org/build/233191548 at 2023-09-02
+  - angle # failure in job https://hydra.nixos.org/build/233203144 at 2023-09-02
+  - animalcase # failure in job https://hydra.nixos.org/build/233191888 at 2023-09-02
+  - animascii # failure in job https://hydra.nixos.org/build/233211290 at 2023-09-02
+  - Animas # failure in job https://hydra.nixos.org/build/233256636 at 2023-09-02
+  - animate # failure in job https://hydra.nixos.org/build/233243661 at 2023-09-02
+  - anki-tools # failure in job https://hydra.nixos.org/build/233205129 at 2023-09-02
+  - annotated-fix # failure in job https://hydra.nixos.org/build/233241215 at 2023-09-02
+  - anonymous-sums # failure in job https://hydra.nixos.org/build/233222773 at 2023-09-02
+  - ansigraph # failure in job https://hydra.nixos.org/build/233227928 at 2023-09-02
+  - ansi-pretty # failure in job https://hydra.nixos.org/build/233204335 at 2023-09-02
+  - antfarm # failure in job https://hydra.nixos.org/build/233225661 at 2023-09-02
+  - antigate # failure in job https://hydra.nixos.org/build/233194081 at 2023-09-02
+  - antimirov # failure in job https://hydra.nixos.org/build/233210987 at 2023-09-02
+  - antiope-swf # failure in job https://hydra.nixos.org/build/233206369 at 2023-09-02
+  - antiquoter # failure in job https://hydra.nixos.org/build/233221962 at 2023-09-02
+  - antisplice # failure in job https://hydra.nixos.org/build/233238144 at 2023-09-02
+  - antlr-haskell # failure in job https://hydra.nixos.org/build/233208196 at 2023-09-02
+  - anydbm # failure in job https://hydra.nixos.org/build/233195447 at 2023-09-02
+  - Aoide # failure in job https://hydra.nixos.org/build/233239286 at 2023-09-02
+  - aosd # failure in job https://hydra.nixos.org/build/233207331 at 2023-09-02
+  - apache-md5 # failure in job https://hydra.nixos.org/build/233193946 at 2023-09-02
+  - apart # failure in job https://hydra.nixos.org/build/233219668 at 2023-09-02
+  - apecs-physics # failure in job https://hydra.nixos.org/build/233212565 at 2023-09-02
+  - api-builder # failure in job https://hydra.nixos.org/build/233205755 at 2023-09-02
+  - api-rpc-factom # failure in job https://hydra.nixos.org/build/233198474 at 2023-09-02
+  - apns-http2 # failure in job https://hydra.nixos.org/build/233248620 at 2023-09-02
+  - appc # failure in job https://hydra.nixos.org/build/233200853 at 2023-09-02
+  - appendful-persistent # failure in job https://hydra.nixos.org/build/233249677 at 2023-09-02
+  - app-lens # failure in job https://hydra.nixos.org/build/233193948 at 2023-09-02
+  - AppleScript # failure in job https://hydra.nixos.org/build/233231626 at 2023-09-02
+  - applicative-fail # failure in job https://hydra.nixos.org/build/233237624 at 2023-09-02
+  - applicative-parsec # failure in job https://hydra.nixos.org/build/233221615 at 2023-09-02
+  - applicative-quoters # failure in job https://hydra.nixos.org/build/233191023 at 2023-09-02
+  - applicative-splice # failure in job https://hydra.nixos.org/build/233202183 at 2023-09-02
+  - apply-unordered # failure in job https://hydra.nixos.org/build/233238590 at 2023-09-02
+  - approveapi # failure in job https://hydra.nixos.org/build/233197597 at 2023-09-02
+  - approx # failure in job https://hydra.nixos.org/build/233236548 at 2023-09-02
+  - ApproxFun-hs # failure in job https://hydra.nixos.org/build/233247678 at 2023-09-02
+  - arbb-vm # failure in job https://hydra.nixos.org/build/233252062 at 2023-09-02
+  - arb-fft # failure in job https://hydra.nixos.org/build/233201190 at 2023-09-02
+  - arbor-lru-cache # failure in job https://hydra.nixos.org/build/233204554 at 2023-09-02
+  - arbor-monad-counter # failure in job https://hydra.nixos.org/build/233220436 at 2023-09-02
+  - arbor-monad-logger # failure in job https://hydra.nixos.org/build/233228659 at 2023-09-02
+  - arbor-monad-metric # failure in job https://hydra.nixos.org/build/233236175 at 2023-09-02
+  - arbor-postgres # failure in job https://hydra.nixos.org/build/233232935 at 2023-09-02
+  - arch-hs # failure in job https://hydra.nixos.org/build/233225768 at 2023-09-02
+  - archiver # failure in job https://hydra.nixos.org/build/233245795 at 2023-09-02
+  - archlinux # failure in job https://hydra.nixos.org/build/233202430 at 2023-09-02
+  - archnews # failure in job https://hydra.nixos.org/build/233192480 at 2023-09-02
+  - arena # failure in job https://hydra.nixos.org/build/233252500 at 2023-09-02
+  - argo # failure in job https://hydra.nixos.org/build/233216252 at 2023-09-02
+  - argon2 # failure in job https://hydra.nixos.org/build/233207704 at 2023-09-02
+  - argparser # failure in job https://hydra.nixos.org/build/233222416 at 2023-09-02
+  - arguedit # failure in job https://hydra.nixos.org/build/233211367 at 2023-09-02
+  - arion # failure in job https://hydra.nixos.org/build/233254120 at 2023-09-02
+  - armada # failure in job https://hydra.nixos.org/build/234462335 at 2023-09-13
+  - armor # failure in job https://hydra.nixos.org/build/233241366 at 2023-09-02
+  - arpack # failure in job https://hydra.nixos.org/build/233240937 at 2023-09-02
+  - arpa # failure in job https://hydra.nixos.org/build/233200212 at 2023-09-02
+  - arrayfire # failure in job https://hydra.nixos.org/build/233225004 at 2023-09-02
+  - array-list # failure in job https://hydra.nixos.org/build/233197669 at 2023-09-02
+  - array-primops # failure in job https://hydra.nixos.org/build/233191559 at 2023-09-02
+  - ArrayRef # failure in job https://hydra.nixos.org/build/233196329 at 2023-09-02
+  - arrowapply-utils # failure in job https://hydra.nixos.org/build/233192063 at 2023-09-02
+  - arrow-improve # failure in job https://hydra.nixos.org/build/233239994 at 2023-09-02
+  - arrow-list # failure in job https://hydra.nixos.org/build/233249150 at 2023-09-02
+  - arrowp # failure in job https://hydra.nixos.org/build/233255376 at 2023-09-02
+  - arrowp-qq # failure in job https://hydra.nixos.org/build/233251384 at 2023-09-02
+  - ArrowVHDL # failure in job https://hydra.nixos.org/build/233206149 at 2023-09-02
+  - artery # failure in job https://hydra.nixos.org/build/233206830 at 2023-09-02
+  - artifact # failure in job https://hydra.nixos.org/build/233233300 at 2023-09-02
+  - asap # failure in job https://hydra.nixos.org/build/233214968 at 2023-09-02
+  - ascii85-conduit # failure in job https://hydra.nixos.org/build/233235427 at 2023-09-02
+  - asciidiagram # failure in job https://hydra.nixos.org/build/233259020 at 2023-09-02
+  - ascii-flatten # failure in job https://hydra.nixos.org/build/233229168 at 2023-09-02
+  - ascii-string # failure in job https://hydra.nixos.org/build/233249978 at 2023-09-02
+  - ascii-vector-avc # failure in job https://hydra.nixos.org/build/233208533 at 2023-09-02
+  - asif # failure in job https://hydra.nixos.org/build/233251551 at 2023-09-02
+  - asil # failure in job https://hydra.nixos.org/build/233204081 at 2023-09-02
+  - asn1-ber-syntax # failure in job https://hydra.nixos.org/build/233235772 at 2023-09-02
+  - asn1-codec # failure in job https://hydra.nixos.org/build/233217242 at 2023-09-02
+  - asn1-data # failure in job https://hydra.nixos.org/build/233252918 at 2023-09-02
+  - AspectAG # failure in job https://hydra.nixos.org/build/233231125 at 2023-09-02
+  - assert # failure in job https://hydra.nixos.org/build/233257692 at 2023-09-02
+  - assertions # failure in job https://hydra.nixos.org/build/233215277 at 2023-09-02
+  - asset-map # failure in job https://hydra.nixos.org/build/233218566 at 2023-09-02
+  - assoc-list # failure in job https://hydra.nixos.org/build/233224148 at 2023-09-02
+  - assoc-listlike # failure in job https://hydra.nixos.org/build/233200483 at 2023-09-02
+  - assumpta # failure in job https://hydra.nixos.org/build/233245580 at 2023-09-02
+  - ast-monad # failure in job https://hydra.nixos.org/build/233192822 at 2023-09-02
+  - astrds # failure in job https://hydra.nixos.org/build/233220701 at 2023-09-02
+  - astro # failure in job https://hydra.nixos.org/build/233243443 at 2023-09-02
+  - async-combinators # failure in job https://hydra.nixos.org/build/233198111 at 2023-09-02
+  - async-dejafu # failure in job https://hydra.nixos.org/build/233254234 at 2023-09-02
+  - asynchronous-exceptions # failure in job https://hydra.nixos.org/build/233218419 at 2023-09-02
+  - async-manager # failure in job https://hydra.nixos.org/build/233246552 at 2023-09-02
+  - async-timer # failure in job https://hydra.nixos.org/build/233200611 at 2023-09-02
+  - aterm # failure in job https://hydra.nixos.org/build/233226675 at 2023-09-02
+  - atlassian-connect-descriptor # failure in job https://hydra.nixos.org/build/233249503 at 2023-09-02
+  - atndapi # failure in job https://hydra.nixos.org/build/233223849 at 2023-09-02
+  - atom # failure in job https://hydra.nixos.org/build/233193561 at 2023-09-02
+  - atomic-modify # failure in job https://hydra.nixos.org/build/233220400 at 2023-09-02
+  - atomic-primops-vector # failure in job https://hydra.nixos.org/build/233228512 at 2023-09-02
+  - atomo # failure in job https://hydra.nixos.org/build/233257502 at 2023-09-02
+  - atp-haskell # failure in job https://hydra.nixos.org/build/233202077 at 2023-09-02
+  - ats-format # failure in job https://hydra.nixos.org/build/233254532 at 2023-09-02
+  - ats-pkg # failure in job https://hydra.nixos.org/build/233232354 at 2023-09-02
+  - ats-setup # failure in job https://hydra.nixos.org/build/233240435 at 2023-09-02
+  - ats-storable # failure in job https://hydra.nixos.org/build/233242765 at 2023-09-02
+  - attempt # failure in job https://hydra.nixos.org/build/233233073 at 2023-09-02
+  - attic-schedule # failure in job https://hydra.nixos.org/build/233249781 at 2023-09-02
+  - AttoBencode # failure in job https://hydra.nixos.org/build/233198079 at 2023-09-02
+  - atto-lisp # failure in job https://hydra.nixos.org/build/233222679 at 2023-09-02
+  - attomail # failure in job https://hydra.nixos.org/build/233225937 at 2023-09-02
+  - attoparsec-csv # failure in job https://hydra.nixos.org/build/233245402 at 2023-09-02
+  - attoparsec-text # failure in job https://hydra.nixos.org/build/233227820 at 2023-09-02
+  - attoparsec-trans # failure in job https://hydra.nixos.org/build/233203168 at 2023-09-02
+  - attoparsec-varword # failure in job https://hydra.nixos.org/build/233234240 at 2023-09-02
+  - attosplit # failure in job https://hydra.nixos.org/build/233203118 at 2023-09-02
+  - Attrac # failure in job https://hydra.nixos.org/build/234459267 at 2023-09-13
+  - augeas # failure in job https://hydra.nixos.org/build/233228677 at 2023-09-02
+  - augur # failure in job https://hydra.nixos.org/build/233223910 at 2023-09-02
+  - aur-api # failure in job https://hydra.nixos.org/build/233237328 at 2023-09-02
+  - aur # failure in job https://hydra.nixos.org/build/233239429 at 2023-09-02
+  - Aurochs # failure in job https://hydra.nixos.org/build/233244773 at 2023-09-02
+  - authenticate-ldap # failure in job https://hydra.nixos.org/build/233216602 at 2023-09-02
+  - authinfo-hs # failure in job https://hydra.nixos.org/build/233224767 at 2023-09-02
+  - auto # failure in job https://hydra.nixos.org/build/233211088 at 2023-09-02
+  - autom # failure in job https://hydra.nixos.org/build/234461198 at 2023-09-13
+  - autonix-deps # failure in job https://hydra.nixos.org/build/233258269 at 2023-09-02
+  - autopack # failure in job https://hydra.nixos.org/build/233215025 at 2023-09-02
+  - avatar-generator # failure in job https://hydra.nixos.org/build/233214253 at 2023-09-02
+  - aviation-units # failure in job https://hydra.nixos.org/build/233245762 at 2023-09-02
+  - avl-static # failure in job https://hydra.nixos.org/build/233199062 at 2023-09-02
+  - avro-piper # failure in job https://hydra.nixos.org/build/233197510 at 2023-09-02
+  - avr-shake # failure in job https://hydra.nixos.org/build/233223187 at 2023-09-02
+  - avwx # failure in job https://hydra.nixos.org/build/233258167 at 2023-09-02
+  - awesome-prelude # failure in job https://hydra.nixos.org/build/233232761 at 2023-09-02
+  - awesomium-raw # failure in job https://hydra.nixos.org/build/233241036 at 2023-09-02
+  - aws-cloudfront-signer # failure in job https://hydra.nixos.org/build/233194723 at 2023-09-02
+  - aws-ec2 # failure in job https://hydra.nixos.org/build/233201556 at 2023-09-02
+  - aws-ec2-knownhosts # failure in job https://hydra.nixos.org/build/233237078 at 2023-09-02
+  - aws-general # failure in job https://hydra.nixos.org/build/233211106 at 2023-09-02
+  - aws-lambda-runtime # failure in job https://hydra.nixos.org/build/233195123 at 2023-09-02
+  - aws-larpi # failure in job https://hydra.nixos.org/build/233246059 at 2023-09-02
+  - aws-performance-tests # failure in job https://hydra.nixos.org/build/233259271 at 2023-09-02
+  - aws-route53 # failure in job https://hydra.nixos.org/build/233218200 at 2023-09-02
+  - aws-sdk-text-converter # failure in job https://hydra.nixos.org/build/233237525 at 2023-09-02
+  - azubi # failure in job https://hydra.nixos.org/build/233258480 at 2023-09-02
+  - azure-acs # failure in job https://hydra.nixos.org/build/233252578 at 2023-09-02
+  - azure-email # failure in job https://hydra.nixos.org/build/233255535 at 2023-09-02
+  - azurify # failure in job https://hydra.nixos.org/build/233239263 at 2023-09-02
+  - babl # failure in job https://hydra.nixos.org/build/233204665 at 2023-09-02
+  - backstop # failure in job https://hydra.nixos.org/build/233223957 at 2023-09-02
+  - backtracking-exceptions # failure in job https://hydra.nixos.org/build/233233211 at 2023-09-02
+  - backward-state # failure in job https://hydra.nixos.org/build/233196922 at 2023-09-02
+  - bag # failure in job https://hydra.nixos.org/build/233250281 at 2023-09-02
+  - Baggins # failure in job https://hydra.nixos.org/build/233192786 at 2023-09-02
+  - bake # failure in job https://hydra.nixos.org/build/233211889 at 2023-09-02
+  - Bang # failure in job https://hydra.nixos.org/build/233226846 at 2023-09-02
+  - banwords # failure in job https://hydra.nixos.org/build/233229703 at 2023-09-02
+  - barbies-th # failure in job https://hydra.nixos.org/build/233251598 at 2023-09-02
+  - barchart # failure in job https://hydra.nixos.org/build/233216957 at 2023-09-02
+  - barcodes-code128 # failure in job https://hydra.nixos.org/build/233227808 at 2023-09-02
+  - barecheck # failure in job https://hydra.nixos.org/build/233231208 at 2023-09-02
+  - barrie # failure in job https://hydra.nixos.org/build/233220267 at 2023-09-02
+  - barrier # failure in job https://hydra.nixos.org/build/233229384 at 2023-09-02
+  - barrier-monad # failure in job https://hydra.nixos.org/build/233215823 at 2023-09-02
+  - base16-lens # failure in job https://hydra.nixos.org/build/233229864 at 2023-09-02
+  - base32-lens # failure in job https://hydra.nixos.org/build/233226670 at 2023-09-02
+  - base58address # failure in job https://hydra.nixos.org/build/233221633 at 2023-09-02
+  - base62 # failure in job https://hydra.nixos.org/build/233250040 at 2023-09-02
+  - base64-conduit # failure in job https://hydra.nixos.org/build/233197196 at 2023-09-02
+  - base64-lens # failure in job https://hydra.nixos.org/build/233252600 at 2023-09-02
+  - base-compat-migrate # failure in job https://hydra.nixos.org/build/233208966 at 2023-09-02
+  - based # failure in job https://hydra.nixos.org/build/233211900 at 2023-09-02
+  - base-encoding # failure in job https://hydra.nixos.org/build/233232516 at 2023-09-02
+  - base-feature-macros # failure in job https://hydra.nixos.org/build/233212558 at 2023-09-02
+  - base-generics # failure in job https://hydra.nixos.org/build/233198530 at 2023-09-02
+  - base-io-access # failure in job https://hydra.nixos.org/build/233249224 at 2023-09-02
+  - basement-cd # failure in job https://hydra.nixos.org/build/233191991 at 2023-09-02
+  - basen # failure in job https://hydra.nixos.org/build/233210680 at 2023-09-02
+  - basex-client # failure in job https://hydra.nixos.org/build/233214592 at 2023-09-02
+  - basic-sop # failure in job https://hydra.nixos.org/build/233253357 at 2023-09-02
+  - baskell # failure in job https://hydra.nixos.org/build/233246705 at 2023-09-02
+  - battlenet # failure in job https://hydra.nixos.org/build/233260076 at 2023-09-02
+  - battleplace # failure in job https://hydra.nixos.org/build/233230199 at 2023-09-02
+  - bazel-coverage-report-renderer # failure in job https://hydra.nixos.org/build/233243746 at 2023-09-02
+  - BCMtools # failure in job https://hydra.nixos.org/build/233250221 at 2023-09-02
+  - bdd # failure in job https://hydra.nixos.org/build/233248150 at 2023-09-02
+  - bdelta # failure in job https://hydra.nixos.org/build/233214765 at 2023-09-02
+  - bdo # failure in job https://hydra.nixos.org/build/233216486 at 2023-09-02
+  - beamable # failure in job https://hydra.nixos.org/build/233211619 at 2023-09-02
+  - beam # failure in job https://hydra.nixos.org/build/233213313 at 2023-09-02
+  - beam-mysql # failure in job https://hydra.nixos.org/build/233253237 at 2023-09-02
+  - beam-newtype-field # failure in job https://hydra.nixos.org/build/233206317 at 2023-09-02
+  - bech32 # failure in job https://hydra.nixos.org/build/233194823 at 2023-09-02
+  - bed-and-breakfast # failure in job https://hydra.nixos.org/build/233221152 at 2023-09-02
+  - Befunge93 # failure in job https://hydra.nixos.org/build/233226751 at 2023-09-02
+  - bench-graph # failure in job https://hydra.nixos.org/build/233239830 at 2023-09-02
+  - BenchmarkHistory # failure in job https://hydra.nixos.org/build/233213179 at 2023-09-02
+  - bench-show # failure in job https://hydra.nixos.org/build/233245858 at 2023-09-02
+  - bencodex # failure in job https://hydra.nixos.org/build/233203593 at 2023-09-02
+  - bencoding-lens # failure in job https://hydra.nixos.org/build/233236760 at 2023-09-02
+  - berkeleydb # failure in job https://hydra.nixos.org/build/233216507 at 2023-09-02
+  - BerkeleyDBXML # failure in job https://hydra.nixos.org/build/233216219 at 2023-09-02
+  - berp # failure in job https://hydra.nixos.org/build/233243070 at 2023-09-02
+  - bert # failure in job https://hydra.nixos.org/build/233195424 at 2023-09-02
+  - besout # failure in job https://hydra.nixos.org/build/233194433 at 2023-09-02
+  - betacode # failure in job https://hydra.nixos.org/build/233193221 at 2023-09-02
+  - bet # failure in job https://hydra.nixos.org/build/233205655 at 2023-09-02
+  - betris # failure in job https://hydra.nixos.org/build/233200110 at 2023-09-02
+  - bgmax # failure in job https://hydra.nixos.org/build/233222709 at 2023-09-02
+  - bgzf # failure in job https://hydra.nixos.org/build/233224580 at 2023-09-02
+  - bibdb # failure in job https://hydra.nixos.org/build/233210682 at 2023-09-02
+  - bidi-icu # failure in job https://hydra.nixos.org/build/233257520 at 2023-09-02
+  - bidirectional # failure in job https://hydra.nixos.org/build/233239780 at 2023-09-02
+  - bidirectional-instances # failure in job https://hydra.nixos.org/build/233244611 at 2023-09-02
+  - bidirectionalization-combined # failure in job https://hydra.nixos.org/build/233206201 at 2023-09-02
+  - bidispec-extras # failure in job https://hydra.nixos.org/build/233235808 at 2023-09-02
+  - bidispec # failure in job https://hydra.nixos.org/build/233199029 at 2023-09-02
+  - BiGUL # failure in job https://hydra.nixos.org/build/233258614 at 2023-09-02
+  - billeksah-services # failure in job https://hydra.nixos.org/build/233195677 at 2023-09-02
+  - binary-bits # failure in job https://hydra.nixos.org/build/233199968 at 2023-09-02
+  - binary-communicator # failure in job https://hydra.nixos.org/build/233248642 at 2023-09-02
+  - binary-derive # failure in job https://hydra.nixos.org/build/233201950 at 2023-09-02
+  - binary-ext # failure in job https://hydra.nixos.org/build/233247463 at 2023-09-02
+  - binary-indexed-tree # failure in job https://hydra.nixos.org/build/233204069 at 2023-09-02
+  - binary-parsers # failure in job https://hydra.nixos.org/build/233194579 at 2023-09-02
+  - binary-protocol # failure in job https://hydra.nixos.org/build/233206098 at 2023-09-02
+  - binary-strict # failure in job https://hydra.nixos.org/build/233231473 at 2023-09-02
+  - binary-tree # failure in job https://hydra.nixos.org/build/233211047 at 2023-09-02
+  - binary-typed # failure in job https://hydra.nixos.org/build/233222741 at 2023-09-02
+  - BinderAnn # failure in job https://hydra.nixos.org/build/233197117 at 2023-09-02
+  - binding-core # failure in job https://hydra.nixos.org/build/233223706 at 2023-09-02
+  - bindings-apr # failure in job https://hydra.nixos.org/build/233212499 at 2023-09-02
+  - bindings-bfd # failure in job https://hydra.nixos.org/build/233210763 at 2023-09-02
+  - bindings-cctools # failure in job https://hydra.nixos.org/build/233216939 at 2023-09-02
+  - bindings-common # failure in job https://hydra.nixos.org/build/233217363 at 2023-09-02
+  - bindings-dc1394 # failure in job https://hydra.nixos.org/build/233200022 at 2023-09-02
+  - bindings-eskit # failure in job https://hydra.nixos.org/build/233223517 at 2023-09-02
+  - bindings-EsounD # failure in job https://hydra.nixos.org/build/233245565 at 2023-09-02
+  - bindings-fann # failure in job https://hydra.nixos.org/build/233232900 at 2023-09-02
+  - bindings-fluidsynth # failure in job https://hydra.nixos.org/build/233221612 at 2023-09-02
+  - bindings-friso # failure in job https://hydra.nixos.org/build/233201584 at 2023-09-02
+  - bindings-gsl # failure in job https://hydra.nixos.org/build/233243360 at 2023-09-02
+  - bindings-hamlib # failure in job https://hydra.nixos.org/build/233259986 at 2023-09-02
+  - bindings-hdf5 # failure in job https://hydra.nixos.org/build/233215409 at 2023-09-02
+  - bindings-K8055 # failure in job https://hydra.nixos.org/build/233192986 at 2023-09-02
+  - bindings-libftdi # failure in job https://hydra.nixos.org/build/233256908 at 2023-09-02
+  - bindings-libg15 # failure in job https://hydra.nixos.org/build/233207984 at 2023-09-02
+  - bindings-libpci # failure in job https://hydra.nixos.org/build/233200095 at 2023-09-02
+  - bindings-librrd # failure in job https://hydra.nixos.org/build/233207396 at 2023-09-02
+  - bindings-libstemmer # failure in job https://hydra.nixos.org/build/233199518 at 2023-09-02
+  - bindings-libusb # failure in job https://hydra.nixos.org/build/233224303 at 2023-09-02
+  - bindings-libv4l2 # failure in job https://hydra.nixos.org/build/233236316 at 2023-09-02
+  - bindings-monetdb-mapi # failure in job https://hydra.nixos.org/build/233219584 at 2023-09-02
+  - bindings-mpdecimal # failure in job https://hydra.nixos.org/build/233235379 at 2023-09-02
+  - bindings-sc3 # failure in job https://hydra.nixos.org/build/233198459 at 2023-09-02
+  - bindings-sipc # failure in job https://hydra.nixos.org/build/233219411 at 2023-09-02
+  - bindings-wlc # failure in job https://hydra.nixos.org/build/233332720 at 2023-09-02
+  - bind-marshal # failure in job https://hydra.nixos.org/build/233196758 at 2023-09-02
+  - binembed # failure in job https://hydra.nixos.org/build/233219100 at 2023-09-02
+  - binrep # failure in job https://hydra.nixos.org/build/233208877 at 2023-09-02
+  - binsm # failure in job https://hydra.nixos.org/build/233232355 at 2023-09-02
+  - biocore # failure in job https://hydra.nixos.org/build/233229466 at 2023-09-02
+  - bio # failure in job https://hydra.nixos.org/build/233225273 at 2023-09-02
+  - biohazard # failure in job https://hydra.nixos.org/build/233249284 at 2023-09-02
+  - bio-sequence # failure in job https://hydra.nixos.org/build/233236140 at 2023-09-02
+  - biscuit-haskell # failure in job https://hydra.nixos.org/build/233241833 at 2023-09-02
+  - bisect-binary # failure in job https://hydra.nixos.org/build/233190746 at 2023-09-02
+  - bitcoind-rpc # failure in job https://hydra.nixos.org/build/233204068 at 2023-09-02
+  - bitcoin-hs # failure in job https://hydra.nixos.org/build/233251583 at 2023-09-02
+  - bitcoin-keys # failure in job https://hydra.nixos.org/build/233215632 at 2023-09-02
+  - bitcoin-rpc # failure in job https://hydra.nixos.org/build/233209694 at 2023-09-02
+  - bitcoin-script # failure in job https://hydra.nixos.org/build/233201469 at 2023-09-02
+  - bitfield # failure in job https://hydra.nixos.org/build/233235414 at 2023-09-02
+  - bits-atomic # failure in job https://hydra.nixos.org/build/233236099 at 2023-09-02
+  - bits-conduit # failure in job https://hydra.nixos.org/build/233236564 at 2023-09-02
+  - bitset # failure in job https://hydra.nixos.org/build/233218622 at 2023-09-02
+  - bits-extras # failure in job https://hydra.nixos.org/build/233217492 at 2023-09-02
+  - bitspeak # failure in job https://hydra.nixos.org/build/233219582 at 2023-09-02
+  - bit-stream # failure in job https://hydra.nixos.org/build/233230353 at 2023-09-02
+  - bitstream # failure in job https://hydra.nixos.org/build/233240888 at 2023-09-02
+  - BitStringRandomMonad # failure in job https://hydra.nixos.org/build/233203519 at 2023-09-02
+  - BitSyntax # failure in job https://hydra.nixos.org/build/233211551 at 2023-09-02
+  - bitx-bitcoin # failure in job https://hydra.nixos.org/build/233215594 at 2023-09-02
+  - bizzlelude # failure in job https://hydra.nixos.org/build/233255574 at 2023-09-02
+  - bizzlelude-js # failure in job https://hydra.nixos.org/build/233224267 at 2023-09-02
+  - bkr # failure in job https://hydra.nixos.org/build/233246377 at 2023-09-02
+  - blagda # failure in job https://hydra.nixos.org/build/233332725 at 2023-09-02
+  - blakesum # failure in job https://hydra.nixos.org/build/233194284 at 2023-09-02
+  - blas # failure in job https://hydra.nixos.org/build/233244820 at 2023-09-02
+  - blaze-html-contrib # failure in job https://hydra.nixos.org/build/233203969 at 2023-09-02
+  - blaze-html-hexpat # failure in job https://hydra.nixos.org/build/233251654 at 2023-09-02
+  - blaze-html-truncate # failure in job https://hydra.nixos.org/build/233220789 at 2023-09-02
+  - blaze-json # failure in job https://hydra.nixos.org/build/233241853 at 2023-09-02
+  - blaze-shields # failure in job https://hydra.nixos.org/build/233214358 at 2023-09-02
+  - blaze-textual-native # failure in job https://hydra.nixos.org/build/233250559 at 2023-09-02
+  - blazeT # failure in job https://hydra.nixos.org/build/233245198 at 2023-09-02
+  - blindpass # failure in job https://hydra.nixos.org/build/233210012 at 2023-09-02
+  - bliplib # failure in job https://hydra.nixos.org/build/233195751 at 2023-09-02
+  - blockchain # failure in job https://hydra.nixos.org/build/233245492 at 2023-09-02
+  - blockhash # failure in job https://hydra.nixos.org/build/233227049 at 2023-09-02
+  - Blogdown # failure in job https://hydra.nixos.org/build/233239841 at 2023-09-02
+  - BlogLiterately # failure in job https://hydra.nixos.org/build/233202164 at 2023-09-02
+  - bloomfilter-redis # failure in job https://hydra.nixos.org/build/233226393 at 2023-09-02
+  - blosum # failure in job https://hydra.nixos.org/build/233198029 at 2023-09-02
+  - blubber-server # failure in job https://hydra.nixos.org/build/233199530 at 2023-09-02
+  - bludigon # failure in job https://hydra.nixos.org/build/233248190 at 2023-09-02
+  - Blueprint # failure in job https://hydra.nixos.org/build/233252987 at 2023-09-02
+  - bluetileutils # failure in job https://hydra.nixos.org/build/233197334 at 2023-09-02
+  - blunk-hask-tests # failure in job https://hydra.nixos.org/build/233240288 at 2023-09-02
+  - bogocopy # failure in job https://hydra.nixos.org/build/233232322 at 2023-09-02
+  - boilerplate # failure in job https://hydra.nixos.org/build/233252821 at 2023-09-02
+  - bolt # failure in job https://hydra.nixos.org/build/233234045 at 2023-09-02
+  - boltzmann-brain # failure in job https://hydra.nixos.org/build/233220308 at 2023-09-02
+  - bookhound-format # failure in job https://hydra.nixos.org/build/233202674 at 2023-09-02
+  - bookkeeping # failure in job https://hydra.nixos.org/build/233241963 at 2023-09-02
+  - boolean-like # failure in job https://hydra.nixos.org/build/233190873 at 2023-09-02
+  - boolean-normal-forms # failure in job https://hydra.nixos.org/build/233220091 at 2023-09-02
+  - boombox # failure in job https://hydra.nixos.org/build/233249287 at 2023-09-02
+  - boring-window-switcher # failure in job https://hydra.nixos.org/build/233252547 at 2023-09-02
+  - bot # failure in job https://hydra.nixos.org/build/233230089 at 2023-09-02
+  - botpp # failure in job https://hydra.nixos.org/build/233201674 at 2023-09-02
+  - bottom # failure in job https://hydra.nixos.org/build/233225154 at 2023-09-02
+  - bounded-array # failure in job https://hydra.nixos.org/build/233200854 at 2023-09-02
+  - bound-simple # failure in job https://hydra.nixos.org/build/233201896 at 2023-09-02
+  - bowntz # failure in job https://hydra.nixos.org/build/234439552 at 2023-09-13
+  - box-csv # failure in job https://hydra.nixos.org/build/233253321 at 2023-09-02
+  - box-tuples # failure in job https://hydra.nixos.org/build/233205890 at 2023-09-02
+  - bpath # failure in job https://hydra.nixos.org/build/233239160 at 2023-09-02
+  - braid # failure in job https://hydra.nixos.org/build/233244144 at 2023-09-02
+  - brain-bleep # failure in job https://hydra.nixos.org/build/233198839 at 2023-09-02
+  - brassica # failure in job https://hydra.nixos.org/build/233224897 at 2023-09-02
+  - Bravo # failure in job https://hydra.nixos.org/build/233199668 at 2023-09-02
+  - brians-brain # failure in job https://hydra.nixos.org/build/233201634 at 2023-09-02
+  - brick-dropdownmenu # failure in job https://hydra.nixos.org/build/233223686 at 2023-09-02
+  - brick-filetree # failure in job https://hydra.nixos.org/build/233217076 at 2023-09-02
+  - brick-list-search # failure in job https://hydra.nixos.org/build/233193835 at 2023-09-02
+  - brick-panes # failure in job https://hydra.nixos.org/build/233207542 at 2023-09-02
+  - bricks-internal # failure in job https://hydra.nixos.org/build/233215572 at 2023-09-02
+  - brillig # failure in job https://hydra.nixos.org/build/233208148 at 2023-09-02
+  - brittany # failure in job https://hydra.nixos.org/build/233234100 at 2023-09-02
+  - broadcast-chan-tests # failure in job https://hydra.nixos.org/build/233202605 at 2023-09-02
+  - broccoli # failure in job https://hydra.nixos.org/build/233191381 at 2023-09-02
+  - broker-haskell # failure in job https://hydra.nixos.org/build/233200969 at 2023-09-02
+  - brok # failure in job https://hydra.nixos.org/build/233214233 at 2023-09-02
+  - bronyradiogermany-common # failure in job https://hydra.nixos.org/build/233211166 at 2023-09-02
+  - brotli-conduit # failure in job https://hydra.nixos.org/build/233249983 at 2023-09-02
+  - browscap # failure in job https://hydra.nixos.org/build/233196112 at 2023-09-02
+  - bsd-sysctl # failure in job https://hydra.nixos.org/build/233203232 at 2023-09-02
+  - bson-generic # failure in job https://hydra.nixos.org/build/233237712 at 2023-09-02
+  - bson-generics # failure in job https://hydra.nixos.org/build/233251530 at 2023-09-02
+  - bson-mapping # failure in job https://hydra.nixos.org/build/233242165 at 2023-09-02
+  - bsparse # failure in job https://hydra.nixos.org/build/233243753 at 2023-09-02
+  - btree-concurrent # failure in job https://hydra.nixos.org/build/233201065 at 2023-09-02
+  - btrfs # failure in job https://hydra.nixos.org/build/233220699 at 2023-09-02
+  - buffer-builder-aeson # failure in job https://hydra.nixos.org/build/233198028 at 2023-09-02
+  - BufferedSocket # failure in job https://hydra.nixos.org/build/233222939 at 2023-09-02
+  - buffer # failure in job https://hydra.nixos.org/build/233216007 at 2023-09-02
+  - buffet # failure in job https://hydra.nixos.org/build/233250252 at 2023-09-02
+  - buffon # failure in job https://hydra.nixos.org/build/233241665 at 2023-09-02
+  - buffon-machines # failure in job https://hydra.nixos.org/build/233257929 at 2023-09-02
+  - bugzilla # failure in job https://hydra.nixos.org/build/233223784 at 2023-09-02
+  - buildable # failure in job https://hydra.nixos.org/build/233199077 at 2023-09-02
+  - buildbox # failure in job https://hydra.nixos.org/build/233216315 at 2023-09-02
+  - builder # failure in job https://hydra.nixos.org/build/233207846 at 2023-09-02
+  - build # failure in job https://hydra.nixos.org/build/233195606 at 2023-09-02
+  - bumper # failure in job https://hydra.nixos.org/build/233234378 at 2023-09-02
+  - bunz # failure in job https://hydra.nixos.org/build/233193945 at 2023-09-02
+  - burst-detection # failure in job https://hydra.nixos.org/build/233254074 at 2023-09-02
+  - buster # failure in job https://hydra.nixos.org/build/233197502 at 2023-09-02
+  - Buster # failure in job https://hydra.nixos.org/build/233214182 at 2023-09-02
+  - butter # failure in job https://hydra.nixos.org/build/233212117 at 2023-09-02
+  - buttplug-hs-core # failure in job https://hydra.nixos.org/build/233223928 at 2023-09-02
+  - bv-little # failure in job https://hydra.nixos.org/build/233253839 at 2023-09-02
+  - bv-sized-lens # failure in job https://hydra.nixos.org/build/233237486 at 2023-09-02
+  - byline # failure in job https://hydra.nixos.org/build/233231017 at 2023-09-02
+  - bytearray-parsing # failure in job https://hydra.nixos.org/build/233244355 at 2023-09-02
+  - bytestring-arbitrary # failure in job https://hydra.nixos.org/build/233195013 at 2023-09-02
+  - bytestring-class # failure in job https://hydra.nixos.org/build/233230793 at 2023-09-02
+  - bytestring-conversion # failure in job https://hydra.nixos.org/build/233211464 at 2023-09-02
+  - bytestring-csv # failure in job https://hydra.nixos.org/build/233215194 at 2023-09-02
+  - bytestring-delta # failure in job https://hydra.nixos.org/build/233207977 at 2023-09-02
+  - bytestring-handle # failure in job https://hydra.nixos.org/build/233192234 at 2023-09-02
+  - bytestringparser # failure in job https://hydra.nixos.org/build/233227781 at 2023-09-02
+  - bytestringparser-temporary # failure in job https://hydra.nixos.org/build/233226655 at 2023-09-02
+  - bytestring-plain # failure in job https://hydra.nixos.org/build/233230746 at 2023-09-02
+  - bytestringreadp # failure in job https://hydra.nixos.org/build/233209066 at 2023-09-02
+  - bytestring-rematch # failure in job https://hydra.nixos.org/build/233228234 at 2023-09-02
+  - bytestring-show # failure in job https://hydra.nixos.org/build/233207681 at 2023-09-02
+  - bytestring-substring # failure in job https://hydra.nixos.org/build/233244318 at 2023-09-02
+  - bytestring-time # failure in job https://hydra.nixos.org/build/233190686 at 2023-09-02
+  - bytestring-typenats # failure in job https://hydra.nixos.org/build/233211815 at 2023-09-02
+  - bzlib-conduit-jappie # failure in job https://hydra.nixos.org/build/233210179 at 2023-09-02
+  - c10k # failure in job https://hydra.nixos.org/build/233213264 at 2023-09-02
+  - c2ats # failure in job https://hydra.nixos.org/build/233220801 at 2023-09-02
+  - cabal2doap # failure in job https://hydra.nixos.org/build/233207973 at 2023-09-02
+  - cabal2ebuild # failure in job https://hydra.nixos.org/build/233221248 at 2023-09-02
+  - cabal2ghci # failure in job https://hydra.nixos.org/build/233233018 at 2023-09-02
+  - cabal2json # failure in job https://hydra.nixos.org/build/233196099 at 2023-09-02
+  - cabal-audit # failure in job https://hydra.nixos.org/build/233193414 at 2023-09-02
+  - cabal-auto-expose # failure in job https://hydra.nixos.org/build/233195440 at 2023-09-02
+  - cabal-bundle-clib # failure in job https://hydra.nixos.org/build/233199225 at 2023-09-02
+  - cabal-constraints # failure in job https://hydra.nixos.org/build/233214316 at 2023-09-02
+  - cabal-db # failure in job https://hydra.nixos.org/build/233197235 at 2023-09-02
+  - cabal-debian # failure in job https://hydra.nixos.org/build/233255267 at 2023-09-02
+  - cabal-dependency-licenses # failure in job https://hydra.nixos.org/build/233249247 at 2023-09-02
+  - cabal-dev # failure in job https://hydra.nixos.org/build/233227918 at 2023-09-02
+  - cabal-dir # failure in job https://hydra.nixos.org/build/233194037 at 2023-09-02
+  - cabal-edit # failure in job https://hydra.nixos.org/build/233244268 at 2023-09-02
+  - cabal-file-th # failure in job https://hydra.nixos.org/build/233224650 at 2023-09-02
+  - cabal-ghc-dynflags # failure in job https://hydra.nixos.org/build/233244580 at 2023-09-02
+  - cabal-ghci # failure in job https://hydra.nixos.org/build/233239354 at 2023-09-02
+  - cabal-graphdeps # failure in job https://hydra.nixos.org/build/233221966 at 2023-09-02
+  - cabalgraph # failure in job https://hydra.nixos.org/build/233241573 at 2023-09-02
+  - cabal-hoogle # failure in job https://hydra.nixos.org/build/233191666 at 2023-09-02
+  - Cabal-ide-backend # failure in job https://hydra.nixos.org/build/233258880 at 2023-09-02
+  - cabal-info # failure in job https://hydra.nixos.org/build/233225001 at 2023-09-02
+  - cabal-install-bundle # failure in job https://hydra.nixos.org/build/233194629 at 2023-09-02
+  - cabal-install-ghc72 # failure in job https://hydra.nixos.org/build/233246160 at 2023-09-02
+  - cabal-install-ghc74 # failure in job https://hydra.nixos.org/build/233226625 at 2023-09-02
+  - cabalish # failure in job https://hydra.nixos.org/build/233193578 at 2023-09-02
+  - cabal-lenses # failure in job https://hydra.nixos.org/build/233247565 at 2023-09-02
+  - cabal-meta # failure in job https://hydra.nixos.org/build/233194466 at 2023-09-02
+  - cabal-mon # failure in job https://hydra.nixos.org/build/233217320 at 2023-09-02
+  - cabal-nirvana # failure in job https://hydra.nixos.org/build/233222083 at 2023-09-02
+  - cabal-plan # failure in job https://hydra.nixos.org/build/233223914 at 2023-09-02
+  - cabal-progdeps # failure in job https://hydra.nixos.org/build/233251917 at 2023-09-02
+  - cabalQuery # failure in job https://hydra.nixos.org/build/233211475 at 2023-09-02
+  - CabalSearch # failure in job https://hydra.nixos.org/build/233200817 at 2023-09-02
+  - cabal-setup # failure in job https://hydra.nixos.org/build/233225406 at 2023-09-02
+  - cabal-sort # failure in job https://hydra.nixos.org/build/233240882 at 2023-09-02
+  - cabal-src # failure in job https://hydra.nixos.org/build/233229475 at 2023-09-02
+  - cabal-test-quickcheck # failure in job https://hydra.nixos.org/build/233211903 at 2023-09-02
+  - cabal-toolkit # failure in job https://hydra.nixos.org/build/233192328 at 2023-09-02
+  - cabal-upload # failure in job https://hydra.nixos.org/build/233207791 at 2023-09-02
+  - cabalvchk # failure in job https://hydra.nixos.org/build/233221561 at 2023-09-02
+  - cabin # failure in job https://hydra.nixos.org/build/233225287 at 2023-09-02
+  - cabocha # failure in job https://hydra.nixos.org/build/233259983 at 2023-09-02
+  - cached # failure in job https://hydra.nixos.org/build/233249807 at 2023-09-02
+  - cache-polysemy # failure in job https://hydra.nixos.org/build/233200602 at 2023-09-02
+  - caching # failure in job https://hydra.nixos.org/build/233233548 at 2023-09-02
+  - cacophony # failure in job https://hydra.nixos.org/build/233239380 at 2023-09-02
+  - cafeteria-prelude # failure in job https://hydra.nixos.org/build/233254881 at 2023-09-02
+  - cairo-core # failure in job https://hydra.nixos.org/build/233248151 at 2023-09-02
+  - cake3 # failure in job https://hydra.nixos.org/build/233231662 at 2023-09-02
+  - cal3d # failure in job https://hydra.nixos.org/build/233200357 at 2023-09-02
+  - caledon # failure in job https://hydra.nixos.org/build/233209888 at 2023-09-02
+  - calenderweek # failure in job https://hydra.nixos.org/build/233209930 at 2023-09-02
+  - call-alloy # failure in job https://hydra.nixos.org/build/233249056 at 2023-09-02
+  - cal-layout # failure in job https://hydra.nixos.org/build/233191194 at 2023-09-02
+  - call-haskell-from-anything # failure in job https://hydra.nixos.org/build/233222493 at 2023-09-02
+  - call-plantuml # failure in job https://hydra.nixos.org/build/233241670 at 2023-09-02
+  - canon # failure in job https://hydra.nixos.org/build/233235027 at 2023-09-02
+  - canonical-filepath # failure in job https://hydra.nixos.org/build/233233390 at 2023-09-02
+  - canteven-listen-http # failure in job https://hydra.nixos.org/build/233210500 at 2023-09-02
+  - canteven-log # failure in job https://hydra.nixos.org/build/233220599 at 2023-09-02
+  - canteven-parsedate # failure in job https://hydra.nixos.org/build/233218076 at 2023-09-02
+  - cantor # failure in job https://hydra.nixos.org/build/233204922 at 2023-09-02
+  - Capabilities # failure in job https://hydra.nixos.org/build/233233256 at 2023-09-02
+  - capataz # failure in job https://hydra.nixos.org/build/233226186 at 2023-09-02
+  - ca-patterns # failure in job https://hydra.nixos.org/build/233246800 at 2023-09-02
+  - capped-list # failure in job https://hydra.nixos.org/build/233232627 at 2023-09-02
+  - capri # failure in job https://hydra.nixos.org/build/233247984 at 2023-09-02
+  - caramia # failure in job https://hydra.nixos.org/build/233257225 at 2023-09-02
+  - carbonara # failure in job https://hydra.nixos.org/build/233201166 at 2023-09-02
+  - carettah # failure in job https://hydra.nixos.org/build/233230612 at 2023-09-02
+  - CarneadesDSL # failure in job https://hydra.nixos.org/build/233236706 at 2023-09-02
+  - carte # failure in job https://hydra.nixos.org/build/233201806 at 2023-09-02
+  - Cartesian # failure in job https://hydra.nixos.org/build/233249956 at 2023-09-02
+  - casa-abbreviations-and-acronyms # failure in job https://hydra.nixos.org/build/233194663 at 2023-09-02
+  - casadi-bindings-internal # failure in job https://hydra.nixos.org/build/233256224 at 2023-09-02
+  - Cascade # failure in job https://hydra.nixos.org/build/233223917 at 2023-09-02
+  - cascading # failure in job https://hydra.nixos.org/build/233238563 at 2023-09-02
+  - case-insensitive-match # failure in job https://hydra.nixos.org/build/233252304 at 2023-09-02
+  - caseof # failure in job https://hydra.nixos.org/build/233256025 at 2023-09-02
+  - cas-hashable # failure in job https://hydra.nixos.org/build/233238789 at 2023-09-02
+  - casr-logbook # failure in job https://hydra.nixos.org/build/233227183 at 2023-09-02
+  - casr-logbook-types # failure in job https://hydra.nixos.org/build/233231548 at 2023-09-02
+  - cassandra-cql # failure in job https://hydra.nixos.org/build/233194724 at 2023-09-02
+  - cassava-conduit # failure in job https://hydra.nixos.org/build/233220495 at 2023-09-02
+  - Cassava # failure in job https://hydra.nixos.org/build/233245677 at 2023-09-02
+  - cassava-records # failure in job https://hydra.nixos.org/build/233259049 at 2023-09-02
+  - cassava-streams # failure in job https://hydra.nixos.org/build/233222669 at 2023-09-02
+  - cassette # failure in job https://hydra.nixos.org/build/233201251 at 2023-09-02
+  - castagnoli # failure in job https://hydra.nixos.org/build/233213036 at 2023-09-02
+  - castle # failure in job https://hydra.nixos.org/build/233204027 at 2023-09-02
+  - catamorphism # failure in job https://hydra.nixos.org/build/233208488 at 2023-09-02
+  - Catana # failure in job https://hydra.nixos.org/build/233196550 at 2023-09-02
+  - catch-fd # failure in job https://hydra.nixos.org/build/233223935 at 2023-09-02
+  - category-printf # failure in job https://hydra.nixos.org/build/233216355 at 2023-09-02
+  - category-traced # failure in job https://hydra.nixos.org/build/233193963 at 2023-09-02
+  - catnplus # failure in job https://hydra.nixos.org/build/233241280 at 2023-09-02
+  - cautious-file # failure in job https://hydra.nixos.org/build/233218702 at 2023-09-02
+  - cautious-gen # failure in job https://hydra.nixos.org/build/233258367 at 2023-09-02
+  - cayene-lpp # failure in job https://hydra.nixos.org/build/233228959 at 2023-09-02
+  - cayley-client # failure in job https://hydra.nixos.org/build/233260112 at 2023-09-02
+  - cblrepo # failure in job https://hydra.nixos.org/build/233251926 at 2023-09-02
+  - cbor-tool # failure in job https://hydra.nixos.org/build/233198797 at 2023-09-02
+  - CCA # failure in job https://hydra.nixos.org/build/233206723 at 2023-09-02
+  - ccast # failure in job https://hydra.nixos.org/build/233254517 at 2023-09-02
+  - CC-delcont-cxe # failure in job https://hydra.nixos.org/build/233190865 at 2023-09-02
+  - CC-delcont-exc # failure in job https://hydra.nixos.org/build/233236141 at 2023-09-02
+  - CC-delcont-ref # failure in job https://hydra.nixos.org/build/233229304 at 2023-09-02
+  - CC-delcont-ref-tf # failure in job https://hydra.nixos.org/build/233257768 at 2023-09-02
+  - cci # failure in job https://hydra.nixos.org/build/233244756 at 2023-09-02
+  - ccnx # failure in job https://hydra.nixos.org/build/233237732 at 2023-09-02
+  - cdp # failure in job https://hydra.nixos.org/build/233251735 at 2023-09-02
+  - c-dsl # failure in job https://hydra.nixos.org/build/233236075 at 2023-09-02
+  - cedict # failure in job https://hydra.nixos.org/build/233206454 at 2023-09-02
+  - cef3-raw # failure in job https://hydra.nixos.org/build/233216467 at 2023-09-02
+  - cef # failure in job https://hydra.nixos.org/build/233221542 at 2023-09-02
+  - cellrenderer-cairo # failure in job https://hydra.nixos.org/build/233245838 at 2023-09-02
+  - cereal-derive # failure in job https://hydra.nixos.org/build/233229941 at 2023-09-02
+  - cereal-ieee754 # failure in job https://hydra.nixos.org/build/233208388 at 2023-09-02
+  - cereal-plus # failure in job https://hydra.nixos.org/build/233226162 at 2023-09-02
+  - cfenv # failure in job https://hydra.nixos.org/build/233235017 at 2023-09-02
+  - cf # failure in job https://hydra.nixos.org/build/233244067 at 2023-09-02
+  - cfg # failure in job https://hydra.nixos.org/build/233236445 at 2023-09-02
+  - cfn-flip # failure in job https://hydra.nixos.org/build/233221000 at 2023-09-02
+  - cgen # failure in job https://hydra.nixos.org/build/233198570 at 2023-09-02
+  - cg # failure in job https://hydra.nixos.org/build/233212272 at 2023-09-02
+  - cgi-utils # failure in job https://hydra.nixos.org/build/233251773 at 2023-09-02
+  - cgroup-rts-threads # failure in job https://hydra.nixos.org/build/233207888 at 2023-09-02
+  - chalkboard # failure in job https://hydra.nixos.org/build/234453414 at 2023-09-13
+  - chalmers-lava2000 # failure in job https://hydra.nixos.org/build/233239592 at 2023-09-02
+  - changelogged # failure in job https://hydra.nixos.org/build/233211675 at 2023-09-02
+  - character-cases # failure in job https://hydra.nixos.org/build/233197636 at 2023-09-02
+  - charter # failure in job https://hydra.nixos.org/build/233237264 at 2023-09-02
+  - chart-histogram # failure in job https://hydra.nixos.org/build/233250470 at 2023-09-02
+  - Chart-simple # failure in job https://hydra.nixos.org/build/233240919 at 2023-09-02
+  - chaselev-deque # failure in job https://hydra.nixos.org/build/233237595 at 2023-09-02
+  - chatty-text # failure in job https://hydra.nixos.org/build/233199498 at 2023-09-02
+  - chatwork # failure in job https://hydra.nixos.org/build/233240489 at 2023-09-02
+  - cheapskate # failure in job https://hydra.nixos.org/build/233197892 at 2023-09-02
+  - check-cfg-ambiguity # failure in job https://hydra.nixos.org/build/233251852 at 2023-09-02
+  - checked # failure in job https://hydra.nixos.org/build/233223182 at 2023-09-02
+  - Checked # failure in job https://hydra.nixos.org/build/233257598 at 2023-09-02
+  - checkmate # failure in job https://hydra.nixos.org/build/233248012 at 2023-09-02
+  - chez-grater # failure in job https://hydra.nixos.org/build/233213537 at 2023-09-02
+  - chiphunk # failure in job https://hydra.nixos.org/build/233232520 at 2023-09-02
+  - Chitra # failure in job https://hydra.nixos.org/build/233256826 at 2023-09-02
+  - choose # failure in job https://hydra.nixos.org/build/233194245 at 2023-09-02
+  - chorale # failure in job https://hydra.nixos.org/build/233200153 at 2023-09-02
+  - chp # failure in job https://hydra.nixos.org/build/233232868 at 2023-09-02
+  - ChristmasTree # failure in job https://hydra.nixos.org/build/233259648 at 2023-09-02
+  - chronograph # failure in job https://hydra.nixos.org/build/233232822 at 2023-09-02
+  - chr-parse # failure in job https://hydra.nixos.org/build/233243933 at 2023-09-02
+  - chunky # failure in job https://hydra.nixos.org/build/233216440 at 2023-09-02
+  - church # failure in job https://hydra.nixos.org/build/233223920 at 2023-09-02
+  - church-maybe # failure in job https://hydra.nixos.org/build/233258572 at 2023-09-02
+  - churros # failure in job https://hydra.nixos.org/build/233218976 at 2023-09-02
+  - cicero-api # failure in job https://hydra.nixos.org/build/233222299 at 2023-09-02
+  - cielo # failure in job https://hydra.nixos.org/build/233240001 at 2023-09-02
+  - cil # failure in job https://hydra.nixos.org/build/233255428 at 2023-09-02
+  - cimple # failure in job https://hydra.nixos.org/build/233243386 at 2023-09-02
+  - cinvoke # failure in job https://hydra.nixos.org/build/233244748 at 2023-09-02
+  - c-io # failure in job https://hydra.nixos.org/build/233198654 at 2023-09-02
+  - cio # failure in job https://hydra.nixos.org/build/233218269 at 2023-09-02
+  - cipher-aes128 # failure in job https://hydra.nixos.org/build/233242645 at 2023-09-02
+  - cipher-blowfish # failure in job https://hydra.nixos.org/build/233193834 at 2023-09-02
+  - cipher-des # failure in job https://hydra.nixos.org/build/233232112 at 2023-09-02
+  - circlehs # failure in job https://hydra.nixos.org/build/233246591 at 2023-09-02
+  - citeproc-hs # failure in job https://hydra.nixos.org/build/233254388 at 2023-09-02
+  - cjk # failure in job https://hydra.nixos.org/build/233258734 at 2023-09-02
+  - cj-token # failure in job https://hydra.nixos.org/build/233253928 at 2023-09-02
+  - cl3-hmatrix-interface # failure in job https://hydra.nixos.org/build/233260081 at 2023-09-02
+  - cl3-linear-interface # failure in job https://hydra.nixos.org/build/233255205 at 2023-09-02
+  - clang-compilation-database # failure in job https://hydra.nixos.org/build/233225320 at 2023-09-02
+  - clang-pure # failure in job https://hydra.nixos.org/build/233193420 at 2023-09-02
+  - clanki # failure in job https://hydra.nixos.org/build/233196970 at 2023-09-02
+  - clarifai # failure in job https://hydra.nixos.org/build/233229480 at 2023-09-02
+  - CLASE # failure in job https://hydra.nixos.org/build/233234459 at 2023-09-02
+  - clash-prelude # failure in job https://hydra.nixos.org/build/233252128 at 2023-09-02
+  - Clash-Royale-Hack-Cheats # failure in job https://hydra.nixos.org/build/233216034 at 2023-09-02
+  - ClassLaws # failure in job https://hydra.nixos.org/build/233243019 at 2023-09-02
+  - classy-influxdb-simple # failure in job https://hydra.nixos.org/build/233253418 at 2023-09-02
+  - classy-parallel # failure in job https://hydra.nixos.org/build/233213514 at 2023-09-02
+  - classyplate # failure in job https://hydra.nixos.org/build/233212613 at 2023-09-02
+  - ClassyPrelude # failure in job https://hydra.nixos.org/build/233216521 at 2023-09-02
+  - cld2 # failure in job https://hydra.nixos.org/build/233205709 at 2023-09-02
+  - Clean # failure in job https://hydra.nixos.org/build/233255199 at 2023-09-02
+  - clean-unions # failure in job https://hydra.nixos.org/build/233237582 at 2023-09-02
+  - cleff # failure in job https://hydra.nixos.org/build/233243158 at 2023-09-02
+  - clevercss # failure in job https://hydra.nixos.org/build/233206298 at 2023-09-02
+  - clexer # failure in job https://hydra.nixos.org/build/233229804 at 2023-09-02
+  - cli-builder # failure in job https://hydra.nixos.org/build/233209961 at 2023-09-02
+  - cli-extras # failure in job https://hydra.nixos.org/build/233226908 at 2023-09-02
+  - CLI # failure in job https://hydra.nixos.org/build/233191087 at 2023-09-02
+  - clif # failure in job https://hydra.nixos.org/build/233197110 at 2023-09-02
+  - clifm # failure in job https://hydra.nixos.org/build/233227426 at 2023-09-02
+  - clingo # failure in job https://hydra.nixos.org/build/233238084 at 2023-09-02
+  - clippard # failure in job https://hydra.nixos.org/build/233252884 at 2023-09-02
+  - clipper # failure in job https://hydra.nixos.org/build/233235418 at 2023-09-02
+  - clisparkline # failure in job https://hydra.nixos.org/build/233218465 at 2023-09-02
+  - clit # failure in job https://hydra.nixos.org/build/233227334 at 2023-09-02
+  - cloben # failure in job https://hydra.nixos.org/build/233194390 at 2023-09-02
+  - clocked # failure in job https://hydra.nixos.org/build/233241524 at 2023-09-02
+  - clock-extras # failure in job https://hydra.nixos.org/build/233190748 at 2023-09-02
+  - clogparse # failure in job https://hydra.nixos.org/build/233220294 at 2023-09-02
+  - clone-all # failure in job https://hydra.nixos.org/build/233234063 at 2023-09-02
+  - closed-classes # failure in job https://hydra.nixos.org/build/233250965 at 2023-09-02
+  - closed-intervals # failure in job https://hydra.nixos.org/build/233209665 at 2023-09-02
+  - closure # failure in job https://hydra.nixos.org/build/233215133 at 2023-09-02
+  - cloudfront-signer # failure in job https://hydra.nixos.org/build/233238255 at 2023-09-02
+  - clplug # failure in job https://hydra.nixos.org/build/233236794 at 2023-09-02
+  - clr-host # failure in job https://hydra.nixos.org/build/233207709 at 2023-09-02
+  - clr-typed # failure in job https://hydra.nixos.org/build/233212102 at 2023-09-02
+  - cluss # failure in job https://hydra.nixos.org/build/233245341 at 2023-09-02
+  - cmark-highlight # failure in job https://hydra.nixos.org/build/233218534 at 2023-09-02
+  - cmark-patterns # failure in job https://hydra.nixos.org/build/233192983 at 2023-09-02
+  - cmark-sections # failure in job https://hydra.nixos.org/build/233222829 at 2023-09-02
+  - cmath # failure in job https://hydra.nixos.org/build/233236588 at 2023-09-02
+  - cmd-item # failure in job https://hydra.nixos.org/build/233223946 at 2023-09-02
+  - cmdlib # failure in job https://hydra.nixos.org/build/233222751 at 2023-09-02
+  - cmdtheline # failure in job https://hydra.nixos.org/build/233199201 at 2023-09-02
+  - cmf # failure in job https://hydra.nixos.org/build/233256827 at 2023-09-02
+  - cmonad # failure in job https://hydra.nixos.org/build/233254242 at 2023-09-02
+  - c-mosquitto # failure in job https://hydra.nixos.org/build/233231310 at 2023-09-02
+  - cmph # failure in job https://hydra.nixos.org/build/233225766 at 2023-09-02
+  - CMQ # failure in job https://hydra.nixos.org/build/233233168 at 2023-09-02
+  - cmt # failure in job https://hydra.nixos.org/build/233233474 at 2023-09-02
+  - coalpit # failure in job https://hydra.nixos.org/build/233193043 at 2023-09-02
+  - cobot-tools # failure in job https://hydra.nixos.org/build/233259173 at 2023-09-02
+  - code-builder # failure in job https://hydra.nixos.org/build/233239215 at 2023-09-02
+  - codec-beam # failure in job https://hydra.nixos.org/build/233198704 at 2023-09-02
+  - codecov-haskell # failure in job https://hydra.nixos.org/build/233256758 at 2023-09-02
+  - codeforces-cli # failure in job https://hydra.nixos.org/build/233210719 at 2023-09-02
+  - codepad # failure in job https://hydra.nixos.org/build/233197730 at 2023-09-02
+  - codex # failure in job https://hydra.nixos.org/build/233212311 at 2023-09-02
+  - codo-notation # failure in job https://hydra.nixos.org/build/233202566 at 2023-09-02
+  - coercible-utils # failure in job https://hydra.nixos.org/build/233230462 at 2023-09-02
+  - coinbase-pro # failure in job https://hydra.nixos.org/build/233245350 at 2023-09-02
+  - coin # failure in job https://hydra.nixos.org/build/233198975 at 2023-09-02
+  - colchis # failure in job https://hydra.nixos.org/build/233207690 at 2023-09-02
+  - collada-output # failure in job https://hydra.nixos.org/build/233192394 at 2023-09-02
+  - collapse-util # failure in job https://hydra.nixos.org/build/233238818 at 2023-09-02
+  - collate # failure in job https://hydra.nixos.org/build/233243978 at 2023-09-02
+  - collections-api # failure in job https://hydra.nixos.org/build/233220769 at 2023-09-02
+  - collections # failure in job https://hydra.nixos.org/build/233251207 at 2023-09-02
+  - co-log-sys # failure in job https://hydra.nixos.org/build/233206587 at 2023-09-02
+  - colonnade # failure in job https://hydra.nixos.org/build/233248956 at 2023-09-02
+  - colorless # failure in job https://hydra.nixos.org/build/233220728 at 2023-09-02
+  - coltrane # failure in job https://hydra.nixos.org/build/233216437 at 2023-09-02
+  - comark-syntax # failure in job https://hydra.nixos.org/build/233243043 at 2023-09-02
+  - combinat-compat # failure in job https://hydra.nixos.org/build/233201337 at 2023-09-02
+  - combinat # failure in job https://hydra.nixos.org/build/233259056 at 2023-09-02
+  - combinatorial-problems # failure in job https://hydra.nixos.org/build/233244505 at 2023-09-02
+  - combinator-interactive # failure in job https://hydra.nixos.org/build/233233138 at 2023-09-02
+  - combobuffer # failure in job https://hydra.nixos.org/build/233240114 at 2023-09-02
+  - com # failure in job https://hydra.nixos.org/build/233213869 at 2023-09-02
+  - commander # failure in job https://hydra.nixos.org/build/233239812 at 2023-09-02
+  - Command # failure in job https://hydra.nixos.org/build/233249718 at 2023-09-02
+  - Commando # failure in job https://hydra.nixos.org/build/233248911 at 2023-09-02
+  - commodities # failure in job https://hydra.nixos.org/build/233239851 at 2023-09-02
+  - Compactable # failure in job https://hydra.nixos.org/build/233227285 at 2023-09-02
+  - compactable # failure in job https://hydra.nixos.org/build/233228106 at 2023-09-02
+  - compact # failure in job https://hydra.nixos.org/build/233203421 at 2023-09-02
+  - compact-list # failure in job https://hydra.nixos.org/build/233241961 at 2023-09-02
+  - compact-map # failure in job https://hydra.nixos.org/build/233201665 at 2023-09-02
+  - compact-sequences # failure in job https://hydra.nixos.org/build/233208553 at 2023-09-02
+  - compact-string # failure in job https://hydra.nixos.org/build/233204162 at 2023-09-02
+  - compact-string-fix # failure in job https://hydra.nixos.org/build/233238513 at 2023-09-02
+  - comparse # failure in job https://hydra.nixos.org/build/233220012 at 2023-09-02
+  - compdata-dags # failure in job https://hydra.nixos.org/build/233216580 at 2023-09-02
+  - compdata-param # failure in job https://hydra.nixos.org/build/233227003 at 2023-09-02
+  - compendium-client # failure in job https://hydra.nixos.org/build/233231884 at 2023-09-02
+  - competition # failure in job https://hydra.nixos.org/build/233243172 at 2023-09-02
+  - compilation # failure in job https://hydra.nixos.org/build/233252348 at 2023-09-02
+  - complex-generic # failure in job https://hydra.nixos.org/build/233243926 at 2023-09-02
+  - composable-associations-aeson # failure in job https://hydra.nixos.org/build/233247162 at 2023-09-02
+  - compose-trans # failure in job https://hydra.nixos.org/build/233236785 at 2023-09-02
+  - composite-aeson-path # failure in job https://hydra.nixos.org/build/233203114 at 2023-09-02
+  - composite-aeson-refined # failure in job https://hydra.nixos.org/build/233241450 at 2023-09-02
+  - composite-cassava # failure in job https://hydra.nixos.org/build/233241110 at 2023-09-02
+  - composite-ekg # failure in job https://hydra.nixos.org/build/233235858 at 2023-09-02
+  - composite-opaleye # failure in job https://hydra.nixos.org/build/233256318 at 2023-09-02
+  - composite-swagger # failure in job https://hydra.nixos.org/build/233258006 at 2023-09-02
+  - composition-tree # failure in job https://hydra.nixos.org/build/233219116 at 2023-09-02
+  - compressed # failure in job https://hydra.nixos.org/build/233214349 at 2023-09-02
+  - compression # failure in job https://hydra.nixos.org/build/233250833 at 2023-09-02
+  - compstrat # failure in job https://hydra.nixos.org/build/233255500 at 2023-09-02
+  - comptrans # failure in job https://hydra.nixos.org/build/233209853 at 2023-09-02
+  - computational-geometry # failure in job https://hydra.nixos.org/build/233220627 at 2023-09-02
+  - computations # failure in job https://hydra.nixos.org/build/233249992 at 2023-09-02
+  - ConClusion # failure in job https://hydra.nixos.org/build/233236846 at 2023-09-02
+  - concrete-relaxng-parser # failure in job https://hydra.nixos.org/build/233192905 at 2023-09-02
+  - concrete-typerep # failure in job https://hydra.nixos.org/build/233234198 at 2023-09-02
+  - concurrent-buffer # failure in job https://hydra.nixos.org/build/233249002 at 2023-09-02
+  - Concurrent-Cache # failure in job https://hydra.nixos.org/build/233238494 at 2023-09-02
+  - Concurrential # failure in job https://hydra.nixos.org/build/233221502 at 2023-09-02
+  - concurrent-state # failure in job https://hydra.nixos.org/build/233248441 at 2023-09-02
+  - concurrent-st # failure in job https://hydra.nixos.org/build/233219451 at 2023-09-02
+  - concurrent-utilities # failure in job https://hydra.nixos.org/build/233224892 at 2023-09-02
+  - conditional-restriction-parser # failure in job https://hydra.nixos.org/build/233211470 at 2023-09-02
+  - condorcet # failure in job https://hydra.nixos.org/build/233208640 at 2023-09-02
+  - conductive-base # failure in job https://hydra.nixos.org/build/233234746 at 2023-09-02
+  - conduit-audio-lame # failure in job https://hydra.nixos.org/build/233253987 at 2023-09-02
+  - conduit-audio-samplerate # failure in job https://hydra.nixos.org/build/233208457 at 2023-09-02
+  - conduit-connection # failure in job https://hydra.nixos.org/build/233232646 at 2023-09-02
+  - conduit-find # failure in job https://hydra.nixos.org/build/233259909 at 2023-09-02
+  - conduit-iconv # failure in job https://hydra.nixos.org/build/233246555 at 2023-09-02
+  - conduit-network-stream # failure in job https://hydra.nixos.org/build/233243436 at 2023-09-02
+  - conduit-resumablesink # failure in job https://hydra.nixos.org/build/233248566 at 2023-09-02
+  - conduit-tokenize-attoparsec # failure in job https://hydra.nixos.org/build/233237152 at 2023-09-02
+  - conduit-vfs # failure in job https://hydra.nixos.org/build/233205270 at 2023-09-02
+  - conferer-dhall # failure in job https://hydra.nixos.org/build/233208902 at 2023-09-02
+  - conferer-hspec # failure in job https://hydra.nixos.org/build/233225311 at 2023-09-02
+  - conferer-provider-json # failure in job https://hydra.nixos.org/build/233195298 at 2023-09-02
+  - conferer-snap # failure in job https://hydra.nixos.org/build/233215013 at 2023-09-02
+  - conferer-source-json # failure in job https://hydra.nixos.org/build/233195696 at 2023-09-02
+  - conf # failure in job https://hydra.nixos.org/build/233213738 at 2023-09-02
+  - ConfigFileTH # failure in job https://hydra.nixos.org/build/233191126 at 2023-09-02
+  - config-parser # failure in job https://hydra.nixos.org/build/233206136 at 2023-09-02
+  - Configurable # failure in job https://hydra.nixos.org/build/233200781 at 2023-09-02
+  - configuration # failure in job https://hydra.nixos.org/build/233195399 at 2023-09-02
+  - configurator-pg # failure in job https://hydra.nixos.org/build/233219556 at 2023-09-02
+  - config-value-getopt # failure in job https://hydra.nixos.org/build/233204566 at 2023-09-02
+  - confsolve # failure in job https://hydra.nixos.org/build/233194913 at 2023-09-02
+  - congruence-relation # failure in job https://hydra.nixos.org/build/233222125 at 2023-09-02
+  - conjure # failure in job https://hydra.nixos.org/build/233220494 at 2023-09-02
+  - conkin # failure in job https://hydra.nixos.org/build/233246485 at 2023-09-02
+  - conlogger # failure in job https://hydra.nixos.org/build/233193354 at 2023-09-02
+  - connection-pool # failure in job https://hydra.nixos.org/build/233199817 at 2023-09-02
+  - connections # failure in job https://hydra.nixos.org/build/233193445 at 2023-09-02
+  - connection-string # failure in job https://hydra.nixos.org/build/233205032 at 2023-09-02
+  - Conscript # failure in job https://hydra.nixos.org/build/233216349 at 2023-09-02
+  - consistent # failure in job https://hydra.nixos.org/build/233210122 at 2023-09-02
+  - console-program # failure in job https://hydra.nixos.org/build/233207490 at 2023-09-02
+  - constable # failure in job https://hydra.nixos.org/build/233256456 at 2023-09-02
+  - const # failure in job https://hydra.nixos.org/build/233227000 at 2023-09-02
+  - const-math-ghc-plugin # failure in job https://hydra.nixos.org/build/233198147 at 2023-09-02
+  - constrained-dynamic # failure in job https://hydra.nixos.org/build/233192949 at 2023-09-02
+  - constrained # failure in job https://hydra.nixos.org/build/233248444 at 2023-09-02
+  - constrained-monads # failure in job https://hydra.nixos.org/build/233250865 at 2023-09-02
+  - ConstraintKinds # failure in job https://hydra.nixos.org/build/233222006 at 2023-09-02
+  - constraints-deriving # failure in job https://hydra.nixos.org/build/233222833 at 2023-09-02
+  - constraints-emerge # failure in job https://hydra.nixos.org/build/233242146 at 2023-09-02
+  - constr-eq # failure in job https://hydra.nixos.org/build/233231863 at 2023-09-02
+  - construct # failure in job https://hydra.nixos.org/build/233248810 at 2023-09-02
+  - constructive-algebra # failure in job https://hydra.nixos.org/build/233241970 at 2023-09-02
+  - consul-haskell # failure in job https://hydra.nixos.org/build/233195306 at 2023-09-02
+  - Consumer # failure in job https://hydra.nixos.org/build/233227840 at 2023-09-02
+  - containers-benchmark # failure in job https://hydra.nixos.org/build/233244707 at 2023-09-02
+  - containers-unicode-symbols # failure in job https://hydra.nixos.org/build/233206693 at 2023-09-02
+  - containers-verified # failure in job https://hydra.nixos.org/build/233228855 at 2023-09-02
+  - ContArrow # failure in job https://hydra.nixos.org/build/233215540 at 2023-09-02
+  - ContextAlgebra # failure in job https://hydra.nixos.org/build/233197054 at 2023-09-02
+  - context-stack # failure in job https://hydra.nixos.org/build/233228489 at 2023-09-02
+  - contiguous-checked # failure in job https://hydra.nixos.org/build/233225639 at 2023-09-02
+  - contiguous-fft # failure in job https://hydra.nixos.org/build/233197368 at 2023-09-02
+  - continued-fractions # failure in job https://hydra.nixos.org/build/233258785 at 2023-09-02
+  - continue # failure in job https://hydra.nixos.org/build/233231634 at 2023-09-02
+  - contracheck-applicative # failure in job https://hydra.nixos.org/build/233255104 at 2023-09-02
+  - Contract # failure in job https://hydra.nixos.org/build/233242103 at 2023-09-02
+  - contra-tracers # failure in job https://hydra.nixos.org/build/233197959 at 2023-09-02
+  - control-dsl # failure in job https://hydra.nixos.org/build/233249037 at 2023-09-02
+  - control-iso # failure in job https://hydra.nixos.org/build/233229763 at 2023-09-02
+  - control-monad-failure # failure in job https://hydra.nixos.org/build/233240265 at 2023-09-02
+  - control-monad-failure-mtl # failure in job https://hydra.nixos.org/build/233245249 at 2023-09-02
+  - Control-Monad-ST2 # failure in job https://hydra.nixos.org/build/233222919 at 2023-09-02
+  - contstuff-monads-tf # failure in job https://hydra.nixos.org/build/233224064 at 2023-09-02
+  - contstuff-transformers # failure in job https://hydra.nixos.org/build/233244153 at 2023-09-02
+  - copilot-c99 # failure in job https://hydra.nixos.org/build/233258148 at 2023-09-02
+  - copr # failure in job https://hydra.nixos.org/build/233252310 at 2023-09-02
+  - coquina # failure in job https://hydra.nixos.org/build/233254665 at 2023-09-02
+  - COrdering # failure in job https://hydra.nixos.org/build/233232083 at 2023-09-02
+  - corebot-bliki # failure in job https://hydra.nixos.org/build/233241143 at 2023-09-02
+  - core-compiler # failure in job https://hydra.nixos.org/build/233250303 at 2023-09-02
+  - CoreDump # failure in job https://hydra.nixos.org/build/233247860 at 2023-09-02
+  - CoreErlang # failure in job https://hydra.nixos.org/build/233199110 at 2023-09-02
+  - core # failure in job https://hydra.nixos.org/build/233253971 at 2023-09-02
+  - core-haskell # failure in job https://hydra.nixos.org/build/233222588 at 2023-09-02
+  - core-warn # failure in job https://hydra.nixos.org/build/233204404 at 2023-09-02
+  - Coroutine # failure in job https://hydra.nixos.org/build/233211213 at 2023-09-02
+  - coroutine-object # failure in job https://hydra.nixos.org/build/233220413 at 2023-09-02
+  - couchdb-conduit # failure in job https://hydra.nixos.org/build/233227244 at 2023-09-02
+  - CouchDB # failure in job https://hydra.nixos.org/build/233253163 at 2023-09-02
+  - couch-hs # failure in job https://hydra.nixos.org/build/233210189 at 2023-09-02
+  - counter # failure in job https://hydra.nixos.org/build/233193842 at 2023-09-02
+  - country-codes # failure in job https://hydra.nixos.org/build/233248159 at 2023-09-02
+  - courier # failure in job https://hydra.nixos.org/build/233215760 at 2023-09-02
+  - court # failure in job https://hydra.nixos.org/build/233192047 at 2023-09-02
+  - coverage # failure in job https://hydra.nixos.org/build/233199365 at 2023-09-02
+  - cparsing # failure in job https://hydra.nixos.org/build/233192377 at 2023-09-02
+  - cpio-conduit # failure in job https://hydra.nixos.org/build/233220518 at 2023-09-02
+  - cplusplus-th # failure in job https://hydra.nixos.org/build/233204461 at 2023-09-02
+  - cpuperf # failure in job https://hydra.nixos.org/build/233252964 at 2023-09-02
+  - cpython # failure in job https://hydra.nixos.org/build/233255188 at 2023-09-02
+  - cql-io # failure in job https://hydra.nixos.org/build/233245286 at 2023-09-02
+  - cqrs-core # failure in job https://hydra.nixos.org/build/233192102 at 2023-09-02
+  - crack # failure in job https://hydra.nixos.org/build/233229111 at 2023-09-02
+  - Craft3e # failure in job https://hydra.nixos.org/build/233255152 at 2023-09-02
+  - craftwerk # failure in job https://hydra.nixos.org/build/233221392 at 2023-09-02
+  - crawlchain # failure in job https://hydra.nixos.org/build/233192450 at 2023-09-02
+  - crc16 # failure in job https://hydra.nixos.org/build/233253624 at 2023-09-02
+  - crc32c # failure in job https://hydra.nixos.org/build/233217329 at 2023-09-02
+  - crdt-event-fold # failure in job https://hydra.nixos.org/build/233191438 at 2023-09-02
+  - crdt # failure in job https://hydra.nixos.org/build/233254930 at 2023-09-02
+  - creatur # failure in job https://hydra.nixos.org/build/233252591 at 2023-09-02
+  - credential-store # failure in job https://hydra.nixos.org/build/233230143 at 2023-09-02
+  - crem # failure in job https://hydra.nixos.org/build/233240415 at 2023-09-02
+  - cr # failure in job https://hydra.nixos.org/build/233235318 at 2023-09-02
+  - critbit # failure in job https://hydra.nixos.org/build/233237880 at 2023-09-02
+  - criterion-cmp # failure in job https://hydra.nixos.org/build/233192619 at 2023-09-02
+  - criterion-compare # failure in job https://hydra.nixos.org/build/233257858 at 2023-09-02
+  - criterion-plus # failure in job https://hydra.nixos.org/build/233194095 at 2023-09-02
+  - criterion-to-html # failure in job https://hydra.nixos.org/build/233209983 at 2023-09-02
+  - crjdt-haskell # failure in job https://hydra.nixos.org/build/233199652 at 2023-09-02
+  - crockford # failure in job https://hydra.nixos.org/build/233210759 at 2023-09-02
+  - crocodile # failure in job https://hydra.nixos.org/build/233222277 at 2023-09-02
+  - cronus # failure in job https://hydra.nixos.org/build/233225303 at 2023-09-02
+  - cruncher-types # failure in job https://hydra.nixos.org/build/233229024 at 2023-09-02
+  - crunghc # failure in job https://hydra.nixos.org/build/233193295 at 2023-09-02
+  - crypto-cipher-benchmarks # failure in job https://hydra.nixos.org/build/233195297 at 2023-09-02
+  - cryptocompare # failure in job https://hydra.nixos.org/build/233192898 at 2023-09-02
+  - cryptoconditions # failure in job https://hydra.nixos.org/build/233211816 at 2023-09-02
+  - cryptoids-types # failure in job https://hydra.nixos.org/build/233242596 at 2023-09-02
+  - crypto-keys-ssh # failure in job https://hydra.nixos.org/build/233222227 at 2023-09-02
+  - crypto-multihash # failure in job https://hydra.nixos.org/build/233220770 at 2023-09-02
+  - crypton-connection # failure in job https://hydra.nixos.org/build/233230068 at 2023-09-02
+  - crypto-numbers # failure in job https://hydra.nixos.org/build/233225721 at 2023-09-02
+  - crypto-pubkey-openssh # failure in job https://hydra.nixos.org/build/233207007 at 2023-09-02
+  - crypto-random-effect # failure in job https://hydra.nixos.org/build/233236324 at 2023-09-02
+  - crypto-simple # failure in job https://hydra.nixos.org/build/233192703 at 2023-09-02
+  - cryptsy-api # failure in job https://hydra.nixos.org/build/233195814 at 2023-09-02
+  - csa # failure in job https://hydra.nixos.org/build/233233907 at 2023-09-02
+  - cse-ghc-plugin # failure in job https://hydra.nixos.org/build/233251963 at 2023-09-02
+  - csound-expression-dynamic # failure in job https://hydra.nixos.org/build/233225568 at 2023-09-02
+  - CSPM-Frontend # failure in job https://hydra.nixos.org/build/233219295 at 2023-09-02
+  - cspretty # failure in job https://hydra.nixos.org/build/233246796 at 2023-09-02
+  - css-easings # failure in job https://hydra.nixos.org/build/233203513 at 2023-09-02
+  - css # failure in job https://hydra.nixos.org/build/233220825 at 2023-09-02
+  - css-selectors # failure in job https://hydra.nixos.org/build/233247710 at 2023-09-02
+  - css-simple # failure in job https://hydra.nixos.org/build/233220768 at 2023-09-02
+  - C-structs # failure in job https://hydra.nixos.org/build/233247498 at 2023-09-02
+  - csv-nptools # failure in job https://hydra.nixos.org/build/233215773 at 2023-09-02
+  - csv-sip # failure in job https://hydra.nixos.org/build/233211292 at 2023-09-02
+  - ctemplate # failure in job https://hydra.nixos.org/build/233257909 at 2023-09-02
+  - ctkl # failure in job https://hydra.nixos.org/build/233219516 at 2023-09-02
+  - cuboid # failure in job https://hydra.nixos.org/build/234462220 at 2023-09-13
+  - cuckoo # failure in job https://hydra.nixos.org/build/233210915 at 2023-09-02
+  - cuckoo-filter # failure in job https://hydra.nixos.org/build/233226484 at 2023-09-02
+  - curl-aeson # failure in job https://hydra.nixos.org/build/233210106 at 2023-09-02
+  - curl-runnings # failure in job https://hydra.nixos.org/build/233258680 at 2023-09-02
+  - curly-expander # failure in job https://hydra.nixos.org/build/233250838 at 2023-09-02
+  - currencies # failure in job https://hydra.nixos.org/build/233216717 at 2023-09-02
+  - currency-convert # failure in job https://hydra.nixos.org/build/233224509 at 2023-09-02
+  - curry-base # failure in job https://hydra.nixos.org/build/233246647 at 2023-09-02
+  - CurryDB # failure in job https://hydra.nixos.org/build/233238995 at 2023-09-02
+  - curry-frontend # failure in job https://hydra.nixos.org/build/233190895 at 2023-09-02
+  - curryrs # failure in job https://hydra.nixos.org/build/233250943 at 2023-09-02
+  - cursedcsv # failure in job https://hydra.nixos.org/build/233253732 at 2023-09-02
+  - curves # failure in job https://hydra.nixos.org/build/233237354 at 2023-09-02
+  - custom-prelude # failure in job https://hydra.nixos.org/build/233216882 at 2023-09-02
+  - cut-the-crap # failure in job https://hydra.nixos.org/build/233238478 at 2023-09-02
+  - CV # failure in job https://hydra.nixos.org/build/233223571 at 2023-09-02
+  - d3js # failure in job https://hydra.nixos.org/build/233251474 at 2023-09-02
+  - dag # failure in job https://hydra.nixos.org/build/233220719 at 2023-09-02
+  - DAG-Tournament # failure in job https://hydra.nixos.org/build/233218747 at 2023-09-02
+  - dahdit # failure in job https://hydra.nixos.org/build/233245113 at 2023-09-02
+  - damnpacket # failure in job https://hydra.nixos.org/build/233235248 at 2023-09-02
+  - danibot # failure in job https://hydra.nixos.org/build/233197740 at 2023-09-02
+  - Dao # failure in job https://hydra.nixos.org/build/233207745 at 2023-09-02
+  - dao # failure in job https://hydra.nixos.org/build/233240654 at 2023-09-02
+  - darcs2dot # failure in job https://hydra.nixos.org/build/233209236 at 2023-09-02
+  - darcs-buildpackage # failure in job https://hydra.nixos.org/build/233213566 at 2023-09-02
+  - darcs-cabalized # failure in job https://hydra.nixos.org/build/233234765 at 2023-09-02
+  - darcs-graph # failure in job https://hydra.nixos.org/build/233245230 at 2023-09-02
+  - darcs-monitor # failure in job https://hydra.nixos.org/build/233249455 at 2023-09-02
+  - darkplaces-rcon # failure in job https://hydra.nixos.org/build/233247609 at 2023-09-02
+  - darkplaces-text # failure in job https://hydra.nixos.org/build/233249204 at 2023-09-02
+  - data-accessor-monadLib # failure in job https://hydra.nixos.org/build/233212217 at 2023-09-02
+  - data-accessor-monads-fd # failure in job https://hydra.nixos.org/build/233222664 at 2023-09-02
+  - data-accessor-monads-tf # failure in job https://hydra.nixos.org/build/233252242 at 2023-09-02
+  - data-accessor-template # failure in job https://hydra.nixos.org/build/233210431 at 2023-09-02
+  - data-ascii # failure in job https://hydra.nixos.org/build/233254894 at 2023-09-02
+  - data-aviary # failure in job https://hydra.nixos.org/build/233243398 at 2023-09-02
+  - data-base # failure in job https://hydra.nixos.org/build/233217341 at 2023-09-02
+  - database-migrate # failure in job https://hydra.nixos.org/build/233201597 at 2023-09-02
+  - database-study # failure in job https://hydra.nixos.org/build/233222466 at 2023-09-02
+  - data-check # failure in job https://hydra.nixos.org/build/233210384 at 2023-09-02
+  - data-combinator-gen # failure in job https://hydra.nixos.org/build/233193769 at 2023-09-02
+  - data-concurrent-queue # failure in job https://hydra.nixos.org/build/233252841 at 2023-09-02
+  - data-construction # failure in job https://hydra.nixos.org/build/233251464 at 2023-09-02
+  - data-constructors # failure in job https://hydra.nixos.org/build/233241097 at 2023-09-02
+  - data-default-instances-new-base # failure in job https://hydra.nixos.org/build/233256824 at 2023-09-02
+  - data-default-instances-text # failure in job https://hydra.nixos.org/build/233209026 at 2023-09-02
+  - data-dispersal # failure in job https://hydra.nixos.org/build/233242611 at 2023-09-02
+  - data-diverse-lens # failure in job https://hydra.nixos.org/build/233221672 at 2023-09-02
+  - datadog # failure in job https://hydra.nixos.org/build/233191124 at 2023-09-02
+  - data-easy # failure in job https://hydra.nixos.org/build/233250802 at 2023-09-02
+  - data-embed # failure in job https://hydra.nixos.org/build/233201230 at 2023-09-02
+  - data-emoticons # failure in job https://hydra.nixos.org/build/233255035 at 2023-09-02
+  - data-filepath # failure in job https://hydra.nixos.org/build/233243231 at 2023-09-02
+  - data-filter # failure in job https://hydra.nixos.org/build/233240259 at 2023-09-02
+  - data-fin # failure in job https://hydra.nixos.org/build/233216426 at 2023-09-02
+  - data-fin-simple # failure in job https://hydra.nixos.org/build/233191648 at 2023-09-02
+  - data-flagset # failure in job https://hydra.nixos.org/build/233211231 at 2023-09-02
+  - data-forced # failure in job https://hydra.nixos.org/build/233242817 at 2023-09-02
+  - data-index # failure in job https://hydra.nixos.org/build/233197067 at 2023-09-02
+  - DataIndex # failure in job https://hydra.nixos.org/build/233254506 at 2023-09-02
+  - data-ivar # failure in job https://hydra.nixos.org/build/233239043 at 2023-09-02
+  - data-kiln # failure in job https://hydra.nixos.org/build/233220764 at 2023-09-02
+  - data-lens-fd # failure in job https://hydra.nixos.org/build/233252537 at 2023-09-02
+  - data-lens-template # failure in job https://hydra.nixos.org/build/233194446 at 2023-09-02
+  - datalog # failure in job https://hydra.nixos.org/build/233242707 at 2023-09-02
+  - data-map-multikey # failure in job https://hydra.nixos.org/build/233223141 at 2023-09-02
+  - data-named # failure in job https://hydra.nixos.org/build/233196088 at 2023-09-02
+  - data-nat # failure in job https://hydra.nixos.org/build/233226801 at 2023-09-02
+  - data-object # failure in job https://hydra.nixos.org/build/233207567 at 2023-09-02
+  - datapacker # failure in job https://hydra.nixos.org/build/233206524 at 2023-09-02
+  - data-pdf-fieldreader # failure in job https://hydra.nixos.org/build/233246028 at 2023-09-02
+  - data-pprint # failure in job https://hydra.nixos.org/build/233221300 at 2023-09-02
+  - data-quotientref # failure in job https://hydra.nixos.org/build/233258168 at 2023-09-02
+  - data-reify-cse # failure in job https://hydra.nixos.org/build/233240126 at 2023-09-02
+  - data-repr # failure in job https://hydra.nixos.org/build/233255402 at 2023-09-02
+  - data-rev # failure in job https://hydra.nixos.org/build/233239036 at 2023-09-02
+  - datarobot # failure in job https://hydra.nixos.org/build/233206913 at 2023-09-02
+  - Data-Rope # failure in job https://hydra.nixos.org/build/233194176 at 2023-09-02
+  - data-rope # failure in job https://hydra.nixos.org/build/233245124 at 2023-09-02
+  - data-r-tree # failure in job https://hydra.nixos.org/build/233232284 at 2023-09-02
+  - data-size # failure in job https://hydra.nixos.org/build/233192633 at 2023-09-02
+  - data-spacepart # failure in job https://hydra.nixos.org/build/233239099 at 2023-09-02
+  - data-standards # failure in job https://hydra.nixos.org/build/233219444 at 2023-09-02
+  - data-store # failure in job https://hydra.nixos.org/build/233239477 at 2023-09-02
+  - data-stringmap # failure in job https://hydra.nixos.org/build/233218683 at 2023-09-02
+  - DataTreeView # failure in job https://hydra.nixos.org/build/233213871 at 2023-09-02
+  - data-type # failure in job https://hydra.nixos.org/build/233196761 at 2023-09-02
+  - data-util # failure in job https://hydra.nixos.org/build/233194965 at 2023-09-02
+  - data-validation # failure in job https://hydra.nixos.org/build/233217804 at 2023-09-02
+  - data-variant # failure in job https://hydra.nixos.org/build/233236491 at 2023-09-02
+  - data-vector-growable # failure in job https://hydra.nixos.org/build/233244511 at 2023-09-02
+  - dates # failure in job https://hydra.nixos.org/build/233194418 at 2023-09-02
+  - datetime # failure in job https://hydra.nixos.org/build/233231333 at 2023-09-02
+  - datetime-sb # failure in job https://hydra.nixos.org/build/233213753 at 2023-09-02
+  - dawdle # failure in job https://hydra.nixos.org/build/233201776 at 2023-09-02
+  - dawg # failure in job https://hydra.nixos.org/build/233198731 at 2023-09-02
+  - dawg-ord # failure in job https://hydra.nixos.org/build/233192491 at 2023-09-02
+  - daytripper # failure in job https://hydra.nixos.org/build/233233486 at 2023-09-02
+  - dbcleaner # failure in job https://hydra.nixos.org/build/233203745 at 2023-09-02
+  - dbf # failure in job https://hydra.nixos.org/build/233256644 at 2023-09-02
+  - DBlimited # failure in job https://hydra.nixos.org/build/233249214 at 2023-09-02
+  - dbm # failure in job https://hydra.nixos.org/build/233191264 at 2023-09-02
+  - dbmigrations # failure in job https://hydra.nixos.org/build/233242055 at 2023-09-02
+  - dbmonitor # failure in job https://hydra.nixos.org/build/234451674 at 2023-09-13
+  - dbus-core # failure in job https://hydra.nixos.org/build/233228888 at 2023-09-02
+  - DBus # failure in job https://hydra.nixos.org/build/233207529 at 2023-09-02
+  - d-bus # failure in job https://hydra.nixos.org/build/233228668 at 2023-09-02
+  - dbus-qq # failure in job https://hydra.nixos.org/build/233219927 at 2023-09-02
+  - dclabel-eci11 # failure in job https://hydra.nixos.org/build/233210572 at 2023-09-02
+  - dclabel # failure in job https://hydra.nixos.org/build/233231206 at 2023-09-02
+  - dcpu16 # failure in job https://hydra.nixos.org/build/233201425 at 2023-09-02
+  - ddc-base # failure in job https://hydra.nixos.org/build/233190710 at 2023-09-02
+  - ddc-code # failure in job https://hydra.nixos.org/build/233226278 at 2023-09-02
+  - dead-code-detection # failure in job https://hydra.nixos.org/build/233205957 at 2023-09-02
+  - Deadpan-DDP # failure in job https://hydra.nixos.org/build/233221990 at 2023-09-02
+  - dead-simple-json # failure in job https://hydra.nixos.org/build/233204301 at 2023-09-02
+  - dear-imgui # failure in job https://hydra.nixos.org/build/233238246 at 2023-09-02
+  - debugger-hs # failure in job https://hydra.nixos.org/build/233206302 at 2023-09-02
+  - debug-me # failure in job https://hydra.nixos.org/build/233213991 at 2023-09-02
+  - debug-trace-file # failure in job https://hydra.nixos.org/build/233231840 at 2023-09-02
+  - debug-tracy # failure in job https://hydra.nixos.org/build/233242924 at 2023-09-02
+  - decepticons # failure in job https://hydra.nixos.org/build/233258681 at 2023-09-02
+  - decision-diagrams # failure in job https://hydra.nixos.org/build/233239021 at 2023-09-02
+  - DecisionTree # failure in job https://hydra.nixos.org/build/233231682 at 2023-09-02
+  - decoder-conduit # failure in job https://hydra.nixos.org/build/233228100 at 2023-09-02
+  - deepcontrol # failure in job https://hydra.nixos.org/build/233238035 at 2023-09-02
+  - DeepDarkFantasy # failure in job https://hydra.nixos.org/build/233242150 at 2023-09-02
+  - deepl # failure in job https://hydra.nixos.org/build/233232956 at 2023-09-02
+  - deepseq-bounded # failure in job https://hydra.nixos.org/build/233211193 at 2023-09-02
+  - deepseq-instances # failure in job https://hydra.nixos.org/build/233236748 at 2023-09-02
+  - deepseq-magic # failure in job https://hydra.nixos.org/build/233228993 at 2023-09-02
+  - deepseq-th # failure in job https://hydra.nixos.org/build/233233106 at 2023-09-02
+  - definitive-base # failure in job https://hydra.nixos.org/build/233255489 at 2023-09-02
+  - deiko-config # failure in job https://hydra.nixos.org/build/233210895 at 2023-09-02
+  - deka # failure in job https://hydra.nixos.org/build/233206540 at 2023-09-02
+  - Delta-Lambda # failure in job https://hydra.nixos.org/build/233239406 at 2023-09-02
+  - delude # failure in job https://hydra.nixos.org/build/233231224 at 2023-09-02
+  - demarcate # failure in job https://hydra.nixos.org/build/233194005 at 2023-09-02
+  - denominate # failure in job https://hydra.nixos.org/build/233214619 at 2023-09-02
+  - dense # failure in job https://hydra.nixos.org/build/233205807 at 2023-09-02
+  - dense-int-set # failure in job https://hydra.nixos.org/build/233214797 at 2023-09-02
+  - dependent-hashmap # failure in job https://hydra.nixos.org/build/233202881 at 2023-09-02
+  - dependent-monoidal-map # failure in job https://hydra.nixos.org/build/233212829 at 2023-09-02
+  - dep-t # failure in job https://hydra.nixos.org/build/233217847 at 2023-09-02
+  - deptrack-core # failure in job https://hydra.nixos.org/build/233239143 at 2023-09-02
+  - derangement # failure in job https://hydra.nixos.org/build/233209660 at 2023-09-02
+  - derivation-trees # failure in job https://hydra.nixos.org/build/233254679 at 2023-09-02
+  - derive-enumerable # failure in job https://hydra.nixos.org/build/233254290 at 2023-09-02
+  - derive # failure in job https://hydra.nixos.org/build/233209166 at 2023-09-02
+  - derive-gadt # failure in job https://hydra.nixos.org/build/233220430 at 2023-09-02
+  - deriveJsonNoPrefix # failure in job https://hydra.nixos.org/build/233242453 at 2023-09-02
+  - derive-lifted-instances # failure in job https://hydra.nixos.org/build/233194868 at 2023-09-02
+  - derive-monoid # failure in job https://hydra.nixos.org/build/233205670 at 2023-09-02
+  - derive-trie # failure in job https://hydra.nixos.org/build/233207961 at 2023-09-02
+  - derp-lib # failure in job https://hydra.nixos.org/build/233199053 at 2023-09-02
+  - describe # failure in job https://hydra.nixos.org/build/233207296 at 2023-09-02
+  - desktop-portal # failure in job https://hydra.nixos.org/build/233241462 at 2023-09-02
+  - deterministic-game-engine # failure in job https://hydra.nixos.org/build/233259188 at 2023-09-02
+  - detrospector # failure in job https://hydra.nixos.org/build/233209424 at 2023-09-02
+  - deunicode # failure in job https://hydra.nixos.org/build/233220923 at 2023-09-02
+  - devil # failure in job https://hydra.nixos.org/build/233251561 at 2023-09-02
+  - df1-html # failure in job https://hydra.nixos.org/build/233251495 at 2023-09-02
+  - Dflow # failure in job https://hydra.nixos.org/build/233233514 at 2023-09-02
+  - dfsbuild # failure in job https://hydra.nixos.org/build/233209260 at 2023-09-02
+  - dgim # failure in job https://hydra.nixos.org/build/233227538 at 2023-09-02
+  - dgs # failure in job https://hydra.nixos.org/build/233221509 at 2023-09-02
+  - dhall-check # failure in job https://hydra.nixos.org/build/233206425 at 2023-09-02
+  - dhall-csv # failure in job https://hydra.nixos.org/build/233256049 at 2023-09-02
+  - dhall-fly # failure in job https://hydra.nixos.org/build/233220306 at 2023-09-02
+  - dhall-lsp-server # failure in job https://hydra.nixos.org/build/233216852 at 2023-09-02
+  - dhall-recursive-adt # failure in job https://hydra.nixos.org/build/233210665 at 2023-09-02
+  - dhall-text # failure in job https://hydra.nixos.org/build/233253809 at 2023-09-02
+  - dhall-to-cabal # failure in job https://hydra.nixos.org/build/233193270 at 2023-09-02
+  - dhcp-lease-parser # failure in job https://hydra.nixos.org/build/233229124 at 2023-09-02
+  - dhrun # failure in job https://hydra.nixos.org/build/233227529 at 2023-09-02
+  - dia-base # failure in job https://hydra.nixos.org/build/233230896 at 2023-09-02
+  - diagnose # failure in job https://hydra.nixos.org/build/233231767 at 2023-09-02
+  - diagrams-boolean # failure in job https://hydra.nixos.org/build/233202036 at 2023-09-02
+  - diagrams-pdf # failure in job https://hydra.nixos.org/build/233197864 at 2023-09-02
+  - diagrams-qrcode # failure in job https://hydra.nixos.org/build/233229542 at 2023-09-02
+  - diagrams-rubiks-cube # failure in job https://hydra.nixos.org/build/233213426 at 2023-09-02
+  - diagrams-tikz # failure in job https://hydra.nixos.org/build/233237968 at 2023-09-02
+  - dialogflow-fulfillment # failure in job https://hydra.nixos.org/build/233214148 at 2023-09-02
+  - dialogue # failure in job https://hydra.nixos.org/build/233214533 at 2023-09-02
+  - dib # failure in job https://hydra.nixos.org/build/233222111 at 2023-09-02
+  - dice2tex # failure in job https://hydra.nixos.org/build/233240419 at 2023-09-02
+  - dicom # failure in job https://hydra.nixos.org/build/233222473 at 2023-09-02
+  - dictionaries # failure in job https://hydra.nixos.org/build/233210367 at 2023-09-02
+  - dictparser # failure in job https://hydra.nixos.org/build/233215487 at 2023-09-02
+  - diet # failure in job https://hydra.nixos.org/build/233259625 at 2023-09-02
+  - diffcabal # failure in job https://hydra.nixos.org/build/233203648 at 2023-09-02
+  - DifferentialEvolution # failure in job https://hydra.nixos.org/build/233230795 at 2023-09-02
+  - diff-gestalt # failure in job https://hydra.nixos.org/build/233195164 at 2023-09-02
+  - diffmap # failure in job https://hydra.nixos.org/build/233219852 at 2023-09-02
+  - difftodo # failure in job https://hydra.nixos.org/build/233215179 at 2023-09-02
+  - digestive-bootstrap # failure in job https://hydra.nixos.org/build/233208165 at 2023-09-02
+  - digestive-functors-aeson # failure in job https://hydra.nixos.org/build/233207417 at 2023-09-02
+  - digestive-functors-happstack # failure in job https://hydra.nixos.org/build/233222641 at 2023-09-02
+  - digestive-functors-lucid # failure in job https://hydra.nixos.org/build/233209397 at 2023-09-02
+  - digestive-functors-snap # failure in job https://hydra.nixos.org/build/233238117 at 2023-09-02
+  - digest-pure # failure in job https://hydra.nixos.org/build/233194135 at 2023-09-02
+  - DigitalOcean # failure in job https://hydra.nixos.org/build/233231291 at 2023-09-02
+  - digitalocean-kzs # failure in job https://hydra.nixos.org/build/233251576 at 2023-09-02
+  - dijkstra-simple # failure in job https://hydra.nixos.org/build/233218373 at 2023-09-02
+  - DimensionalHash # failure in job https://hydra.nixos.org/build/233230945 at 2023-09-02
+  - diophantine # failure in job https://hydra.nixos.org/build/233229215 at 2023-09-02
+  - diplomacy # failure in job https://hydra.nixos.org/build/233207895 at 2023-09-02
+  - direct-binary-files # failure in job https://hydra.nixos.org/build/233246387 at 2023-09-02
+  - directed-cubical # failure in job https://hydra.nixos.org/build/233215175 at 2023-09-02
+  - direct-fastcgi # failure in job https://hydra.nixos.org/build/233258737 at 2023-09-02
+  - direct-http # failure in job https://hydra.nixos.org/build/233232796 at 2023-09-02
+  - directory-ospath-streaming # failure in job https://hydra.nixos.org/build/233240003 at 2023-09-02
+  - direct-plugins # failure in job https://hydra.nixos.org/build/233211547 at 2023-09-02
+  - direm # failure in job https://hydra.nixos.org/build/233211496 at 2023-09-02
+  - disco # failure in job https://hydra.nixos.org/build/233212298 at 2023-09-02
+  - discordian-calendar # failure in job https://hydra.nixos.org/build/233218124 at 2023-09-02
+  - discord-types # failure in job https://hydra.nixos.org/build/233251778 at 2023-09-02
+  - discrete # failure in job https://hydra.nixos.org/build/233206492 at 2023-09-02
+  - DiscussionSupportSystem # failure in job https://hydra.nixos.org/build/233244662 at 2023-09-02
+  - Dish # failure in job https://hydra.nixos.org/build/233233264 at 2023-09-02
+  - disjoint-containers # failure in job https://hydra.nixos.org/build/233219391 at 2023-09-02
+  - disjoint-set # failure in job https://hydra.nixos.org/build/233201934 at 2023-09-02
+  - disjoint-set-stateful # failure in job https://hydra.nixos.org/build/233253300 at 2023-09-02
+  - diskhash # failure in job https://hydra.nixos.org/build/233230362 at 2023-09-02
+  - distance # failure in job https://hydra.nixos.org/build/233255082 at 2023-09-02
+  - Dist # failure in job https://hydra.nixos.org/build/233217811 at 2023-09-02
+  - distributed-closure # failure in job https://hydra.nixos.org/build/233223516 at 2023-09-02
+  - distribution # failure in job https://hydra.nixos.org/build/233227278 at 2023-09-02
+  - dist-upload # failure in job https://hydra.nixos.org/build/233225018 at 2023-09-02
+  - ditto-lucid # failure in job https://hydra.nixos.org/build/233256989 at 2023-09-02
+  - djembe # failure in job https://hydra.nixos.org/build/233201037 at 2023-09-02
+  - djinn-ghc # failure in job https://hydra.nixos.org/build/233250488 at 2023-09-02
+  - djinn-th # failure in job https://hydra.nixos.org/build/233219394 at 2023-09-02
+  - dmcc # failure in job https://hydra.nixos.org/build/233259362 at 2023-09-02
+  - dmenu # failure in job https://hydra.nixos.org/build/233230756 at 2023-09-02
+  - dnscache # failure in job https://hydra.nixos.org/build/233227512 at 2023-09-02
+  - dns-patterns # failure in job https://hydra.nixos.org/build/233251499 at 2023-09-02
+  - dnsrbl # failure in job https://hydra.nixos.org/build/233196401 at 2023-09-02
+  - dnssd # failure in job https://hydra.nixos.org/build/233194195 at 2023-09-02
+  - dobutok # failure in job https://hydra.nixos.org/build/233221133 at 2023-09-02
+  - dobutokO # failure in job https://hydra.nixos.org/build/233259278 at 2023-09-02
+  - doccheck # failure in job https://hydra.nixos.org/build/233234564 at 2023-09-02
+  - docidx # failure in job https://hydra.nixos.org/build/233253428 at 2023-09-02
+  - docker-build-cacher # failure in job https://hydra.nixos.org/build/233209897 at 2023-09-02
+  - dockercook # failure in job https://hydra.nixos.org/build/233243738 at 2023-09-02
+  - docker # failure in job https://hydra.nixos.org/build/233195921 at 2023-09-02
+  - dockerfile-creator # failure in job https://hydra.nixos.org/build/233225136 at 2023-09-02
+  - docopt # failure in job https://hydra.nixos.org/build/233256772 at 2023-09-02
+  - docrecords # failure in job https://hydra.nixos.org/build/233218633 at 2023-09-02
+  - doctest-discover-configurator # failure in job https://hydra.nixos.org/build/233200147 at 2023-09-02
+  - doctest-prop # failure in job https://hydra.nixos.org/build/233255947 at 2023-09-02
+  - docusign-example # failure in job https://hydra.nixos.org/build/233242945 at 2023-09-02
+  - docvim # failure in job https://hydra.nixos.org/build/233206985 at 2023-09-02
+  - DOH # failure in job https://hydra.nixos.org/build/233231913 at 2023-09-02
+  - domaindriven-core # failure in job https://hydra.nixos.org/build/233234739 at 2023-09-02
+  - domain-optics # failure in job https://hydra.nixos.org/build/233255232 at 2023-09-02
+  - dom-events # failure in job https://hydra.nixos.org/build/233231199 at 2023-09-02
+  - dom-parser # failure in job https://hydra.nixos.org/build/233235797 at 2023-09-02
+  - domplate # failure in job https://hydra.nixos.org/build/233241400 at 2023-09-02
+  - dom-selector # failure in job https://hydra.nixos.org/build/233212663 at 2023-09-02
+  - do-notation-dsl # failure in job https://hydra.nixos.org/build/233252824 at 2023-09-02
+  - dormouse-uri # failure in job https://hydra.nixos.org/build/233191706 at 2023-09-02
+  - do-spaces # failure in job https://hydra.nixos.org/build/233244331 at 2023-09-02
+  - dotfs # failure in job https://hydra.nixos.org/build/233200762 at 2023-09-02
+  - dot-linker # failure in job https://hydra.nixos.org/build/233237512 at 2023-09-02
+  - doublezip # failure in job https://hydra.nixos.org/build/233219270 at 2023-09-02
+  - doublify-toolkit # failure in job https://hydra.nixos.org/build/233223302 at 2023-09-02
+  - downloader # failure in job https://hydra.nixos.org/build/233195131 at 2023-09-02
+  - dozenal # failure in job https://hydra.nixos.org/build/233255439 at 2023-09-02
+  - dozens # failure in job https://hydra.nixos.org/build/233200638 at 2023-09-02
+  - dph-base # failure in job https://hydra.nixos.org/build/233211189 at 2023-09-02
+  - dpkg # failure in job https://hydra.nixos.org/build/233663149 at 2023-09-02
+  - DPM # failure in job https://hydra.nixos.org/build/233191307 at 2023-09-02
+  - dpor # failure in job https://hydra.nixos.org/build/233213785 at 2023-09-02
+  - dragen # failure in job https://hydra.nixos.org/build/233254270 at 2023-09-02
+  - drawille # failure in job https://hydra.nixos.org/build/233226647 at 2023-09-02
+  - dr-cabal # failure in job https://hydra.nixos.org/build/233253361 at 2023-09-02
+  - drClickOn # failure in job https://hydra.nixos.org/build/233217916 at 2023-09-02
+  - dresdner-verkehrsbetriebe # failure in job https://hydra.nixos.org/build/233222542 at 2023-09-02
+  - DrIFT-cabalized # failure in job https://hydra.nixos.org/build/233221273 at 2023-09-02
+  - drifter-postgresql # failure in job https://hydra.nixos.org/build/233248442 at 2023-09-02
+  - DrIFT # failure in job https://hydra.nixos.org/build/233220463 at 2023-09-02
+  - drmaa # failure in job https://hydra.nixos.org/build/233241074 at 2023-09-02
+  - drone # failure in job https://hydra.nixos.org/build/233207037 at 2023-09-02
+  - dropbox # failure in job https://hydra.nixos.org/build/233598046 at 2023-09-02
+  - dsc # failure in job https://hydra.nixos.org/build/233243851 at 2023-09-02
+  - ds-kanren # failure in job https://hydra.nixos.org/build/233216074 at 2023-09-02
+  - dson # failure in job https://hydra.nixos.org/build/233210971 at 2023-09-02
+  - dson-parsec # failure in job https://hydra.nixos.org/build/233236453 at 2023-09-02
+  - dstring # failure in job https://hydra.nixos.org/build/233238408 at 2023-09-02
+  - dsv # failure in job https://hydra.nixos.org/build/233228032 at 2023-09-02
+  - DTC # failure in job https://hydra.nixos.org/build/233252009 at 2023-09-02
+  - dtd-text # failure in job https://hydra.nixos.org/build/233203050 at 2023-09-02
+  - dtw # failure in job https://hydra.nixos.org/build/233198932 at 2023-09-02
+  - dual-game # failure in job https://hydra.nixos.org/build/234439752 at 2023-09-13
+  - dualizer # failure in job https://hydra.nixos.org/build/233237592 at 2023-09-02
+  - duckling # failure in job https://hydra.nixos.org/build/233247880 at 2023-09-02
+  - duet # failure in job https://hydra.nixos.org/build/233219004 at 2023-09-02
+  - dump-core # failure in job https://hydra.nixos.org/build/233244428 at 2023-09-02
+  - dunai-core # failure in job https://hydra.nixos.org/build/233255804 at 2023-09-02
+  - Dung # failure in job https://hydra.nixos.org/build/233206343 at 2023-09-02
+  - duplo # failure in job https://hydra.nixos.org/build/233237341 at 2023-09-02
+  - dura # failure in job https://hydra.nixos.org/build/233210320 at 2023-09-02
+  - duration # failure in job https://hydra.nixos.org/build/233207705 at 2023-09-02
+  - dvault # failure in job https://hydra.nixos.org/build/233225259 at 2023-09-02
+  - dvdread # failure in job https://hydra.nixos.org/build/233227587 at 2023-09-02
+  - dvi-processing # failure in job https://hydra.nixos.org/build/233224281 at 2023-09-02
+  - dwarfadt # failure in job https://hydra.nixos.org/build/233254895 at 2023-09-02
+  - dwarf # failure in job https://hydra.nixos.org/build/233244074 at 2023-09-02
+  - dyckword # failure in job https://hydra.nixos.org/build/233256385 at 2023-09-02
+  - dyna-brick # failure in job https://hydra.nixos.org/build/233193254 at 2023-09-02
+  - dynamic-graphs # failure in job https://hydra.nixos.org/build/233210231 at 2023-09-02
+  - dynamic-mvector # failure in job https://hydra.nixos.org/build/233252826 at 2023-09-02
+  - dynamic-object # failure in job https://hydra.nixos.org/build/233216605 at 2023-09-02
+  - DynamicTimeWarp # failure in job https://hydra.nixos.org/build/233238244 at 2023-09-02
+  - dyna-processing # failure in job https://hydra.nixos.org/build/234451875 at 2023-09-13
+  - dynloader # failure in job https://hydra.nixos.org/build/233239248 at 2023-09-02
+  - DysFRP # failure in job https://hydra.nixos.org/build/233214134 at 2023-09-02
+  - dywapitchtrack # failure in job https://hydra.nixos.org/build/233195810 at 2023-09-02
+  - dzen-dhall # failure in job https://hydra.nixos.org/build/233245800 at 2023-09-02
+  - dzen-utils # failure in job https://hydra.nixos.org/build/233217831 at 2023-09-02
+  - each # failure in job https://hydra.nixos.org/build/233259543 at 2023-09-02
+  - eager-sockets # failure in job https://hydra.nixos.org/build/233212504 at 2023-09-02
+  - earclipper # failure in job https://hydra.nixos.org/build/233212721 at 2023-09-02
+  - earcut # failure in job https://hydra.nixos.org/build/233211385 at 2023-09-02
+  - early # failure in job https://hydra.nixos.org/build/233252768 at 2023-09-02
+  - easy-api # failure in job https://hydra.nixos.org/build/233208757 at 2023-09-02
+  - easy-args # failure in job https://hydra.nixos.org/build/233221956 at 2023-09-02
+  - easy-bitcoin # failure in job https://hydra.nixos.org/build/233201882 at 2023-09-02
+  - easyjson # failure in job https://hydra.nixos.org/build/233199317 at 2023-09-02
+  - easyplot # failure in job https://hydra.nixos.org/build/233213312 at 2023-09-02
+  - easytest # failure in job https://hydra.nixos.org/build/233209710 at 2023-09-02
+  - ebeats # failure in job https://hydra.nixos.org/build/233235039 at 2023-09-02
+  - ebnf-bff # failure in job https://hydra.nixos.org/build/233221694 at 2023-09-02
+  - eccrypto-ed25519-bindings # failure in job https://hydra.nixos.org/build/233217399 at 2023-09-02
+  - ecma262 # failure in job https://hydra.nixos.org/build/233260026 at 2023-09-02
+  - ecta-plugin # failure in job https://hydra.nixos.org/build/233224764 at 2023-09-02
+  - ecu # failure in job https://hydra.nixos.org/build/233230797 at 2023-09-02
+  - eddie # failure in job https://hydra.nixos.org/build/233254499 at 2023-09-02
+  - ede # failure in job https://hydra.nixos.org/build/233207345 at 2023-09-02
+  - edenmodules # failure in job https://hydra.nixos.org/build/233255833 at 2023-09-02
+  - edf # failure in job https://hydra.nixos.org/build/233257484 at 2023-09-02
+  - edis # failure in job https://hydra.nixos.org/build/233258962 at 2023-09-02
+  - edit # failure in job https://hydra.nixos.org/build/233237521 at 2023-09-02
+  - edit-lenses # failure in job https://hydra.nixos.org/build/233195827 at 2023-09-02
+  - editline # failure in job https://hydra.nixos.org/build/233259515 at 2023-09-02
+  - effectful-st # failure in job https://hydra.nixos.org/build/233248591 at 2023-09-02
+  - effect-handlers # failure in job https://hydra.nixos.org/build/233234988 at 2023-09-02
+  - effective-aspects # failure in job https://hydra.nixos.org/build/233223120 at 2023-09-02
+  - effect-stack # failure in job https://hydra.nixos.org/build/233212358 at 2023-09-02
+  - effet # failure in job https://hydra.nixos.org/build/233204265 at 2023-09-02
+  - effin # failure in job https://hydra.nixos.org/build/233212960 at 2023-09-02
+  - egison-pattern-src # failure in job https://hydra.nixos.org/build/233248458 at 2023-09-02
+  - ehaskell # failure in job https://hydra.nixos.org/build/233196183 at 2023-09-02
+  - ehs # failure in job https://hydra.nixos.org/build/233234594 at 2023-09-02
+  - eibd-client-simple # failure in job https://hydra.nixos.org/build/233225416 at 2023-09-02
+  - eigen # failure in job https://hydra.nixos.org/build/233204115 at 2023-09-02
+  - Eight-Ball-Pool-Hack-Cheats # failure in job https://hydra.nixos.org/build/233211937 at 2023-09-02
+  - eio # failure in job https://hydra.nixos.org/build/233256103 at 2023-09-02
+  - EitherT # failure in job https://hydra.nixos.org/build/233217056 at 2023-09-02
+  - either-unwrap # failure in job https://hydra.nixos.org/build/233254495 at 2023-09-02
+  - ejdb2-binding # failure in job https://hydra.nixos.org/build/233253666 at 2023-09-02
+  - ekg-bosun # failure in job https://hydra.nixos.org/build/233250564 at 2023-09-02
+  - ekg-elastic # failure in job https://hydra.nixos.org/build/233204565 at 2023-09-02
+  - ekg-elasticsearch # failure in job https://hydra.nixos.org/build/233234000 at 2023-09-02
+  - ekg-json # failure in job https://hydra.nixos.org/build/233245374 at 2023-09-02
+  - ekg-log # failure in job https://hydra.nixos.org/build/233218201 at 2023-09-02
+  - ekg-prometheus-adapter # failure in job https://hydra.nixos.org/build/233226437 at 2023-09-02
+  - ekg-push # failure in job https://hydra.nixos.org/build/233249323 at 2023-09-02
+  - ekg-rrd # failure in job https://hydra.nixos.org/build/233214672 at 2023-09-02
+  - ekg-statsd # failure in job https://hydra.nixos.org/build/233200955 at 2023-09-02
+  - elevator # failure in job https://hydra.nixos.org/build/233213794 at 2023-09-02
+  - elision # failure in job https://hydra.nixos.org/build/233218969 at 2023-09-02
+  - elm-export-persistent # failure in job https://hydra.nixos.org/build/233248910 at 2023-09-02
+  - elm-websocket # failure in job https://hydra.nixos.org/build/233192201 at 2023-09-02
+  - elocrypt # failure in job https://hydra.nixos.org/build/233229627 at 2023-09-02
+  - ema-generics # failure in job https://hydra.nixos.org/build/233200038 at 2023-09-02
+  - emailaddress # failure in job https://hydra.nixos.org/build/233202700 at 2023-09-02
+  - email-header # failure in job https://hydra.nixos.org/build/233243713 at 2023-09-02
+  - email-postmark # failure in job https://hydra.nixos.org/build/233245426 at 2023-09-02
+  - embed-config # failure in job https://hydra.nixos.org/build/233237733 at 2023-09-02
+  - embla # failure in job https://hydra.nixos.org/build/233206703 at 2023-09-02
+  - emgm # failure in job https://hydra.nixos.org/build/233257789 at 2023-09-02
+  - Emping # failure in job https://hydra.nixos.org/build/233229400 at 2023-09-02
+  - Empty # failure in job https://hydra.nixos.org/build/233228745 at 2023-09-02
+  - empty-monad # failure in job https://hydra.nixos.org/build/233259244 at 2023-09-02
+  - enchant # failure in job https://hydra.nixos.org/build/233196992 at 2023-09-02
+  - encode-string # failure in job https://hydra.nixos.org/build/233251833 at 2023-09-02
+  - encoding # failure in job https://hydra.nixos.org/build/233216476 at 2023-09-02
+  - encoding-io # failure in job https://hydra.nixos.org/build/233208714 at 2023-09-02
+  - encryptable # failure in job https://hydra.nixos.org/build/233215911 at 2023-09-02
+  - endo # failure in job https://hydra.nixos.org/build/233222561 at 2023-09-02
+  - engine-io # failure in job https://hydra.nixos.org/build/233234034 at 2023-09-02
+  - entwine # failure in job https://hydra.nixos.org/build/233239261 at 2023-09-02
+  - EnumContainers # failure in job https://hydra.nixos.org/build/233258056 at 2023-09-02
+  - enumerator # failure in job https://hydra.nixos.org/build/233246612 at 2023-09-02
+  - EnumMap # failure in job https://hydra.nixos.org/build/233250249 at 2023-09-02
+  - enummapmap # failure in job https://hydra.nixos.org/build/233228525 at 2023-09-02
+  - enummapset-th # failure in job https://hydra.nixos.org/build/233225322 at 2023-09-02
+  - enummaps # failure in job https://hydra.nixos.org/build/233251965 at 2023-09-02
+  - enum-text # failure in job https://hydra.nixos.org/build/233194373 at 2023-09-02
+  - enum-utf8 # failure in job https://hydra.nixos.org/build/233234628 at 2023-09-02
+  - envelope # failure in job https://hydra.nixos.org/build/233199309 at 2023-09-02
+  - env-parser # failure in job https://hydra.nixos.org/build/233237933 at 2023-09-02
+  - envstatus # failure in job https://hydra.nixos.org/build/233257940 at 2023-09-02
+  - envy-extensible # failure in job https://hydra.nixos.org/build/233229313 at 2023-09-02
+  - epanet-haskell # failure in job https://hydra.nixos.org/build/233197331 at 2023-09-02
+  - epass # failure in job https://hydra.nixos.org/build/233194117 at 2023-09-02
+  - epic # failure in job https://hydra.nixos.org/build/233204921 at 2023-09-02
+  - epi-sim # failure in job https://hydra.nixos.org/build/233246076 at 2023-09-02
+  - epoll # failure in job https://hydra.nixos.org/build/233247564 at 2023-09-02
+  - epubname # failure in job https://hydra.nixos.org/build/233198937 at 2023-09-02
+  - Eq # failure in job https://hydra.nixos.org/build/233200216 at 2023-09-02
+  - EqualitySolver # failure in job https://hydra.nixos.org/build/233190999 at 2023-09-02
+  - equational-reasoning-induction # failure in job https://hydra.nixos.org/build/233235280 at 2023-09-02
+  - equeue # failure in job https://hydra.nixos.org/build/233237274 at 2023-09-02
+  - erd # failure in job https://hydra.nixos.org/build/233215438 at 2023-09-02
+  - erlang # failure in job https://hydra.nixos.org/build/233195837 at 2023-09-02
+  - erlang-ffi # failure in job https://hydra.nixos.org/build/233233314 at 2023-09-02
+  - eros # failure in job https://hydra.nixos.org/build/233247983 at 2023-09-02
+  - error-context # failure in job https://hydra.nixos.org/build/233245027 at 2023-09-02
+  - error-continuations # failure in job https://hydra.nixos.org/build/233232357 at 2023-09-02
+  - error-list # failure in job https://hydra.nixos.org/build/233237173 at 2023-09-02
+  - error-loc # failure in job https://hydra.nixos.org/build/233243511 at 2023-09-02
+  - error-util # failure in job https://hydra.nixos.org/build/233233764 at 2023-09-02
+  - ersaconcat # failure in job https://hydra.nixos.org/build/233196142 at 2023-09-02
+  - ersatz # failure in job https://hydra.nixos.org/build/233256809 at 2023-09-02
+  - ert # failure in job https://hydra.nixos.org/build/233250717 at 2023-09-02
+  - escape-artist # failure in job https://hydra.nixos.org/build/233195305 at 2023-09-02
+  - escoger # failure in job https://hydra.nixos.org/build/233224731 at 2023-09-02
+  - esqueleto-pgcrypto # failure in job https://hydra.nixos.org/build/233208955 at 2023-09-02
+  - esqueleto-textsearch # failure in job https://hydra.nixos.org/build/233239400 at 2023-09-02
+  - essence-of-live-coding # failure in job https://hydra.nixos.org/build/233216872 at 2023-09-02
+  - ess # failure in job https://hydra.nixos.org/build/233218789 at 2023-09-02
+  - EstProgress # failure in job https://hydra.nixos.org/build/233236617 at 2023-09-02
+  - Etage # failure in job https://hydra.nixos.org/build/233219527 at 2023-09-02
+  - etcd # failure in job https://hydra.nixos.org/build/233196041 at 2023-09-02
+  - etc # failure in job https://hydra.nixos.org/build/233199192 at 2023-09-02
+  - ethereum-rlp # failure in job https://hydra.nixos.org/build/233236392 at 2023-09-02
+  - eurofxref # failure in job https://hydra.nixos.org/build/233230942 at 2023-09-02
+  - eve-cli # failure in job https://hydra.nixos.org/build/233254555 at 2023-09-02
+  - eved # failure in job https://hydra.nixos.org/build/233194319 at 2023-09-02
+  - event-driven # failure in job https://hydra.nixos.org/build/233233946 at 2023-09-02
+  - event # failure in job https://hydra.nixos.org/build/233209756 at 2023-09-02
+  - eventsource-api # failure in job https://hydra.nixos.org/build/233243220 at 2023-09-02
+  - eventsourced # failure in job https://hydra.nixos.org/build/233192731 at 2023-09-02
+  - eventstore # failure in job https://hydra.nixos.org/build/233202734 at 2023-09-02
+  - evoke # failure in job https://hydra.nixos.org/build/233213948 at 2023-09-02
+  - ewe # failure in job https://hydra.nixos.org/build/233217228 at 2023-09-02
+  - exact-cover # failure in job https://hydra.nixos.org/build/233203182 at 2023-09-02
+  - exact-real-positional # failure in job https://hydra.nixos.org/build/233239627 at 2023-09-02
+  - except-exceptions # failure in job https://hydra.nixos.org/build/233191953 at 2023-09-02
+  - exceptional # failure in job https://hydra.nixos.org/build/233214345 at 2023-09-02
+  - exceptionfree-readfile # failure in job https://hydra.nixos.org/build/233222995 at 2023-09-02
+  - exception-monads-fd # failure in job https://hydra.nixos.org/build/233224946 at 2023-09-02
+  - exception-via # failure in job https://hydra.nixos.org/build/233197670 at 2023-09-02
+  - exchangerates # failure in job https://hydra.nixos.org/build/233230944 at 2023-09-02
+  - execs # failure in job https://hydra.nixos.org/build/233210274 at 2023-09-02
+  - executor # failure in job https://hydra.nixos.org/build/233250118 at 2023-09-02
+  - exhaustive # failure in job https://hydra.nixos.org/build/233238024 at 2023-09-02
+  - exherbo-cabal # failure in job https://hydra.nixos.org/build/233206319 at 2023-09-02
+  - exh # failure in job https://hydra.nixos.org/build/233253883 at 2023-09-02
+  - exif # failure in job https://hydra.nixos.org/build/233229247 at 2023-09-02
+  - exigo-schema # failure in job https://hydra.nixos.org/build/233197808 at 2023-09-02
+  - exinst-deepseq # failure in job https://hydra.nixos.org/build/233207947 at 2023-09-02
+  - exinst-hashable # failure in job https://hydra.nixos.org/build/233210438 at 2023-09-02
+  - exists # failure in job https://hydra.nixos.org/build/233243541 at 2023-09-02
+  - exitcode # failure in job https://hydra.nixos.org/build/233238454 at 2023-09-02
+  - exp-cache # failure in job https://hydra.nixos.org/build/233220561 at 2023-09-02
+  - exp-extended # failure in job https://hydra.nixos.org/build/233236139 at 2023-09-02
+  - explain # failure in job https://hydra.nixos.org/build/233207210 at 2023-09-02
+  - explicit-constraint-lens # failure in job https://hydra.nixos.org/build/233230188 at 2023-09-02
+  - explicit-determinant # failure in job https://hydra.nixos.org/build/233246543 at 2023-09-02
+  - explicit-iomodes # failure in job https://hydra.nixos.org/build/233247342 at 2023-09-02
+  - exploring-interpreters # failure in job https://hydra.nixos.org/build/233254448 at 2023-09-02
+  - exposed-containers # failure in job https://hydra.nixos.org/build/233200558 at 2023-09-02
+  - expression-parser # failure in job https://hydra.nixos.org/build/233250586 at 2023-09-02
+  - expressions # failure in job https://hydra.nixos.org/build/233212192 at 2023-09-02
+  - expresso # failure in job https://hydra.nixos.org/build/233208513 at 2023-09-02
+  - extcore # failure in job https://hydra.nixos.org/build/233230369 at 2023-09-02
+  - extended-categories # failure in job https://hydra.nixos.org/build/233258803 at 2023-09-02
+  - extended-containers # failure in job https://hydra.nixos.org/build/233226876 at 2023-09-02
+  - extensible-data # failure in job https://hydra.nixos.org/build/233198917 at 2023-09-02
+  - extensible-effects-concurrent # failure in job https://hydra.nixos.org/build/233233685 at 2023-09-02
+  - extensioneer # failure in job https://hydra.nixos.org/build/233663099 at 2023-09-02
+  - external-sort # failure in job https://hydra.nixos.org/build/233244337 at 2023-09-02
+  - extism # failure in job https://hydra.nixos.org/build/233242807 at 2023-09-02
+  - extractelf # failure in job https://hydra.nixos.org/build/233240806 at 2023-09-02
+  - Extra # failure in job https://hydra.nixos.org/build/233243671 at 2023-09-02
+  - extralife # failure in job https://hydra.nixos.org/build/233236550 at 2023-09-02
+  - ez3 # failure in job https://hydra.nixos.org/build/233233362 at 2023-09-02
+  - ez-couch # failure in job https://hydra.nixos.org/build/233216577 at 2023-09-02
+  - Facebook-Password-Hacker-Online-Latest-Version # failure in job https://hydra.nixos.org/build/233194533 at 2023-09-02
+  - faceted # failure in job https://hydra.nixos.org/build/233231120 at 2023-09-02
+  - factory # failure in job https://hydra.nixos.org/build/233222084 at 2023-09-02
+  - facts # failure in job https://hydra.nixos.org/build/233194410 at 2023-09-02
+  - Facts # failure in job https://hydra.nixos.org/build/233224533 at 2023-09-02
+  - fadno-braids # failure in job https://hydra.nixos.org/build/233246763 at 2023-09-02
+  - fadno-xml # failure in job https://hydra.nixos.org/build/233228192 at 2023-09-02
+  - failable-list # failure in job https://hydra.nixos.org/build/233198924 at 2023-09-02
+  - failure-detector # failure in job https://hydra.nixos.org/build/233244451 at 2023-09-02
+  - fake # failure in job https://hydra.nixos.org/build/233199052 at 2023-09-02
+  - fake-type # failure in job https://hydra.nixos.org/build/233197081 at 2023-09-02
+  - faktory # failure in job https://hydra.nixos.org/build/233240158 at 2023-09-02
+  - f-algebra-gen # failure in job https://hydra.nixos.org/build/233194303 at 2023-09-02
+  - fastbayes # failure in job https://hydra.nixos.org/build/233223718 at 2023-09-02
+  - fast-combinatorics # failure in job https://hydra.nixos.org/build/233250615 at 2023-09-02
+  - fastedit # failure in job https://hydra.nixos.org/build/233213468 at 2023-09-02
+  - fastly # failure in job https://hydra.nixos.org/build/233213136 at 2023-09-02
+  - fast-nats # failure in job https://hydra.nixos.org/build/233238596 at 2023-09-02
+  - fastpbkdf2 # failure in job https://hydra.nixos.org/build/233218574 at 2023-09-02
+  - FastPush # failure in job https://hydra.nixos.org/build/233224507 at 2023-09-02
+  - fast-tagsoup-utf8-only # failure in job https://hydra.nixos.org/build/233202322 at 2023-09-02
+  - FastxPipe # failure in job https://hydra.nixos.org/build/233232889 at 2023-09-02
+  - fathead-util # failure in job https://hydra.nixos.org/build/233255882 at 2023-09-02
+  - fay # failure in job https://hydra.nixos.org/build/233197122 at 2023-09-02
+  - fbmessenger-api # failure in job https://hydra.nixos.org/build/233247641 at 2023-09-02
+  - fb-persistent # failure in job https://hydra.nixos.org/build/233193999 at 2023-09-02
+  - fcache # failure in job https://hydra.nixos.org/build/233258505 at 2023-09-02
+  - fca # failure in job https://hydra.nixos.org/build/233205050 at 2023-09-02
+  - fcf-composite # failure in job https://hydra.nixos.org/build/233252957 at 2023-09-02
+  - fcf-graphs # failure in job https://hydra.nixos.org/build/233254885 at 2023-09-02
+  - fcg # failure in job https://hydra.nixos.org/build/233228656 at 2023-09-02
+  - fckeditor # failure in job https://hydra.nixos.org/build/233226949 at 2023-09-02
+  - fclabels-monadlib # failure in job https://hydra.nixos.org/build/233192353 at 2023-09-02
+  - fcm-client # failure in job https://hydra.nixos.org/build/233241459 at 2023-09-02
+  - fdo-trash # failure in job https://hydra.nixos.org/build/233244987 at 2023-09-02
+  - feather # failure in job https://hydra.nixos.org/build/233192230 at 2023-09-02
+  - feature-flipper # failure in job https://hydra.nixos.org/build/233192476 at 2023-09-02
+  - fedora-packages # failure in job https://hydra.nixos.org/build/233256230 at 2023-09-02
+  - feed-cli # failure in job https://hydra.nixos.org/build/233234086 at 2023-09-02
+  - feed-collect # failure in job https://hydra.nixos.org/build/233203100 at 2023-09-02
+  - feed-crawl # failure in job https://hydra.nixos.org/build/233227566 at 2023-09-02
+  - fenfire # failure in job https://hydra.nixos.org/build/233254038 at 2023-09-02
+  - fernet # failure in job https://hydra.nixos.org/build/233228830 at 2023-09-02
+  - FerryCore # failure in job https://hydra.nixos.org/build/233198667 at 2023-09-02
+  - festival # failure in job https://hydra.nixos.org/build/233257483 at 2023-09-02
+  - Feval # failure in job https://hydra.nixos.org/build/233233117 at 2023-09-02
+  - fez-conf # failure in job https://hydra.nixos.org/build/233240692 at 2023-09-02
+  - ffeed # failure in job https://hydra.nixos.org/build/233209944 at 2023-09-02
+  - ffmpeg-light # failure in job https://hydra.nixos.org/build/233213041 at 2023-09-02
+  - ffunctor # failure in job https://hydra.nixos.org/build/233247887 at 2023-09-02
+  - fgl-extras-decompositions # failure in job https://hydra.nixos.org/build/233237744 at 2023-09-02
+  - fib # failure in job https://hydra.nixos.org/build/233225971 at 2023-09-02
+  - fibon # failure in job https://hydra.nixos.org/build/233215748 at 2023-09-02
+  - fields # failure in job https://hydra.nixos.org/build/233197886 at 2023-09-02
+  - fieldwise # failure in job https://hydra.nixos.org/build/233202285 at 2023-09-02
+  - fig # failure in job https://hydra.nixos.org/build/233212262 at 2023-09-02
+  - filecache # failure in job https://hydra.nixos.org/build/233229175 at 2023-09-02
+  - file-collection # failure in job https://hydra.nixos.org/build/233205586 at 2023-09-02
+  - file-command-qq # failure in job https://hydra.nixos.org/build/233205913 at 2023-09-02
+  - filediff # failure in job https://hydra.nixos.org/build/233256056 at 2023-09-02
+  - file-embed-poly # failure in job https://hydra.nixos.org/build/233252504 at 2023-09-02
+  - file-io # failure in job https://hydra.nixos.org/build/233192040 at 2023-09-02
+  - file-location # failure in job https://hydra.nixos.org/build/233202456 at 2023-09-02
+  - FileManipCompat # failure in job https://hydra.nixos.org/build/233254887 at 2023-09-02
+  - FileManip # failure in job https://hydra.nixos.org/build/233237292 at 2023-09-02
+  - fileneglect # failure in job https://hydra.nixos.org/build/233209920 at 2023-09-02
+  - Files # failure in job https://hydra.nixos.org/build/233207543 at 2023-09-02
+  - filesystem-conduit # failure in job https://hydra.nixos.org/build/233239975 at 2023-09-02
+  - FileSystem # failure in job https://hydra.nixos.org/build/233230289 at 2023-09-02
+  - filesystem-trees # failure in job https://hydra.nixos.org/build/233216661 at 2023-09-02
+  - file-templates # failure in job https://hydra.nixos.org/build/233255339 at 2023-09-02
+  - fillit # failure in job https://hydra.nixos.org/build/233214605 at 2023-09-02
+  - final-pretty-printer # failure in job https://hydra.nixos.org/build/233238571 at 2023-09-02
+  - Finance-Quote-Yahoo # failure in job https://hydra.nixos.org/build/233223617 at 2023-09-02
+  - find-conduit # failure in job https://hydra.nixos.org/build/233243763 at 2023-09-02
+  - find-source-files # failure in job https://hydra.nixos.org/build/233239773 at 2023-09-02
+  - fingertree-psqueue # failure in job https://hydra.nixos.org/build/233224766 at 2023-09-02
+  - fingertree-tf # failure in job https://hydra.nixos.org/build/233259910 at 2023-09-02
+  - finite # failure in job https://hydra.nixos.org/build/233226313 at 2023-09-02
+  - finite-fields # failure in job https://hydra.nixos.org/build/233191530 at 2023-09-02
+  - firefly-example # failure in job https://hydra.nixos.org/build/233259350 at 2023-09-02
+  - first-and-last # failure in job https://hydra.nixos.org/build/233256888 at 2023-09-02
+  - first-class-instances # failure in job https://hydra.nixos.org/build/233207181 at 2023-09-02
+  - FirstPrelude # failure in job https://hydra.nixos.org/build/233256065 at 2023-09-02
+  - fit # failure in job https://hydra.nixos.org/build/233239893 at 2023-09-02
+  - fitsio # failure in job https://hydra.nixos.org/build/233246119 at 2023-09-02
+  - fits-parse # failure in job https://hydra.nixos.org/build/233242853 at 2023-09-02
+  - fixed-point # failure in job https://hydra.nixos.org/build/233255142 at 2023-09-02
+  - fixedprec # failure in job https://hydra.nixos.org/build/233231519 at 2023-09-02
+  - fixed-precision # failure in job https://hydra.nixos.org/build/233226433 at 2023-09-02
+  - fixed-storable-array # failure in job https://hydra.nixos.org/build/233200413 at 2023-09-02
+  - fixed-timestep # failure in job https://hydra.nixos.org/build/233252950 at 2023-09-02
+  - fixed-vector-hetero # failure in job https://hydra.nixos.org/build/233207863 at 2023-09-02
+  - fixed-width # failure in job https://hydra.nixos.org/build/233236195 at 2023-09-02
+  - fixer # failure in job https://hydra.nixos.org/build/233246038 at 2023-09-02
+  - fixfile # failure in job https://hydra.nixos.org/build/233209830 at 2023-09-02
+  - fixie # failure in job https://hydra.nixos.org/build/233230496 at 2023-09-02
+  - fix-imports # failure in job https://hydra.nixos.org/build/233251518 at 2023-09-02
+  - fix-symbols-gitit # failure in job https://hydra.nixos.org/build/233259222 at 2023-09-02
+  - fizzbuzz-as-a-service # failure in job https://hydra.nixos.org/build/233235796 at 2023-09-02
+  - fizzbuzz # failure in job https://hydra.nixos.org/build/233207626 at 2023-09-02
+  - flaccuraterip # failure in job https://hydra.nixos.org/build/233255839 at 2023-09-02
+  - flamethrower # failure in job https://hydra.nixos.org/build/233258696 at 2023-09-02
+  - flamingra # failure in job https://hydra.nixos.org/build/233242907 at 2023-09-02
+  - flat-maybe # failure in job https://hydra.nixos.org/build/233197544 at 2023-09-02
+  - flat-mcmc # failure in job https://hydra.nixos.org/build/233234404 at 2023-09-02
+  - flay # failure in job https://hydra.nixos.org/build/233235511 at 2023-09-02
+  - flexible-time # failure in job https://hydra.nixos.org/build/233208099 at 2023-09-02
+  - flickr # failure in job https://hydra.nixos.org/build/233212718 at 2023-09-02
+  - float-binstring # failure in job https://hydra.nixos.org/build/233203257 at 2023-09-02
+  - floating-bits # failure in job https://hydra.nixos.org/build/233223171 at 2023-09-02
+  - flock # failure in job https://hydra.nixos.org/build/233245164 at 2023-09-02
+  - flowdock-api # failure in job https://hydra.nixos.org/build/233215251 at 2023-09-02
+  - flowdock # failure in job https://hydra.nixos.org/build/233206736 at 2023-09-02
+  - flowdock-rest # failure in job https://hydra.nixos.org/build/233240090 at 2023-09-02
+  - flow-er # failure in job https://hydra.nixos.org/build/233202082 at 2023-09-02
+  - flowlocks-framework # failure in job https://hydra.nixos.org/build/233255068 at 2023-09-02
+  - flp # failure in job https://hydra.nixos.org/build/233219373 at 2023-09-02
+  - fltkhs # failure in job https://hydra.nixos.org/build/233207014 at 2023-09-02
+  - fluffy-parser # failure in job https://hydra.nixos.org/build/233212110 at 2023-09-02
+  - fluid-idl # failure in job https://hydra.nixos.org/build/233214307 at 2023-09-02
+  - fluidsynth # failure in job https://hydra.nixos.org/build/233225998 at 2023-09-02
+  - flux-monoid # failure in job https://hydra.nixos.org/build/233202845 at 2023-09-02
+  - fmark # failure in job https://hydra.nixos.org/build/233196159 at 2023-09-02
+  - FModExRaw # failure in job https://hydra.nixos.org/build/233259032 at 2023-09-02
+  - fold-debounce-conduit # failure in job https://hydra.nixos.org/build/233195249 at 2023-09-02
+  - foldl-incremental # failure in job https://hydra.nixos.org/build/233201921 at 2023-09-02
+  - foldl-statistics # failure in job https://hydra.nixos.org/build/233243724 at 2023-09-02
+  - foldl-transduce # failure in job https://hydra.nixos.org/build/233192486 at 2023-09-02
+  - folds-common # failure in job https://hydra.nixos.org/build/233237316 at 2023-09-02
+  - follow # failure in job https://hydra.nixos.org/build/233255423 at 2023-09-02
+  - fontconfig-pure # failure in job https://hydra.nixos.org/build/233254573 at 2023-09-02
+  - font-opengl-basic4x6 # failure in job https://hydra.nixos.org/build/233200978 at 2023-09-02
+  - forbidden-fruit # failure in job https://hydra.nixos.org/build/233258954 at 2023-09-02
+  - fordo # failure in job https://hydra.nixos.org/build/233255879 at 2023-09-02
+  - forecast-io # failure in job https://hydra.nixos.org/build/233197283 at 2023-09-02
+  - foreign # failure in job https://hydra.nixos.org/build/233250127 at 2023-09-02
+  - foreign-var # failure in job https://hydra.nixos.org/build/233215431 at 2023-09-02
+  - forest # failure in job https://hydra.nixos.org/build/233208811 at 2023-09-02
+  - forest-fire # failure in job https://hydra.nixos.org/build/233203922 at 2023-09-02
+  - forex2ledger # failure in job https://hydra.nixos.org/build/233212197 at 2023-09-02
+  - for-free # failure in job https://hydra.nixos.org/build/233235927 at 2023-09-02
+  - forger # failure in job https://hydra.nixos.org/build/233234444 at 2023-09-02
+  - ForkableT # failure in job https://hydra.nixos.org/build/233253947 at 2023-09-02
+  - forma # failure in job https://hydra.nixos.org/build/233200787 at 2023-09-02
+  - formattable # failure in job https://hydra.nixos.org/build/233230195 at 2023-09-02
+  - formura # failure in job https://hydra.nixos.org/build/233193674 at 2023-09-02
+  - Fortnite-Hack-Cheats-Free-V-Bucks-Generator # failure in job https://hydra.nixos.org/build/233233147 at 2023-09-02
+  - fortran-vars # failure in job https://hydra.nixos.org/build/233257719 at 2023-09-02
+  - fortytwo # failure in job https://hydra.nixos.org/build/233209552 at 2023-09-02
+  - foscam-filename # failure in job https://hydra.nixos.org/build/233237326 at 2023-09-02
+  - FPretty # failure in job https://hydra.nixos.org/build/233196648 at 2023-09-02
+  - fptest # failure in job https://hydra.nixos.org/build/233233288 at 2023-09-02
+  - fquery # failure in job https://hydra.nixos.org/build/233196287 at 2023-09-02
+  - Fractaler # failure in job https://hydra.nixos.org/build/233253414 at 2023-09-02
+  - fractals # failure in job https://hydra.nixos.org/build/233205969 at 2023-09-02
+  - fraction # failure in job https://hydra.nixos.org/build/233204186 at 2023-09-02
+  - frag # failure in job https://hydra.nixos.org/build/234458411 at 2023-09-13
+  - franchise # failure in job https://hydra.nixos.org/build/233256790 at 2023-09-02
+  - fraxl # failure in job https://hydra.nixos.org/build/233219345 at 2023-09-02
+  - freddy # failure in job https://hydra.nixos.org/build/233208999 at 2023-09-02
+  - free-concurrent # failure in job https://hydra.nixos.org/build/233257070 at 2023-09-02
+  - f-ree-hack-cheats-free-v-bucks-generator # failure in job https://hydra.nixos.org/build/233225159 at 2023-09-02
+  - free-http # failure in job https://hydra.nixos.org/build/233227362 at 2023-09-02
+  - freenect # failure in job https://hydra.nixos.org/build/233196105 at 2023-09-02
+  - free-operational # failure in job https://hydra.nixos.org/build/233201565 at 2023-09-02
+  - freer-effects # failure in job https://hydra.nixos.org/build/233214270 at 2023-09-02
+  - freer-simple # failure in job https://hydra.nixos.org/build/233243415 at 2023-09-02
+  - freesect # failure in job https://hydra.nixos.org/build/233218671 at 2023-09-02
+  - freesound # failure in job https://hydra.nixos.org/build/233240464 at 2023-09-02
+  - free-theorems-counterexamples # failure in job https://hydra.nixos.org/build/233231989 at 2023-09-02
+  - free-theorems-seq # failure in job https://hydra.nixos.org/build/233207326 at 2023-09-02
+  - free-theorems-webui # failure in job https://hydra.nixos.org/build/233255034 at 2023-09-02
+  - FreeTypeGL # failure in job https://hydra.nixos.org/build/233212222 at 2023-09-02
+  - freetype-simple # failure in job https://hydra.nixos.org/build/233249707 at 2023-09-02
+  - free-v-bucks-generator-no-survey # failure in job https://hydra.nixos.org/build/233208419 at 2023-09-02
+  - free-v-bucks-generator-ps4-no-survey # failure in job https://hydra.nixos.org/build/233190747 at 2023-09-02
+  - freq # failure in job https://hydra.nixos.org/build/233247154 at 2023-09-02
+  - fresh # failure in job https://hydra.nixos.org/build/233196569 at 2023-09-02
+  - fresnel # failure in job https://hydra.nixos.org/build/233214198 at 2023-09-02
+  - friday # failure in job https://hydra.nixos.org/build/233249799 at 2023-09-02
+  - friendly # failure in job https://hydra.nixos.org/build/233254836 at 2023-09-02
+  - from-env # failure in job https://hydra.nixos.org/build/233219518 at 2023-09-02
+  - frown # failure in job https://hydra.nixos.org/build/233208462 at 2023-09-02
+  - frp-arduino # failure in job https://hydra.nixos.org/build/233192216 at 2023-09-02
+  - frpnow # failure in job https://hydra.nixos.org/build/233236056 at 2023-09-02
+  - fs-events # failure in job https://hydra.nixos.org/build/233218231 at 2023-09-02
+  - fsh-csv # failure in job https://hydra.nixos.org/build/233220196 at 2023-09-02
+  - fsmActions # failure in job https://hydra.nixos.org/build/233224366 at 2023-09-02
+  - FSM # failure in job https://hydra.nixos.org/build/233247343 at 2023-09-02
+  - fsnotify-conduit # failure in job https://hydra.nixos.org/build/233196251 at 2023-09-02
+  - fst # failure in job https://hydra.nixos.org/build/233233271 at 2023-09-02
+  - fsutils # failure in job https://hydra.nixos.org/build/233204599 at 2023-09-02
+  - fswait # failure in job https://hydra.nixos.org/build/233247770 at 2023-09-02
+  - fswatcher # failure in job https://hydra.nixos.org/build/233226757 at 2023-09-02
+  - fswatch # failure in job https://hydra.nixos.org/build/233233447 at 2023-09-02
+  - ft-generator # failure in job https://hydra.nixos.org/build/233205823 at 2023-09-02
+  - FTGL-bytestring # failure in job https://hydra.nixos.org/build/233256032 at 2023-09-02
+  - ftp-client # failure in job https://hydra.nixos.org/build/233227664 at 2023-09-02
+  - ftp-conduit # failure in job https://hydra.nixos.org/build/233244330 at 2023-09-02
+  - ftphs # failure in job https://hydra.nixos.org/build/233215550 at 2023-09-02
+  - full-sessions # failure in job https://hydra.nixos.org/build/233254332 at 2023-09-02
+  - funbot-client # failure in job https://hydra.nixos.org/build/233255739 at 2023-09-02
+  - funcons-values # failure in job https://hydra.nixos.org/build/233194179 at 2023-09-02
+  - function-instances-algebra # failure in job https://hydra.nixos.org/build/233202209 at 2023-09-02
+  - functor-friends # failure in job https://hydra.nixos.org/build/233208108 at 2023-09-02
+  - functor-infix # failure in job https://hydra.nixos.org/build/233228794 at 2023-09-02
+  - functorm # failure in job https://hydra.nixos.org/build/233212335 at 2023-09-02
+  - functor-products # failure in job https://hydra.nixos.org/build/233209316 at 2023-09-02
+  - functor-utils # failure in job https://hydra.nixos.org/build/233213259 at 2023-09-02
+  - Fungi # failure in job https://hydra.nixos.org/build/233253088 at 2023-09-02
+  - funpat # failure in job https://hydra.nixos.org/build/233222123 at 2023-09-02
+  - funspection # failure in job https://hydra.nixos.org/build/233227352 at 2023-09-02
+  - fused-effects-exceptions # failure in job https://hydra.nixos.org/build/233203744 at 2023-09-02
+  - fused-effects-mwc-random # failure in job https://hydra.nixos.org/build/233253228 at 2023-09-02
+  - fused-effects-resumable # failure in job https://hydra.nixos.org/build/233242479 at 2023-09-02
+  - fused-effects-th # failure in job https://hydra.nixos.org/build/233192186 at 2023-09-02
+  - fusion # failure in job https://hydra.nixos.org/build/233204359 at 2023-09-02
+  - futhask # failure in job https://hydra.nixos.org/build/233229281 at 2023-09-02
+  - futun # failure in job https://hydra.nixos.org/build/233245115 at 2023-09-02
+  - future # failure in job https://hydra.nixos.org/build/233224844 at 2023-09-02
+  - futures # failure in job https://hydra.nixos.org/build/233230206 at 2023-09-02
+  - fuzzyfind # failure in job https://hydra.nixos.org/build/233206269 at 2023-09-02
+  - fuzzyset # failure in job https://hydra.nixos.org/build/233231726 at 2023-09-02
+  - fuzzy-timings # failure in job https://hydra.nixos.org/build/233235765 at 2023-09-02
+  - fvars # failure in job https://hydra.nixos.org/build/234461649 at 2023-09-13
+  - fwgl # failure in job https://hydra.nixos.org/build/233246210 at 2023-09-02
+  - g4ip # failure in job https://hydra.nixos.org/build/233248315 at 2023-09-02
+  - gameclock # failure in job https://hydra.nixos.org/build/233234964 at 2023-09-02
+  - game-probability # failure in job https://hydra.nixos.org/build/233191255 at 2023-09-02
+  - gamgee # failure in job https://hydra.nixos.org/build/233249846 at 2023-09-02
+  - Gamgine # failure in job https://hydra.nixos.org/build/233242510 at 2023-09-02
+  - Ganymede # failure in job https://hydra.nixos.org/build/233248892 at 2023-09-02
+  - garepinoh # failure in job https://hydra.nixos.org/build/233238111 at 2023-09-02
+  - gargoyle # failure in job https://hydra.nixos.org/build/233196445 at 2023-09-02
+  - gas # failure in job https://hydra.nixos.org/build/233233966 at 2023-09-02
+  - gather # failure in job https://hydra.nixos.org/build/233208848 at 2023-09-02
+  - gc-monitoring-wai # failure in job https://hydra.nixos.org/build/233209449 at 2023-09-02
+  - gconf # failure in job https://hydra.nixos.org/build/233259023 at 2023-09-02
+  - gdiff-th # failure in job https://hydra.nixos.org/build/233215065 at 2023-09-02
+  - gelatin # failure in job https://hydra.nixos.org/build/233249394 at 2023-09-02
+  - gemcap # failure in job https://hydra.nixos.org/build/233202506 at 2023-09-02
+  - gemstone # failure in job https://hydra.nixos.org/build/233202246 at 2023-09-02
+  - gender # failure in job https://hydra.nixos.org/build/233235712 at 2023-09-02
+  - genders # failure in job https://hydra.nixos.org/build/233238566 at 2023-09-02
+  - general-allocate # failure in job https://hydra.nixos.org/build/233214648 at 2023-09-02
+  - general-prelude # failure in job https://hydra.nixos.org/build/233248628 at 2023-09-02
+  - GeneralTicTacToe # failure in job https://hydra.nixos.org/build/233207939 at 2023-09-02
+  - generator # failure in job https://hydra.nixos.org/build/233213384 at 2023-09-02
+  - generators # failure in job https://hydra.nixos.org/build/233246459 at 2023-09-02
+  - generic-aeson # failure in job https://hydra.nixos.org/build/233198064 at 2023-09-02
+  - generic-binary # failure in job https://hydra.nixos.org/build/233214473 at 2023-09-02
+  - generic-church # failure in job https://hydra.nixos.org/build/233213419 at 2023-09-02
+  - generic-enumeration # failure in job https://hydra.nixos.org/build/233213191 at 2023-09-02
+  - generic-enum # failure in job https://hydra.nixos.org/build/233220316 at 2023-09-02
+  - generic-labels # failure in job https://hydra.nixos.org/build/233230621 at 2023-09-02
+  - generic-lens-labels # failure in job https://hydra.nixos.org/build/233256875 at 2023-09-02
+  - generic-lucid-scaffold # failure in job https://hydra.nixos.org/build/233259250 at 2023-09-02
+  - generic-match # failure in job https://hydra.nixos.org/build/233221364 at 2023-09-02
+  - generic-maybe # failure in job https://hydra.nixos.org/build/233246991 at 2023-09-02
+  - generic-override # failure in job https://hydra.nixos.org/build/233235699 at 2023-09-02
+  - generic-persistence # failure in job https://hydra.nixos.org/build/233240709 at 2023-09-02
+  - generic-pretty # failure in job https://hydra.nixos.org/build/233205583 at 2023-09-02
+  - generic-pretty-instances # failure in job https://hydra.nixos.org/build/233243114 at 2023-09-02
+  - generic-records # failure in job https://hydra.nixos.org/build/233237235 at 2023-09-02
+  - genericserialize # failure in job https://hydra.nixos.org/build/233253092 at 2023-09-02
+  - generic-server # failure in job https://hydra.nixos.org/build/233259385 at 2023-09-02
+  - generics-mrsop # failure in job https://hydra.nixos.org/build/233233310 at 2023-09-02
+  - generic-storable # failure in job https://hydra.nixos.org/build/233213225 at 2023-09-02
+  - generic-tree # failure in job https://hydra.nixos.org/build/233219539 at 2023-09-02
+  - generic-xmlpickler # failure in job https://hydra.nixos.org/build/233246507 at 2023-09-02
+  - genetics # failure in job https://hydra.nixos.org/build/233219599 at 2023-09-02
+  - genifunctors # failure in job https://hydra.nixos.org/build/233255126 at 2023-09-02
+  - gen-imports # failure in job https://hydra.nixos.org/build/233216588 at 2023-09-02
+  - geniplate # failure in job https://hydra.nixos.org/build/233233607 at 2023-09-02
+  - gen-passwd # failure in job https://hydra.nixos.org/build/233224836 at 2023-09-02
+  - genprog # failure in job https://hydra.nixos.org/build/233198970 at 2023-09-02
+  - gentlemark # failure in job https://hydra.nixos.org/build/233202158 at 2023-09-02
+  - geocode-google # failure in job https://hydra.nixos.org/build/233191594 at 2023-09-02
+  - GeocoderOpenCage # failure in job https://hydra.nixos.org/build/233214852 at 2023-09-02
+  - geodetic-types # failure in job https://hydra.nixos.org/build/233209496 at 2023-09-02
+  - GeoIp # failure in job https://hydra.nixos.org/build/233257383 at 2023-09-02
+  - geojson-types # failure in job https://hydra.nixos.org/build/233224929 at 2023-09-02
+  - geom2d # failure in job https://hydra.nixos.org/build/233254609 at 2023-09-02
+  - GeomPredicates-SSE # failure in job https://hydra.nixos.org/build/233249584 at 2023-09-02
+  - geo-resolver # failure in job https://hydra.nixos.org/build/233206563 at 2023-09-02
+  - geos # failure in job https://hydra.nixos.org/build/233203852 at 2023-09-02
+  - geo-uk # failure in job https://hydra.nixos.org/build/233221284 at 2023-09-02
+  - gerrit # failure in job https://hydra.nixos.org/build/233214951 at 2023-09-02
+  - Get # failure in job https://hydra.nixos.org/build/233216093 at 2023-09-02
+  - getflag # failure in job https://hydra.nixos.org/build/233258316 at 2023-09-02
+  - gev-lib # failure in job https://hydra.nixos.org/build/233250284 at 2023-09-02
+  - gf # failure in job https://hydra.nixos.org/build/233237752 at 2023-09-02
+  - GGg # failure in job https://hydra.nixos.org/build/233207289 at 2023-09-02
+  - ggtsTC # failure in job https://hydra.nixos.org/build/233229612 at 2023-09-02
+  - ghc-api-compat # failure in job https://hydra.nixos.org/build/233235008 at 2023-09-02
+  - ghc-clippy-plugin # failure in job https://hydra.nixos.org/build/233227499 at 2023-09-02
+  - ghc-core-smallstep # failure in job https://hydra.nixos.org/build/233209763 at 2023-09-02
+  - ghc-corroborate # failure in job https://hydra.nixos.org/build/233223692 at 2023-09-02
+  - ghc-datasize # failure in job https://hydra.nixos.org/build/233196292 at 2023-09-02
+  - ghc-definitions-th # failure in job https://hydra.nixos.org/build/233254844 at 2023-09-02
+  - ghc-dump-core # failure in job https://hydra.nixos.org/build/233214478 at 2023-09-02
+  - ghc-dump-tree # failure in job https://hydra.nixos.org/build/233237228 at 2023-09-02
+  - ghc-dup # failure in job https://hydra.nixos.org/build/233203978 at 2023-09-02
+  - ghc-events-analyze # failure in job https://hydra.nixos.org/build/233207621 at 2023-09-02
+  - ghc-events-parallel # failure in job https://hydra.nixos.org/build/233218757 at 2023-09-02
+  - ghc-gc-hook # failure in job https://hydra.nixos.org/build/233195053 at 2023-09-02
+  - ghc-generic-instances # failure in job https://hydra.nixos.org/build/233259298 at 2023-09-02
+  - ghc-hotswap # failure in job https://hydra.nixos.org/build/233220146 at 2023-09-02
+  - ghcide-test-utils # failure in job https://hydra.nixos.org/build/233209491 at 2023-09-02
+  - ghci-diagrams # failure in job https://hydra.nixos.org/build/233194407 at 2023-09-02
+  - ghci-haskeline # failure in job https://hydra.nixos.org/build/233216940 at 2023-09-02
+  - ghci-history-parser # failure in job https://hydra.nixos.org/build/233204448 at 2023-09-02
+  - ghci-lib # failure in job https://hydra.nixos.org/build/233216644 at 2023-09-02
+  - ghci-ng # failure in job https://hydra.nixos.org/build/233229533 at 2023-09-02
+  - ghcjs-dom-jsffi # failure in job https://hydra.nixos.org/build/233215225 at 2023-09-02
+  - ghcjs-promise # failure in job https://hydra.nixos.org/build/233243985 at 2023-09-02
+  - ghcjs-xhr # failure in job https://hydra.nixos.org/build/233235693 at 2023-09-02
+  - ghc-justdoit # failure in job https://hydra.nixos.org/build/233221884 at 2023-09-02
+  - ghclive # failure in job https://hydra.nixos.org/build/233231592 at 2023-09-02
+  - ghc-man-completion # failure in job https://hydra.nixos.org/build/233245740 at 2023-09-02
+  - ghc-mtl # failure in job https://hydra.nixos.org/build/233227810 at 2023-09-02
+  - ghc-parmake # failure in job https://hydra.nixos.org/build/233191327 at 2023-09-02
+  - ghc-pkg-autofix # failure in job https://hydra.nixos.org/build/233229332 at 2023-09-02
+  - ghc-pkg-lib # failure in job https://hydra.nixos.org/build/233250745 at 2023-09-02
+  - ghc-plugin-non-empty # failure in job https://hydra.nixos.org/build/233229023 at 2023-09-02
+  - ghc-proofs # failure in job https://hydra.nixos.org/build/233230633 at 2023-09-02
+  - ghc-simple # failure in job https://hydra.nixos.org/build/233201423 at 2023-09-02
+  - ghc-source-gen # failure in job https://hydra.nixos.org/build/233223566 at 2023-09-02
+  - ghc-srcspan-plugin # failure in job https://hydra.nixos.org/build/233231564 at 2023-09-02
+  - ghc-syb # failure in job https://hydra.nixos.org/build/233236783 at 2023-09-02
+  - ghc-syb-utils # failure in job https://hydra.nixos.org/build/233229196 at 2023-09-02
+  - ghc-tags-plugin # failure in job https://hydra.nixos.org/build/233229916 at 2023-09-02
+  - ghc-time-alloc-prof # failure in job https://hydra.nixos.org/build/233242289 at 2023-09-02
+  - ghc-usage # failure in job https://hydra.nixos.org/build/233199565 at 2023-09-02
+  - gh-labeler # failure in job https://hydra.nixos.org/build/233233139 at 2023-09-02
+  - giak # failure in job https://hydra.nixos.org/build/233242229 at 2023-09-02
+  - gi-clutter # failure in job https://hydra.nixos.org/build/233252753 at 2023-09-02
+  - gi-coglpango # failure in job https://hydra.nixos.org/build/233194401 at 2023-09-02
+  - Gifcurry # failure in job https://hydra.nixos.org/build/233200204 at 2023-09-02
+  - gi-gio-hs-list-model # failure in job https://hydra.nixos.org/build/233241640 at 2023-09-02
+  - gi-graphene # failure in job https://hydra.nixos.org/build/233205231 at 2023-09-02
+  - gi-gsttag # failure in job https://hydra.nixos.org/build/233197576 at 2023-09-02
+  - gi-gtk-declarative # failure in job https://hydra.nixos.org/build/233217494 at 2023-09-02
+  - gi-gtksheet # failure in job https://hydra.nixos.org/build/233211386 at 2023-09-02
+  - gi-gtksource # failure in job https://hydra.nixos.org/build/233215342 at 2023-09-02
+  - gi-ibus # failure in job https://hydra.nixos.org/build/233220272 at 2023-09-02
+  - gingersnap # failure in job https://hydra.nixos.org/build/233227186 at 2023-09-02
+  - ginsu # failure in job https://hydra.nixos.org/build/233223259 at 2023-09-02
+  - gipeda # failure in job https://hydra.nixos.org/build/233228149 at 2023-09-02
+  - giphy-api # failure in job https://hydra.nixos.org/build/233203687 at 2023-09-02
+  - GiST # failure in job https://hydra.nixos.org/build/233199759 at 2023-09-02
+  - gist # failure in job https://hydra.nixos.org/build/233221381 at 2023-09-02
+  - git-all # failure in job https://hydra.nixos.org/build/233252935 at 2023-09-02
+  - git-brunch # failure in job https://hydra.nixos.org/build/233250960 at 2023-09-02
+  - git-checklist # failure in job https://hydra.nixos.org/build/233203228 at 2023-09-02
+  - git-cuk # failure in job https://hydra.nixos.org/build/233211733 at 2023-09-02
+  - git-date # failure in job https://hydra.nixos.org/build/233259193 at 2023-09-02
+  - git # failure in job https://hydra.nixos.org/build/233225634 at 2023-09-02
+  - github-backup # failure in job https://hydra.nixos.org/build/233208904 at 2023-09-02
+  - github-post-receive # failure in job https://hydra.nixos.org/build/233204914 at 2023-09-02
+  - github-tools # failure in job https://hydra.nixos.org/build/233247519 at 2023-09-02
+  - github-utils # failure in job https://hydra.nixos.org/build/233211299 at 2023-09-02
+  - github-webhook-handler # failure in job https://hydra.nixos.org/build/233246904 at 2023-09-02
+  - githud # failure in job https://hydra.nixos.org/build/233195046 at 2023-09-02
+  - gitHUD # failure in job https://hydra.nixos.org/build/233221244 at 2023-09-02
+  - gitignore # failure in job https://hydra.nixos.org/build/233207356 at 2023-09-02
+  - git-jump # failure in job https://hydra.nixos.org/build/233206544 at 2023-09-02
+  - gitlab-api # failure in job https://hydra.nixos.org/build/233256639 at 2023-09-02
+  - gitlab-haskell # failure in job https://hydra.nixos.org/build/233190692 at 2023-09-02
+  - gitlib-cmdline # failure in job https://hydra.nixos.org/build/233230857 at 2023-09-02
+  - gitlib-utils # failure in job https://hydra.nixos.org/build/233190826 at 2023-09-02
+  - git-repair # failure in job https://hydra.nixos.org/build/233222686 at 2023-09-02
+  - gitter # failure in job https://hydra.nixos.org/build/233210040 at 2023-09-02
+  - git-vogue # failure in job https://hydra.nixos.org/build/233249420 at 2023-09-02
+  - gi-webkitwebprocessextension # failure in job https://hydra.nixos.org/build/233227647 at 2023-09-02
+  - glade # failure in job https://hydra.nixos.org/build/233229566 at 2023-09-02
+  - glapp # failure in job https://hydra.nixos.org/build/233213499 at 2023-09-02
+  - glaze # failure in job https://hydra.nixos.org/build/233210047 at 2023-09-02
+  - Gleam # failure in job https://hydra.nixos.org/build/233228018 at 2023-09-02
+  - GLFW-b-demo # failure in job https://hydra.nixos.org/build/233230505 at 2023-09-02
+  - GLFW # failure in job https://hydra.nixos.org/build/233234389 at 2023-09-02
+  - glicko # failure in job https://hydra.nixos.org/build/233200868 at 2023-09-02
+  - glider-nlp # failure in job https://hydra.nixos.org/build/233229600 at 2023-09-02
+  - gli # failure in job https://hydra.nixos.org/build/233210279 at 2023-09-02
+  - GLMatrix # failure in job https://hydra.nixos.org/build/233202880 at 2023-09-02
+  - global-variables # failure in job https://hydra.nixos.org/build/233204607 at 2023-09-02
+  - glob-posix # failure in job https://hydra.nixos.org/build/233253059 at 2023-09-02
+  - GlomeTrace # failure in job https://hydra.nixos.org/build/233211872 at 2023-09-02
+  - gloss-banana # failure in job https://hydra.nixos.org/build/234464253 at 2023-09-13
+  - gloss-export # failure in job https://hydra.nixos.org/build/234444988 at 2023-09-13
+  - gloss-game # failure in job https://hydra.nixos.org/build/234460935 at 2023-09-13
+  - glsl # failure in job https://hydra.nixos.org/build/233224139 at 2023-09-02
+  - gltf-codec # failure in job https://hydra.nixos.org/build/233205342 at 2023-09-02
+  - glue # failure in job https://hydra.nixos.org/build/233233587 at 2023-09-02
+  - g-npm # failure in job https://hydra.nixos.org/build/233215965 at 2023-09-02
+  - goa # failure in job https://hydra.nixos.org/build/233193916 at 2023-09-02
+  - goal-core # failure in job https://hydra.nixos.org/build/233242261 at 2023-09-02
+  - goatee # failure in job https://hydra.nixos.org/build/233220875 at 2023-09-02
+  - gochan # failure in job https://hydra.nixos.org/build/233223866 at 2023-09-02
+  - godot-haskell # failure in job https://hydra.nixos.org/build/233213405 at 2023-09-02
+  - godot-megaparsec # failure in job https://hydra.nixos.org/build/233252882 at 2023-09-02
+  - gofer-prelude # failure in job https://hydra.nixos.org/build/233237015 at 2023-09-02
+  - gogol-core # failure in job https://hydra.nixos.org/build/233245807 at 2023-09-02
+  - gooey # failure in job https://hydra.nixos.org/build/233192207 at 2023-09-02
+  - google-cloud # failure in job https://hydra.nixos.org/build/233218503 at 2023-09-02
+  - GoogleCodeJam # failure in job https://hydra.nixos.org/build/233234738 at 2023-09-02
+  - google-html5-slide # failure in job https://hydra.nixos.org/build/233233311 at 2023-09-02
+  - google-oauth2-easy # failure in job https://hydra.nixos.org/build/233251694 at 2023-09-02
+  - google-oauth2 # failure in job https://hydra.nixos.org/build/233223208 at 2023-09-02
+  - google-oauth2-jwt # failure in job https://hydra.nixos.org/build/233234162 at 2023-09-02
+  - googlepolyline # failure in job https://hydra.nixos.org/build/233209674 at 2023-09-02
+  - google-search # failure in job https://hydra.nixos.org/build/233214524 at 2023-09-02
+  - google-server-api # failure in job https://hydra.nixos.org/build/233218521 at 2023-09-02
+  - google-translate # failure in job https://hydra.nixos.org/build/233234076 at 2023-09-02
+  - gopherbot # failure in job https://hydra.nixos.org/build/233207680 at 2023-09-02
+  - gopro-plus # failure in job https://hydra.nixos.org/build/233225073 at 2023-09-02
+  - gore-and-ash # failure in job https://hydra.nixos.org/build/233237810 at 2023-09-02
+  - gothic # failure in job https://hydra.nixos.org/build/233218967 at 2023-09-02
+  - GotoT-transformers # failure in job https://hydra.nixos.org/build/233229336 at 2023-09-02
+  - gotta-go-fast # failure in job https://hydra.nixos.org/build/233213439 at 2023-09-02
+  - gotyno-hs # failure in job https://hydra.nixos.org/build/233205043 at 2023-09-02
+  - gpah # failure in job https://hydra.nixos.org/build/233236000 at 2023-09-02
+  - GPipe-Core # failure in job https://hydra.nixos.org/build/233194426 at 2023-09-02
+  - GPipe # failure in job https://hydra.nixos.org/build/233202480 at 2023-09-02
+  - gpmf # failure in job https://hydra.nixos.org/build/233245964 at 2023-09-02
+  - gpx-conduit # failure in job https://hydra.nixos.org/build/233245487 at 2023-09-02
+  - graceful # failure in job https://hydra.nixos.org/build/233199650 at 2023-09-02
+  - grafana # failure in job https://hydra.nixos.org/build/233206262 at 2023-09-02
+  - Grafos # failure in job https://hydra.nixos.org/build/233201494 at 2023-09-02
+  - grakn # failure in job https://hydra.nixos.org/build/233218052 at 2023-09-02
+  - grammatical-parsers # failure in job https://hydra.nixos.org/build/233252219 at 2023-09-02
+  - Graph500 # failure in job https://hydra.nixos.org/build/233257715 at 2023-09-02
+  - Graphalyze # failure in job https://hydra.nixos.org/build/233194082 at 2023-09-02
+  - graphbuilder # failure in job https://hydra.nixos.org/build/233190797 at 2023-09-02
+  - graphene # failure in job https://hydra.nixos.org/build/233250729 at 2023-09-02
+  - graphics-drawingcombinators # failure in job https://hydra.nixos.org/build/233242920 at 2023-09-02
+  - graphics-formats-collada # failure in job https://hydra.nixos.org/build/233199422 at 2023-09-02
+  - graph-matchings # failure in job https://hydra.nixos.org/build/233245821 at 2023-09-02
+  - graphmod-plugin # failure in job https://hydra.nixos.org/build/233192543 at 2023-09-02
+  - graphql-api # failure in job https://hydra.nixos.org/build/233254333 at 2023-09-02
+  - graphql-utils # failure in job https://hydra.nixos.org/build/233221340 at 2023-09-02
+  - graphql-w-persistent # failure in job https://hydra.nixos.org/build/233228956 at 2023-09-02
+  - graph-rewriting # failure in job https://hydra.nixos.org/build/233191278 at 2023-09-02
+  - graph-serialize # failure in job https://hydra.nixos.org/build/233192162 at 2023-09-02
+  - graphted # failure in job https://hydra.nixos.org/build/233227052 at 2023-09-02
+  - graphula-core # failure in job https://hydra.nixos.org/build/233259608 at 2023-09-02
+  - graph-utils # failure in job https://hydra.nixos.org/build/233224932 at 2023-09-02
+  - graql # failure in job https://hydra.nixos.org/build/233219809 at 2023-09-02
+  - grasp # failure in job https://hydra.nixos.org/build/233213280 at 2023-09-02
+  - gray-code # failure in job https://hydra.nixos.org/build/233234283 at 2023-09-02
+  - graylog # failure in job https://hydra.nixos.org/build/233197050 at 2023-09-02
+  - greencard # failure in job https://hydra.nixos.org/build/233252292 at 2023-09-02
+  - greg-client # failure in job https://hydra.nixos.org/build/233207343 at 2023-09-02
+  - gremlin-haskell # failure in job https://hydra.nixos.org/build/233243223 at 2023-09-02
+  - Grempa # failure in job https://hydra.nixos.org/build/233256440 at 2023-09-02
+  - greplicate # failure in job https://hydra.nixos.org/build/233215148 at 2023-09-02
+  - greskell-core # failure in job https://hydra.nixos.org/build/233241303 at 2023-09-02
+  - gridfs # failure in job https://hydra.nixos.org/build/233213958 at 2023-09-02
+  - grids # failure in job https://hydra.nixos.org/build/233218294 at 2023-09-02
+  - grm # failure in job https://hydra.nixos.org/build/233259788 at 2023-09-02
+  - GroteTrap # failure in job https://hydra.nixos.org/build/233203176 at 2023-09-02
+  - groundhog # failure in job https://hydra.nixos.org/build/233199269 at 2023-09-02
+  - grouped-list # failure in job https://hydra.nixos.org/build/233240891 at 2023-09-02
+  - group-theory # failure in job https://hydra.nixos.org/build/233235833 at 2023-09-02
+  - group-with # failure in job https://hydra.nixos.org/build/233196589 at 2023-09-02
+  - growable-vector # failure in job https://hydra.nixos.org/build/233253891 at 2023-09-02
+  - growler # failure in job https://hydra.nixos.org/build/233207497 at 2023-09-02
+  - grow-vector # failure in job https://hydra.nixos.org/build/233196279 at 2023-09-02
+  - grpc-api-etcd # failure in job https://hydra.nixos.org/build/233239600 at 2023-09-02
+  - gsl-random # failure in job https://hydra.nixos.org/build/233191503 at 2023-09-02
+  - gstreamer # failure in job https://hydra.nixos.org/build/233239224 at 2023-09-02
+  - GTALib # failure in job https://hydra.nixos.org/build/233250568 at 2023-09-02
+  - gtk2hs-cast-th # failure in job https://hydra.nixos.org/build/233244841 at 2023-09-02
+  - gtk2hs-hello # failure in job https://hydra.nixos.org/build/233232522 at 2023-09-02
+  - gtk2hs-rpn # failure in job https://hydra.nixos.org/build/233208312 at 2023-09-02
+  - gtk3-helpers # failure in job https://hydra.nixos.org/build/233221005 at 2023-09-02
+  - gtkglext # failure in job https://hydra.nixos.org/build/233230364 at 2023-09-02
+  - gtk-helpers # failure in job https://hydra.nixos.org/build/233244213 at 2023-09-02
+  - gtksourceview2 # failure in job https://hydra.nixos.org/build/233195456 at 2023-09-02
+  - gtksourceview3 # failure in job https://hydra.nixos.org/build/233209745 at 2023-09-02
+  - gtk-toy # failure in job https://hydra.nixos.org/build/233208132 at 2023-09-02
+  - guardian # failure in job https://hydra.nixos.org/build/233662964 at 2023-09-02
+  - gulcii # failure in job https://hydra.nixos.org/build/233253472 at 2023-09-02
+  - gw # failure in job https://hydra.nixos.org/build/233252652 at 2023-09-02
+  - gyah-bin # failure in job https://hydra.nixos.org/build/233206981 at 2023-09-02
+  - gym-http-api # failure in job https://hydra.nixos.org/build/233219968 at 2023-09-02
+  - h2048 # failure in job https://hydra.nixos.org/build/233231384 at 2023-09-02
+  - h2c # failure in job https://hydra.nixos.org/build/233196032 at 2023-09-02
+  - haar # failure in job https://hydra.nixos.org/build/233217259 at 2023-09-02
+  - HABQT # failure in job https://hydra.nixos.org/build/233256547 at 2023-09-02
+  - hack2-contrib # failure in job https://hydra.nixos.org/build/233251090 at 2023-09-02
+  - hack2-handler-warp # failure in job https://hydra.nixos.org/build/233226457 at 2023-09-02
+  - hackage2hwn # failure in job https://hydra.nixos.org/build/233246308 at 2023-09-02
+  - hackage-api # failure in job https://hydra.nixos.org/build/233246132 at 2023-09-02
+  - hackage-diff # failure in job https://hydra.nixos.org/build/233243364 at 2023-09-02
+  - hackage-mirror # failure in job https://hydra.nixos.org/build/233240852 at 2023-09-02
+  - hackage-processing # failure in job https://hydra.nixos.org/build/233243914 at 2023-09-02
+  - hackage-proxy # failure in job https://hydra.nixos.org/build/233221269 at 2023-09-02
+  - hackager # failure in job https://hydra.nixos.org/build/233247230 at 2023-09-02
+  - hackage-server # failure in job https://hydra.nixos.org/build/233254343 at 2023-09-02
+  - hackage-whatsnew # failure in job https://hydra.nixos.org/build/233194915 at 2023-09-02
+  - hackernews # failure in job https://hydra.nixos.org/build/233215522 at 2023-09-02
+  - hack-frontend-happstack # failure in job https://hydra.nixos.org/build/233251834 at 2023-09-02
+  - hack-handler-cgi # failure in job https://hydra.nixos.org/build/233200753 at 2023-09-02
+  - hack-handler-happstack # failure in job https://hydra.nixos.org/build/233225525 at 2023-09-02
+  - hack-handler-kibro # failure in job https://hydra.nixos.org/build/233219102 at 2023-09-02
+  - HackMail # failure in job https://hydra.nixos.org/build/233215224 at 2023-09-02
+  - hactor # failure in job https://hydra.nixos.org/build/233254977 at 2023-09-02
+  - hactors # failure in job https://hydra.nixos.org/build/233218599 at 2023-09-02
+  - haddock-api # failure in job https://hydra.nixos.org/build/233216515 at 2023-09-02
+  - haddock-leksah # failure in job https://hydra.nixos.org/build/233206878 at 2023-09-02
+  - haddock-test # failure in job https://hydra.nixos.org/build/233246641 at 2023-09-02
+  - hadoop-formats # failure in job https://hydra.nixos.org/build/233224647 at 2023-09-02
+  - hadoop-rpc # failure in job https://hydra.nixos.org/build/233247222 at 2023-09-02
+  - hadoop-streaming # failure in job https://hydra.nixos.org/build/233229895 at 2023-09-02
+  - hafar # failure in job https://hydra.nixos.org/build/233231237 at 2023-09-02
+  - haggle # failure in job https://hydra.nixos.org/build/233198660 at 2023-09-02
+  - Haggressive # failure in job https://hydra.nixos.org/build/233235332 at 2023-09-02
+  - HaGL # failure in job https://hydra.nixos.org/build/234457220 at 2023-09-13
+  - hahp # failure in job https://hydra.nixos.org/build/233250101 at 2023-09-02
+  - haiji # failure in job https://hydra.nixos.org/build/233232272 at 2023-09-02
+  - hail # failure in job https://hydra.nixos.org/build/233219127 at 2023-09-02
+  - hailgun # failure in job https://hydra.nixos.org/build/233242996 at 2023-09-02
+  - hairy # failure in job https://hydra.nixos.org/build/233226903 at 2023-09-02
+  - hakaru # failure in job https://hydra.nixos.org/build/233231467 at 2023-09-02
+  - hakismet # failure in job https://hydra.nixos.org/build/233212497 at 2023-09-02
+  - hakka # failure in job https://hydra.nixos.org/build/233196395 at 2023-09-02
+  - hako # failure in job https://hydra.nixos.org/build/233257679 at 2023-09-02
+  - hakyll-agda # failure in job https://hydra.nixos.org/build/233332603 at 2023-09-02
+  - hakyll-blaze-templates # failure in job https://hydra.nixos.org/build/233207117 at 2023-09-02
+  - hakyll-contrib-csv # failure in job https://hydra.nixos.org/build/233229781 at 2023-09-02
+  - hakyll-contrib-elm # failure in job https://hydra.nixos.org/build/233234686 at 2023-09-02
+  - hakyll-contrib # failure in job https://hydra.nixos.org/build/233195056 at 2023-09-02
+  - hakyll-contrib-i18n # failure in job https://hydra.nixos.org/build/233218608 at 2023-09-02
+  - hakyll-contrib-links # failure in job https://hydra.nixos.org/build/233218456 at 2023-09-02
+  - hakyll-dhall # failure in job https://hydra.nixos.org/build/233226092 at 2023-09-02
+  - hakyll-dir-list # failure in job https://hydra.nixos.org/build/233221518 at 2023-09-02
+  - hakyll-R # failure in job https://hydra.nixos.org/build/233230132 at 2023-09-02
+  - hakyll-series # failure in job https://hydra.nixos.org/build/233257506 at 2023-09-02
+  - hakyll-shortcode # failure in job https://hydra.nixos.org/build/233240216 at 2023-09-02
+  - hakyll-typescript # failure in job https://hydra.nixos.org/build/233218630 at 2023-09-02
+  - HaLeX # failure in job https://hydra.nixos.org/build/233233225 at 2023-09-02
+  - hal # failure in job https://hydra.nixos.org/build/233243847 at 2023-09-02
+  - halfs # failure in job https://hydra.nixos.org/build/233235337 at 2023-09-02
+  - halide-haskell # failure in job https://hydra.nixos.org/build/233244282 at 2023-09-02
+  - halipeto # failure in job https://hydra.nixos.org/build/233223245 at 2023-09-02
+  - halive # failure in job https://hydra.nixos.org/build/233215317 at 2023-09-02
+  - halma # failure in job https://hydra.nixos.org/build/233245758 at 2023-09-02
+  - halves # failure in job https://hydra.nixos.org/build/233214240 at 2023-09-02
+  - hampp # failure in job https://hydra.nixos.org/build/233239269 at 2023-09-02
+  - hamsql # failure in job https://hydra.nixos.org/build/233241294 at 2023-09-02
+  - hamtmap # failure in job https://hydra.nixos.org/build/233225685 at 2023-09-02
+  - hanabi-dealer # failure in job https://hydra.nixos.org/build/233231209 at 2023-09-02
+  - handa-gdata # failure in job https://hydra.nixos.org/build/233257022 at 2023-09-02
+  - handle-like # failure in job https://hydra.nixos.org/build/233245789 at 2023-09-02
+  - HandlerSocketClient # failure in job https://hydra.nixos.org/build/233239906 at 2023-09-02
+  - handsy # failure in job https://hydra.nixos.org/build/233192732 at 2023-09-02
+  - HangmanAscii # failure in job https://hydra.nixos.org/build/233192660 at 2023-09-02
+  - Hangman # failure in job https://hydra.nixos.org/build/233257262 at 2023-09-02
+  - hannahci # failure in job https://hydra.nixos.org/build/233201493 at 2023-09-02
+  - hans # failure in job https://hydra.nixos.org/build/233214027 at 2023-09-02
+  - hanspell # failure in job https://hydra.nixos.org/build/233238153 at 2023-09-02
+  - haphviz # failure in job https://hydra.nixos.org/build/233206220 at 2023-09-02
+  - hapistrano # failure in job https://hydra.nixos.org/build/233209900 at 2023-09-02
+  - happindicator3 # failure in job https://hydra.nixos.org/build/233191315 at 2023-09-02
+  - happindicator # failure in job https://hydra.nixos.org/build/233212275 at 2023-09-02
+  - happlets # failure in job https://hydra.nixos.org/build/233208337 at 2023-09-02
+  - happraise # failure in job https://hydra.nixos.org/build/233251808 at 2023-09-02
+  - happstack-clientsession # failure in job https://hydra.nixos.org/build/233224969 at 2023-09-02
+  - happstack # failure in job https://hydra.nixos.org/build/233196813 at 2023-09-02
+  - happstack-hamlet # failure in job https://hydra.nixos.org/build/233227835 at 2023-09-02
+  - happstack-hstringtemplate # failure in job https://hydra.nixos.org/build/233201171 at 2023-09-02
+  - happstack-lite # failure in job https://hydra.nixos.org/build/233196392 at 2023-09-02
+  - happstack-monad-peel # failure in job https://hydra.nixos.org/build/233247282 at 2023-09-02
+  - happstack-server-tls-cryptonite # failure in job https://hydra.nixos.org/build/233236252 at 2023-09-02
+  - happstack-util # failure in job https://hydra.nixos.org/build/233202063 at 2023-09-02
+  - happstack-yui # failure in job https://hydra.nixos.org/build/233221482 at 2023-09-02
+  - HAppS-Util # failure in job https://hydra.nixos.org/build/233237912 at 2023-09-02
+  - happybara # failure in job https://hydra.nixos.org/build/233236198 at 2023-09-02
+  - happybara-webkit-server # failure in job https://hydra.nixos.org/build/233247667 at 2023-09-02
+  - HappyTree # failure in job https://hydra.nixos.org/build/233249720 at 2023-09-02
+  - hapstone # failure in job https://hydra.nixos.org/build/233190701 at 2023-09-02
+  - HaPy # failure in job https://hydra.nixos.org/build/233256693 at 2023-09-02
+  - haquery # failure in job https://hydra.nixos.org/build/233216714 at 2023-09-02
+  - harchive # failure in job https://hydra.nixos.org/build/233259819 at 2023-09-02
+  - harg # failure in job https://hydra.nixos.org/build/233232453 at 2023-09-02
+  - HARM # failure in job https://hydra.nixos.org/build/233232650 at 2023-09-02
+  - HarmTrace-Base # failure in job https://hydra.nixos.org/build/233213843 at 2023-09-02
+  - haroonga # failure in job https://hydra.nixos.org/build/233226376 at 2023-09-02
+  - harpy # failure in job https://hydra.nixos.org/build/233225779 at 2023-09-02
+  - harvest-api # failure in job https://hydra.nixos.org/build/233213054 at 2023-09-02
+  - hasbolt-extras # failure in job https://hydra.nixos.org/build/233211734 at 2023-09-02
+  - HasCacBDD # failure in job https://hydra.nixos.org/build/233238688 at 2023-09-02
+  - hascard # failure in job https://hydra.nixos.org/build/233238626 at 2023-09-02
+  - hascar # failure in job https://hydra.nixos.org/build/233197274 at 2023-09-02
+  - hascas # failure in job https://hydra.nixos.org/build/233250350 at 2023-09-02
+  - has # failure in job https://hydra.nixos.org/build/233193689 at 2023-09-02
+  - hashable-extras # failure in job https://hydra.nixos.org/build/233191748 at 2023-09-02
+  - hashable-generics # failure in job https://hydra.nixos.org/build/233209175 at 2023-09-02
+  - hashabler # failure in job https://hydra.nixos.org/build/233236154 at 2023-09-02
+  - hashed-storage # failure in job https://hydra.nixos.org/build/233193382 at 2023-09-02
+  - hash # failure in job https://hydra.nixos.org/build/233219137 at 2023-09-02
+  - hashring # failure in job https://hydra.nixos.org/build/233231092 at 2023-09-02
+  - hashtables-plus # failure in job https://hydra.nixos.org/build/233234463 at 2023-09-02
+  - hasim # failure in job https://hydra.nixos.org/build/233248675 at 2023-09-02
+  - haskades # failure in job https://hydra.nixos.org/build/233191525 at 2023-09-02
+  - haskarrow # failure in job https://hydra.nixos.org/build/233223366 at 2023-09-02
+  - haskbot-core # failure in job https://hydra.nixos.org/build/233194787 at 2023-09-02
+  - haskeline-class # failure in job https://hydra.nixos.org/build/233214356 at 2023-09-02
+  - haskelisp # failure in job https://hydra.nixos.org/build/233234452 at 2023-09-02
+  - haskell2010 # failure in job https://hydra.nixos.org/build/233255384 at 2023-09-02
+  - haskell2020 # failure in job https://hydra.nixos.org/build/233251111 at 2023-09-02
+  - haskell98 # failure in job https://hydra.nixos.org/build/233231799 at 2023-09-02
+  - haskell98libraries # failure in job https://hydra.nixos.org/build/233255099 at 2023-09-02
+  - haskell-admin-core # failure in job https://hydra.nixos.org/build/233242655 at 2023-09-02
+  - HaskellAnalysisProgram # failure in job https://hydra.nixos.org/build/233235074 at 2023-09-02
+  - haskell-awk # failure in job https://hydra.nixos.org/build/233235921 at 2023-09-02
+  - haskell-bcrypt # failure in job https://hydra.nixos.org/build/233258991 at 2023-09-02
+  - haskell-bitmex-rest # failure in job https://hydra.nixos.org/build/233244003 at 2023-09-02
+  - haskell-brainfuck # failure in job https://hydra.nixos.org/build/233233282 at 2023-09-02
+  - haskell-cnc # failure in job https://hydra.nixos.org/build/233229233 at 2023-09-02
+  - haskell-compression # failure in job https://hydra.nixos.org/build/233212749 at 2023-09-02
+  - haskell-conll # failure in job https://hydra.nixos.org/build/233203484 at 2023-09-02
+  - haskell-course-preludes # failure in job https://hydra.nixos.org/build/233196306 at 2023-09-02
+  - haskelldb # failure in job https://hydra.nixos.org/build/233248300 at 2023-09-02
+  - haskelldb-wx # failure in job https://hydra.nixos.org/build/233197525 at 2023-09-02
+  - haskell-disque # failure in job https://hydra.nixos.org/build/233226200 at 2023-09-02
+  - HaskellForMaths # failure in job https://hydra.nixos.org/build/233237608 at 2023-09-02
+  - haskell-formatter # failure in job https://hydra.nixos.org/build/233237167 at 2023-09-02
+  - haskell-generate # failure in job https://hydra.nixos.org/build/233197927 at 2023-09-02
+  - haskell-go-checkers # failure in job https://hydra.nixos.org/build/234459896 at 2023-09-13
+  - haskell-holes-th # failure in job https://hydra.nixos.org/build/233238457 at 2023-09-02
+  - haskell-igraph # failure in job https://hydra.nixos.org/build/233201209 at 2023-09-02
+  - haskell-import-graph # failure in job https://hydra.nixos.org/build/233225328 at 2023-09-02
+  - haskell-in-space # failure in job https://hydra.nixos.org/build/233207121 at 2023-09-02
+  - haskell-kubernetes # failure in job https://hydra.nixos.org/build/233214499 at 2023-09-02
+  - HaskellLM # failure in job https://hydra.nixos.org/build/233237641 at 2023-09-02
+  - haskell-lsp-types # failure in job https://hydra.nixos.org/build/233226386 at 2023-09-02
+  - haskell-ml # failure in job https://hydra.nixos.org/build/233199372 at 2023-09-02
+  - haskell-mpfr # failure in job https://hydra.nixos.org/build/233211691 at 2023-09-02
+  - haskell-names # failure in job https://hydra.nixos.org/build/233191174 at 2023-09-02
+  - haskell-neo4j-client # failure in job https://hydra.nixos.org/build/233202206 at 2023-09-02
+  - HaskellNN # failure in job https://hydra.nixos.org/build/233209323 at 2023-09-02
+  - Haskelloids # failure in job https://hydra.nixos.org/build/233204861 at 2023-09-02
+  - haskell-openflow # failure in job https://hydra.nixos.org/build/233235229 at 2023-09-02
+  - haskell-overridez # failure in job https://hydra.nixos.org/build/233215398 at 2023-09-02
+  - haskell-packages # failure in job https://hydra.nixos.org/build/233192989 at 2023-09-02
+  - haskell-player # failure in job https://hydra.nixos.org/build/233206419 at 2023-09-02
+  - haskell-plot # failure in job https://hydra.nixos.org/build/233256531 at 2023-09-02
+  - haskell-postal # failure in job https://hydra.nixos.org/build/233241454 at 2023-09-02
+  - haskell-postgis # failure in job https://hydra.nixos.org/build/233258634 at 2023-09-02
+  - haskell-read-editor # failure in job https://hydra.nixos.org/build/233225002 at 2023-09-02
+  - haskell-rules # failure in job https://hydra.nixos.org/build/233225854 at 2023-09-02
+  - haskellscrabble # failure in job https://hydra.nixos.org/build/233251248 at 2023-09-02
+  - haskellscript # failure in job https://hydra.nixos.org/build/233193435 at 2023-09-02
+  - haskell-spacegoo # failure in job https://hydra.nixos.org/build/233206108 at 2023-09-02
+  - haskell-src-exts-prisms # failure in job https://hydra.nixos.org/build/233197742 at 2023-09-02
+  - haskell-src-exts-qq # failure in job https://hydra.nixos.org/build/233234764 at 2023-09-02
+  - haskell-src-exts-sc # failure in job https://hydra.nixos.org/build/233257890 at 2023-09-02
+  - haskell-src-match # failure in job https://hydra.nixos.org/build/233233529 at 2023-09-02
+  - haskell-src-meta-mwotton # failure in job https://hydra.nixos.org/build/233251914 at 2023-09-02
+  - haskell-stack-trace-plugin # failure in job https://hydra.nixos.org/build/233231305 at 2023-09-02
+  - haskell-to-elm # failure in job https://hydra.nixos.org/build/233210318 at 2023-09-02
+  - HaskellTorrent # failure in job https://hydra.nixos.org/build/233231874 at 2023-09-02
+  - HaskellTutorials # failure in job https://hydra.nixos.org/build/233209605 at 2023-09-02
+  - haskell-type-exts # failure in job https://hydra.nixos.org/build/233209731 at 2023-09-02
+  - haskell-typescript # failure in job https://hydra.nixos.org/build/233239625 at 2023-09-02
+  - haskell-tyrant # failure in job https://hydra.nixos.org/build/233230507 at 2023-09-02
+  - haskelzinc # failure in job https://hydra.nixos.org/build/233207478 at 2023-09-02
+  - haskeme # failure in job https://hydra.nixos.org/build/233232706 at 2023-09-02
+  - haskey-btree # failure in job https://hydra.nixos.org/build/233213529 at 2023-09-02
+  - hask # failure in job https://hydra.nixos.org/build/233215974 at 2023-09-02
+  - haskheap # failure in job https://hydra.nixos.org/build/233231657 at 2023-09-02
+  - haskhol-core # failure in job https://hydra.nixos.org/build/233232550 at 2023-09-02
+  - haskintex # failure in job https://hydra.nixos.org/build/233238166 at 2023-09-02
+  - haskmon # failure in job https://hydra.nixos.org/build/233228390 at 2023-09-02
+  - haskoin # failure in job https://hydra.nixos.org/build/233201668 at 2023-09-02
+  - haskoin-util # failure in job https://hydra.nixos.org/build/233222171 at 2023-09-02
+  - haskoin-wallet # failure in job https://hydra.nixos.org/build/233206922 at 2023-09-02
+  - haskore # failure in job https://hydra.nixos.org/build/233238668 at 2023-09-02
+  - haskore-vintage # failure in job https://hydra.nixos.org/build/233230742 at 2023-09-02
+  - hasktorch-codegen # failure in job https://hydra.nixos.org/build/233232876 at 2023-09-02
+  - hasktorch-ffi-th # failure in job https://hydra.nixos.org/build/233252974 at 2023-09-02
+  - hasktorch-signatures-partial # failure in job https://hydra.nixos.org/build/233197869 at 2023-09-02
+  - hasktorch-signatures-support # failure in job https://hydra.nixos.org/build/233212137 at 2023-09-02
+  - haskus-utils-variant # failure in job https://hydra.nixos.org/build/233218226 at 2023-09-02
+  - haskyapi # failure in job https://hydra.nixos.org/build/233247040 at 2023-09-02
+  - hasmin # failure in job https://hydra.nixos.org/build/233256557 at 2023-09-02
+  - haspara # failure in job https://hydra.nixos.org/build/233208502 at 2023-09-02
+  - hasparql-client # failure in job https://hydra.nixos.org/build/233191734 at 2023-09-02
+  - hasql-backend # failure in job https://hydra.nixos.org/build/233255310 at 2023-09-02
+  - hasql-class # failure in job https://hydra.nixos.org/build/233191053 at 2023-09-02
+  - hasql-cursor-transaction # failure in job https://hydra.nixos.org/build/233240886 at 2023-09-02
+  - hasql-explain-tests # failure in job https://hydra.nixos.org/build/233247034 at 2023-09-02
+  - hasql-generic # failure in job https://hydra.nixos.org/build/233204654 at 2023-09-02
+  - hasql-resource-pool # failure in job https://hydra.nixos.org/build/233217667 at 2023-09-02
+  - hasql-simple # failure in job https://hydra.nixos.org/build/233249588 at 2023-09-02
+  - hasql-transaction-io # failure in job https://hydra.nixos.org/build/233211964 at 2023-09-02
+  - hasql-url # failure in job https://hydra.nixos.org/build/233201809 at 2023-09-02
+  - hastache # failure in job https://hydra.nixos.org/build/233224317 at 2023-09-02
+  - haste # failure in job https://hydra.nixos.org/build/233238510 at 2023-09-02
+  - haste-prim # failure in job https://hydra.nixos.org/build/233203281 at 2023-09-02
+  - hasura-ekg-core # failure in job https://hydra.nixos.org/build/233211397 at 2023-09-02
+  - hasura-ekg-core # failure in job https://hydra.nixos.org/build/234439842 at 2023-09-13
+  - hatex-guide # failure in job https://hydra.nixos.org/build/233258593 at 2023-09-02
+  - hat # failure in job https://hydra.nixos.org/build/233243655 at 2023-09-02
+  - hats # failure in job https://hydra.nixos.org/build/233256724 at 2023-09-02
+  - hatt # failure in job https://hydra.nixos.org/build/233195039 at 2023-09-02
+  - haveibeenpwned # failure in job https://hydra.nixos.org/build/233253058 at 2023-09-02
+  - haven # failure in job https://hydra.nixos.org/build/233216806 at 2023-09-02
+  - haverer # failure in job https://hydra.nixos.org/build/233210491 at 2023-09-02
+  - hax # failure in job https://hydra.nixos.org/build/233212147 at 2023-09-02
+  - haxl # failure in job https://hydra.nixos.org/build/233243740 at 2023-09-02
+  - haxparse # failure in job https://hydra.nixos.org/build/233205900 at 2023-09-02
+  - haxr-th # failure in job https://hydra.nixos.org/build/233250109 at 2023-09-02
+  - hayland # failure in job https://hydra.nixos.org/build/233201482 at 2023-09-02
+  - hayoo-cli # failure in job https://hydra.nixos.org/build/233245478 at 2023-09-02
+  - hBDD-CMUBDD # failure in job https://hydra.nixos.org/build/233210132 at 2023-09-02
+  - hBDD-CUDD # failure in job https://hydra.nixos.org/build/233243982 at 2023-09-02
+  - hbeanstalk # failure in job https://hydra.nixos.org/build/233229856 at 2023-09-02
+  - hbeat # failure in job https://hydra.nixos.org/build/233228628 at 2023-09-02
+  - hblas # failure in job https://hydra.nixos.org/build/233232561 at 2023-09-02
+  - hblock # failure in job https://hydra.nixos.org/build/233205351 at 2023-09-02
+  - h-booru # failure in job https://hydra.nixos.org/build/233258209 at 2023-09-02
+  - hburg # failure in job https://hydra.nixos.org/build/233247429 at 2023-09-02
+  - hcad # failure in job https://hydra.nixos.org/build/233219976 at 2023-09-02
+  - HCard # failure in job https://hydra.nixos.org/build/233231922 at 2023-09-02
+  - hcc # failure in job https://hydra.nixos.org/build/233235578 at 2023-09-02
+  - hcg-minus # failure in job https://hydra.nixos.org/build/233205053 at 2023-09-02
+  - hchesslib # failure in job https://hydra.nixos.org/build/233203219 at 2023-09-02
+  - hcltest # failure in job https://hydra.nixos.org/build/233230099 at 2023-09-02
+  - hcoap # failure in job https://hydra.nixos.org/build/233233393 at 2023-09-02
+  - hcobs # failure in job https://hydra.nixos.org/build/233230173 at 2023-09-02
+  - hcom # failure in job https://hydra.nixos.org/build/233201664 at 2023-09-02
+  - hcron # failure in job https://hydra.nixos.org/build/233235518 at 2023-09-02
+  - hCsound # failure in job https://hydra.nixos.org/build/233254871 at 2023-09-02
+  - hdaemonize-buildfix # failure in job https://hydra.nixos.org/build/233225678 at 2023-09-02
+  - hdbc-aeson # failure in job https://hydra.nixos.org/build/233240596 at 2023-09-02
+  - HDBC-mysql # failure in job https://hydra.nixos.org/build/233205323 at 2023-09-02
+  - hdbc-postgresql-hstore # failure in job https://hydra.nixos.org/build/233201143 at 2023-09-02
+  - HDBC-postgresql-hstore # failure in job https://hydra.nixos.org/build/233243932 at 2023-09-02
+  - hdevtools # failure in job https://hydra.nixos.org/build/233229115 at 2023-09-02
+  - hdf5 # failure in job https://hydra.nixos.org/build/233244523 at 2023-09-02
+  - hDFA # failure in job https://hydra.nixos.org/build/233229180 at 2023-09-02
+  - hdf # failure in job https://hydra.nixos.org/build/233221986 at 2023-09-02
+  - hdigest # failure in job https://hydra.nixos.org/build/233257809 at 2023-09-02
+  - hdis86 # failure in job https://hydra.nixos.org/build/233229636 at 2023-09-02
+  - hdiscount # failure in job https://hydra.nixos.org/build/233236884 at 2023-09-02
+  - hdm # failure in job https://hydra.nixos.org/build/233238354 at 2023-09-02
+  - hdo # failure in job https://hydra.nixos.org/build/233218112 at 2023-09-02
+  - hdph-closure # failure in job https://hydra.nixos.org/build/233191583 at 2023-09-02
+  - hdr-histogram # failure in job https://hydra.nixos.org/build/233196278 at 2023-09-02
+  - headergen # failure in job https://hydra.nixos.org/build/233229610 at 2023-09-02
+  - heap-console # failure in job https://hydra.nixos.org/build/233191563 at 2023-09-02
+  - heapsort # failure in job https://hydra.nixos.org/build/233197726 at 2023-09-02
+  - heartbeat-streams # failure in job https://hydra.nixos.org/build/233214515 at 2023-09-02
+  - heart-core # failure in job https://hydra.nixos.org/build/233216585 at 2023-09-02
+  - heatitup-complete # failure in job https://hydra.nixos.org/build/233218404 at 2023-09-02
+  - hebrew-time # failure in job https://hydra.nixos.org/build/233250014 at 2023-09-02
+  - heckle # failure in job https://hydra.nixos.org/build/233228954 at 2023-09-02
+  - heddit # failure in job https://hydra.nixos.org/build/233229058 at 2023-09-02
+  - hedgehog-checkers # failure in job https://hydra.nixos.org/build/233229405 at 2023-09-02
+  - hedgehog-generic # failure in job https://hydra.nixos.org/build/233204695 at 2023-09-02
+  - hedgehog-golden # failure in job https://hydra.nixos.org/build/233219619 at 2023-09-02
+  - hedgehog-lens # failure in job https://hydra.nixos.org/build/233251825 at 2023-09-02
+  - hedgehog-servant # failure in job https://hydra.nixos.org/build/233258223 at 2023-09-02
+  - hedis-config # failure in job https://hydra.nixos.org/build/233198326 at 2023-09-02
+  - hedis-namespace # failure in job https://hydra.nixos.org/build/233256546 at 2023-09-02
+  - hedis-simple # failure in job https://hydra.nixos.org/build/233231466 at 2023-09-02
+  - hedis-tags # failure in job https://hydra.nixos.org/build/233246456 at 2023-09-02
+  - hedra # failure in job https://hydra.nixos.org/build/233217122 at 2023-09-02
+  - heidi # failure in job https://hydra.nixos.org/build/233199241 at 2023-09-02
+  - hein # failure in job https://hydra.nixos.org/build/233241797 at 2023-09-02
+  - heist-emanote # failure in job https://hydra.nixos.org/build/233242732 at 2023-09-02
+  - heist # failure in job https://hydra.nixos.org/build/233217810 at 2023-09-02
+  - helisp # failure in job https://hydra.nixos.org/build/233221194 at 2023-09-02
+  - helix # failure in job https://hydra.nixos.org/build/233254335 at 2023-09-02
+  - helm # failure in job https://hydra.nixos.org/build/233251620 at 2023-09-02
+  - help-esb # failure in job https://hydra.nixos.org/build/233202622 at 2023-09-02
+  - hemkay # failure in job https://hydra.nixos.org/build/233227889 at 2023-09-02
+  - HERA # failure in job https://hydra.nixos.org/build/233204724 at 2023-09-02
+  - herbalizer # failure in job https://hydra.nixos.org/build/233214866 at 2023-09-02
+  - HerbiePlugin # failure in job https://hydra.nixos.org/build/233193018 at 2023-09-02
+  - heredocs # failure in job https://hydra.nixos.org/build/233238862 at 2023-09-02
+  - her-lexer-parsec # failure in job https://hydra.nixos.org/build/233237312 at 2023-09-02
+  - Hermes # failure in job https://hydra.nixos.org/build/233223694 at 2023-09-02
+  - herms # failure in job https://hydra.nixos.org/build/233217216 at 2023-09-02
+  - heroku-persistent # failure in job https://hydra.nixos.org/build/233253569 at 2023-09-02
+  - hetero-dict # failure in job https://hydra.nixos.org/build/233250917 at 2023-09-02
+  - heterogeneous-list-literals # failure in job https://hydra.nixos.org/build/233212297 at 2023-09-02
+  - hetris # failure in job https://hydra.nixos.org/build/233256814 at 2023-09-02
+  - heukarya # failure in job https://hydra.nixos.org/build/233247440 at 2023-09-02
+  - HExcel # failure in job https://hydra.nixos.org/build/233211971 at 2023-09-02
+  - hexchat # failure in job https://hydra.nixos.org/build/233234161 at 2023-09-02
+  - hexif # failure in job https://hydra.nixos.org/build/233245470 at 2023-09-02
+  - hexmino # failure in job https://hydra.nixos.org/build/234458679 at 2023-09-13
+  - hexml-lens # failure in job https://hydra.nixos.org/build/233247930 at 2023-09-02
+  - hexpat-lens # failure in job https://hydra.nixos.org/build/233199827 at 2023-09-02
+  - hexpat-pickle-generic # failure in job https://hydra.nixos.org/build/233219898 at 2023-09-02
+  - hexpat-streamparser # failure in job https://hydra.nixos.org/build/233249543 at 2023-09-02
+  - hexpress # failure in job https://hydra.nixos.org/build/233219047 at 2023-09-02
+  - hexpr # failure in job https://hydra.nixos.org/build/233198146 at 2023-09-02
+  - hexquote # failure in job https://hydra.nixos.org/build/233230240 at 2023-09-02
+  - hexstring # failure in job https://hydra.nixos.org/build/233193009 at 2023-09-02
+  - hext # failure in job https://hydra.nixos.org/build/233221345 at 2023-09-02
+  - hextra # failure in job https://hydra.nixos.org/build/233238071 at 2023-09-02
+  - heyefi # failure in job https://hydra.nixos.org/build/233221712 at 2023-09-02
+  - heyting-algebras # failure in job https://hydra.nixos.org/build/233259836 at 2023-09-02
+  - hF2 # failure in job https://hydra.nixos.org/build/233208978 at 2023-09-02
+  - hfann # failure in job https://hydra.nixos.org/build/233198657 at 2023-09-02
+  - HFitUI # failure in job https://hydra.nixos.org/build/233218009 at 2023-09-02
+  - hfmt # failure in job https://hydra.nixos.org/build/233246648 at 2023-09-02
+  - hfoil # failure in job https://hydra.nixos.org/build/234467169 at 2023-09-13
+  - hfov # failure in job https://hydra.nixos.org/build/233227082 at 2023-09-02
+  - HFrequencyQueue # failure in job https://hydra.nixos.org/build/233218262 at 2023-09-02
+  - hfusion # failure in job https://hydra.nixos.org/build/233198044 at 2023-09-02
+  - HGamer3D-Data # failure in job https://hydra.nixos.org/build/233248475 at 2023-09-02
+  - HGamer3D # failure in job https://hydra.nixos.org/build/233200642 at 2023-09-02
+  - hg-buildpackage # failure in job https://hydra.nixos.org/build/233244725 at 2023-09-02
+  - hgdbmi # failure in job https://hydra.nixos.org/build/233227678 at 2023-09-02
+  - HGE2D # failure in job https://hydra.nixos.org/build/234449154 at 2023-09-13
+  - hgearman # failure in job https://hydra.nixos.org/build/233231063 at 2023-09-02
+  - hGelf # failure in job https://hydra.nixos.org/build/233203909 at 2023-09-02
+  - hgeometric # failure in job https://hydra.nixos.org/build/233197856 at 2023-09-02
+  - hgis # failure in job https://hydra.nixos.org/build/233200418 at 2023-09-02
+  - hgom # failure in job https://hydra.nixos.org/build/233255569 at 2023-09-02
+  - hgopher # failure in job https://hydra.nixos.org/build/233222066 at 2023-09-02
+  - h-gpgme # failure in job https://hydra.nixos.org/build/233240826 at 2023-09-02
+  - HGraphStorage # failure in job https://hydra.nixos.org/build/233217988 at 2023-09-02
+  - hgreet # failure in job https://hydra.nixos.org/build/233247614 at 2023-09-02
+  - hgrep # failure in job https://hydra.nixos.org/build/233219726 at 2023-09-02
+  - hgrev # failure in job https://hydra.nixos.org/build/233241115 at 2023-09-02
+  - hgrib # failure in job https://hydra.nixos.org/build/233226885 at 2023-09-02
+  - hharp # failure in job https://hydra.nixos.org/build/233237395 at 2023-09-02
+  - HHDL # failure in job https://hydra.nixos.org/build/233197917 at 2023-09-02
+  - hhp # failure in job https://hydra.nixos.org/build/233244322 at 2023-09-02
+  - hhwloc # failure in job https://hydra.nixos.org/build/233215132 at 2023-09-02
+  - hi3status # failure in job https://hydra.nixos.org/build/233217321 at 2023-09-02
+  - hichi # failure in job https://hydra.nixos.org/build/233208897 at 2023-09-02
+  - hidden-char # failure in job https://hydra.nixos.org/build/233206791 at 2023-09-02
+  - hid-examples # failure in job https://hydra.nixos.org/build/233221413 at 2023-09-02
+  - hid # failure in job https://hydra.nixos.org/build/233209289 at 2023-09-02
+  - hieraclus # failure in job https://hydra.nixos.org/build/233241310 at 2023-09-02
+  - hierarchical-clustering # failure in job https://hydra.nixos.org/build/233226120 at 2023-09-02
+  - hierarchical-exceptions # failure in job https://hydra.nixos.org/build/233195047 at 2023-09-02
+  - hierarchy # failure in job https://hydra.nixos.org/build/233203253 at 2023-09-02
+  - hiernotify # failure in job https://hydra.nixos.org/build/233223185 at 2023-09-02
+  - hifi # failure in job https://hydra.nixos.org/build/233192325 at 2023-09-02
+  - higher-leveldb # failure in job https://hydra.nixos.org/build/233237992 at 2023-09-02
+  - higherorder # failure in job https://hydra.nixos.org/build/233201392 at 2023-09-02
+  - highjson # failure in job https://hydra.nixos.org/build/233221080 at 2023-09-02
+  - highlight-versions # failure in job https://hydra.nixos.org/build/233240502 at 2023-09-02
+  - highWaterMark # failure in job https://hydra.nixos.org/build/233244731 at 2023-09-02
+  - hills # failure in job https://hydra.nixos.org/build/233215201 at 2023-09-02
+  - himg # failure in job https://hydra.nixos.org/build/233213810 at 2023-09-02
+  - hindley-milner # failure in job https://hydra.nixos.org/build/233195252 at 2023-09-02
+  - hindley-milner-type-check # failure in job https://hydra.nixos.org/build/233216545 at 2023-09-02
+  - hinquire # failure in job https://hydra.nixos.org/build/233235549 at 2023-09-02
+  - hinstaller # failure in job https://hydra.nixos.org/build/233244650 at 2023-09-02
+  - hinterface # failure in job https://hydra.nixos.org/build/233250383 at 2023-09-02
+  - hinter # failure in job https://hydra.nixos.org/build/233245954 at 2023-09-02
+  - hint-server # failure in job https://hydra.nixos.org/build/233240346 at 2023-09-02
+  - hipchat-hs # failure in job https://hydra.nixos.org/build/233198550 at 2023-09-02
+  - Hipmunk # failure in job https://hydra.nixos.org/build/233259272 at 2023-09-02
+  - hipsql-api # failure in job https://hydra.nixos.org/build/233222961 at 2023-09-02
+  - hircules # failure in job https://hydra.nixos.org/build/233221393 at 2023-09-02
+  - Hish # failure in job https://hydra.nixos.org/build/233226443 at 2023-09-02
+  - hissmetrics # failure in job https://hydra.nixos.org/build/233206890 at 2023-09-02
+  - historian # failure in job https://hydra.nixos.org/build/233210703 at 2023-09-02
+  - hist-pl-types # failure in job https://hydra.nixos.org/build/233245977 at 2023-09-02
+  - hit-on # failure in job https://hydra.nixos.org/build/233233939 at 2023-09-02
+  - HJavaScript # failure in job https://hydra.nixos.org/build/233191718 at 2023-09-02
+  - hjcase # failure in job https://hydra.nixos.org/build/233195095 at 2023-09-02
+  - hjs # failure in job https://hydra.nixos.org/build/233215541 at 2023-09-02
+  - hjsonpointer # failure in job https://hydra.nixos.org/build/233238177 at 2023-09-02
+  - hjson-query # failure in job https://hydra.nixos.org/build/233202240 at 2023-09-02
+  - hjugement-protocol # failure in job https://hydra.nixos.org/build/233227109 at 2023-09-02
+  - HJVM # failure in job https://hydra.nixos.org/build/233238646 at 2023-09-02
+  - hkd-delta # failure in job https://hydra.nixos.org/build/233204318 at 2023-09-02
+  - hkd-lens # failure in job https://hydra.nixos.org/build/233242120 at 2023-09-02
+  - hkd-records # failure in job https://hydra.nixos.org/build/233234491 at 2023-09-02
+  - hkt # failure in job https://hydra.nixos.org/build/233244808 at 2023-09-02
+  - hlbfgsb # failure in job https://hydra.nixos.org/build/233260021 at 2023-09-02
+  - hleap # failure in job https://hydra.nixos.org/build/233229908 at 2023-09-02
+  - hledger-chart # failure in job https://hydra.nixos.org/build/233205387 at 2023-09-02
+  - hledger-diff # failure in job https://hydra.nixos.org/build/233199639 at 2023-09-02
+  - hledger-flow # failure in job https://hydra.nixos.org/build/233252169 at 2023-09-02
+  - hledger-iadd # failure in job https://hydra.nixos.org/build/233198670 at 2023-09-02
+  - hledger-irr # failure in job https://hydra.nixos.org/build/233230276 at 2023-09-02
+  - hledger-makeitso # failure in job https://hydra.nixos.org/build/233213046 at 2023-09-02
+  - hledger-vty # failure in job https://hydra.nixos.org/build/233191782 at 2023-09-02
+  - hlibBladeRF # failure in job https://hydra.nixos.org/build/233237204 at 2023-09-02
+  - hlibev # failure in job https://hydra.nixos.org/build/233256218 at 2023-09-02
+  - hlibfam # failure in job https://hydra.nixos.org/build/233244702 at 2023-09-02
+  - HList # failure in job https://hydra.nixos.org/build/233193236 at 2023-09-02
+  - hlivy # failure in job https://hydra.nixos.org/build/233222495 at 2023-09-02
+  - hlogger # failure in job https://hydra.nixos.org/build/233197314 at 2023-09-02
+  - HLogger # failure in job https://hydra.nixos.org/build/233247351 at 2023-09-02
+  - hlongurl # failure in job https://hydra.nixos.org/build/233227204 at 2023-09-02
+  - hls-brittany-plugin # failure in job https://hydra.nixos.org/build/233201998 at 2023-09-02
+  - hls-haddock-comments-plugin # failure in job https://hydra.nixos.org/build/233233944 at 2023-09-02
+  - hls-refine-imports-plugin # failure in job https://hydra.nixos.org/build/233211155 at 2023-09-02
+  - hls-selection-range-plugin # failure in job https://hydra.nixos.org/build/233205582 at 2023-09-02
+  - hls-stan-plugin # failure in job https://hydra.nixos.org/build/233246900 at 2023-09-02
+  - hls-tactics-plugin # failure in job https://hydra.nixos.org/build/233238907 at 2023-09-02
+  - hlwm # failure in job https://hydra.nixos.org/build/233235119 at 2023-09-02
+  - hly # failure in job https://hydra.nixos.org/build/233206910 at 2023-09-02
+  - hmarkup # failure in job https://hydra.nixos.org/build/233234817 at 2023-09-02
+  - hmatrix-banded # failure in job https://hydra.nixos.org/build/233244249 at 2023-09-02
+  - hmatrix-mmap # failure in job https://hydra.nixos.org/build/233233046 at 2023-09-02
+  - hmatrix-nipals # failure in job https://hydra.nixos.org/build/233197543 at 2023-09-02
+  - hmatrix-sparse # failure in job https://hydra.nixos.org/build/233224288 at 2023-09-02
+  - hmatrix-static # failure in job https://hydra.nixos.org/build/233193039 at 2023-09-02
+  - hmatrix-svdlibc # failure in job https://hydra.nixos.org/build/233216875 at 2023-09-02
+  - hmatrix-syntax # failure in job https://hydra.nixos.org/build/233234153 at 2023-09-02
+  - hmatrix-tests # failure in job https://hydra.nixos.org/build/233230077 at 2023-09-02
+  - hmenu # failure in job https://hydra.nixos.org/build/233219510 at 2023-09-02
+  - hmk # failure in job https://hydra.nixos.org/build/233226029 at 2023-09-02
+  - hmm # failure in job https://hydra.nixos.org/build/233191368 at 2023-09-02
+  - HMM # failure in job https://hydra.nixos.org/build/233233312 at 2023-09-02
+  - hmm-hmatrix # failure in job https://hydra.nixos.org/build/233208947 at 2023-09-02
+  - hMollom # failure in job https://hydra.nixos.org/build/233214138 at 2023-09-02
+  - hmp3 # failure in job https://hydra.nixos.org/build/233240864 at 2023-09-02
+  - Hmpf # failure in job https://hydra.nixos.org/build/233212948 at 2023-09-02
+  - hmumps # failure in job https://hydra.nixos.org/build/233209336 at 2023-09-02
+  - hnn # failure in job https://hydra.nixos.org/build/233253882 at 2023-09-02
+  - hnock # failure in job https://hydra.nixos.org/build/233247419 at 2023-09-02
+  - hnop # failure in job https://hydra.nixos.org/build/233214340 at 2023-09-02
+  - hoauth2-providers # failure in job https://hydra.nixos.org/build/233231128 at 2023-09-02
+  - hoauth2-tutorial # failure in job https://hydra.nixos.org/build/233198819 at 2023-09-02
+  - hoauth # failure in job https://hydra.nixos.org/build/233191191 at 2023-09-02
+  - hobbes # failure in job https://hydra.nixos.org/build/233211279 at 2023-09-02
+  - hobbits # failure in job https://hydra.nixos.org/build/233209874 at 2023-09-02
+  - hocilib # failure in job https://hydra.nixos.org/build/233256688 at 2023-09-02
+  - hocker # failure in job https://hydra.nixos.org/build/233235020 at 2023-09-02
+  - hocon # failure in job https://hydra.nixos.org/build/233235831 at 2023-09-02
+  - hodatime # failure in job https://hydra.nixos.org/build/233213965 at 2023-09-02
+  - HODE # failure in job https://hydra.nixos.org/build/233214875 at 2023-09-02
+  - hoe # failure in job https://hydra.nixos.org/build/233218776 at 2023-09-02
+  - hofix-mtl # failure in job https://hydra.nixos.org/build/233225185 at 2023-09-02
+  - hog # failure in job https://hydra.nixos.org/build/233220359 at 2023-09-02
+  - hogg # failure in job https://hydra.nixos.org/build/233257874 at 2023-09-02
+  - hoggl # failure in job https://hydra.nixos.org/build/233194252 at 2023-09-02
+  - hois # failure in job https://hydra.nixos.org/build/233250712 at 2023-09-02
+  - hold-em # failure in job https://hydra.nixos.org/build/233236968 at 2023-09-02
+  - hole # failure in job https://hydra.nixos.org/build/233226698 at 2023-09-02
+  - holmes # failure in job https://hydra.nixos.org/build/233257690 at 2023-09-02
+  - Holumbus-Searchengine # failure in job https://hydra.nixos.org/build/233203951 at 2023-09-02
+  - homeomorphic # failure in job https://hydra.nixos.org/build/233203853 at 2023-09-02
+  - homoiconic # failure in job https://hydra.nixos.org/build/233205548 at 2023-09-02
+  - homplexity # failure in job https://hydra.nixos.org/build/233195616 at 2023-09-02
+  - honi # failure in job https://hydra.nixos.org/build/233241731 at 2023-09-02
+  - hoobuddy # failure in job https://hydra.nixos.org/build/233252172 at 2023-09-02
+  - hood2 # failure in job https://hydra.nixos.org/build/233204179 at 2023-09-02
+  - hoodle-types # failure in job https://hydra.nixos.org/build/233195584 at 2023-09-02
+  - hood-off # failure in job https://hydra.nixos.org/build/233249500 at 2023-09-02
+  - hoogle-index # failure in job https://hydra.nixos.org/build/233251874 at 2023-09-02
+  - hooks-dir # failure in job https://hydra.nixos.org/build/233254014 at 2023-09-02
+  - hoop # failure in job https://hydra.nixos.org/build/233214206 at 2023-09-02
+  - hoopl # failure in job https://hydra.nixos.org/build/233250120 at 2023-09-02
+  - hopencc # failure in job https://hydra.nixos.org/build/233192954 at 2023-09-02
+  - hopencl # failure in job https://hydra.nixos.org/build/233249443 at 2023-09-02
+  - HOpenCV # failure in job https://hydra.nixos.org/build/233255422 at 2023-09-02
+  - hopenpgp-tools # failure in job https://hydra.nixos.org/build/233259304 at 2023-09-02
+  - hopfield # failure in job https://hydra.nixos.org/build/233598214 at 2023-09-02
+  - hoppy-generator # failure in job https://hydra.nixos.org/build/233240608 at 2023-09-02
+  - hops # failure in job https://hydra.nixos.org/build/233207172 at 2023-09-02
+  - hoq # failure in job https://hydra.nixos.org/build/233234499 at 2023-09-02
+  - ho-rewriting # failure in job https://hydra.nixos.org/build/233253726 at 2023-09-02
+  - horizon # failure in job https://hydra.nixos.org/build/233215473 at 2023-09-02
+  - horizon-gen-nix # failure in job https://hydra.nixos.org/build/233663130 at 2023-09-02
+  - horizon-spec-lens # failure in job https://hydra.nixos.org/build/233221337 at 2023-09-02
+  - horizon-spec-pretty # failure in job https://hydra.nixos.org/build/233227612 at 2023-09-02
+  - horname # failure in job https://hydra.nixos.org/build/233198123 at 2023-09-02
+  - hosc-json # failure in job https://hydra.nixos.org/build/233220569 at 2023-09-02
+  - hosts-server # failure in job https://hydra.nixos.org/build/233249074 at 2023-09-02
+  - hothasktags # failure in job https://hydra.nixos.org/build/233207150 at 2023-09-02
+  - hourglass-fuzzy-parsing # failure in job https://hydra.nixos.org/build/233200977 at 2023-09-02
+  - houseman # failure in job https://hydra.nixos.org/build/233247185 at 2023-09-02
+  - hp2any-core # failure in job https://hydra.nixos.org/build/233205070 at 2023-09-02
+  - hpack-convert # failure in job https://hydra.nixos.org/build/233257334 at 2023-09-02
+  - hpack-dhall # failure in job https://hydra.nixos.org/build/233663050 at 2023-09-02
+  - hpapi # failure in job https://hydra.nixos.org/build/233208886 at 2023-09-02
+  - hpasteit # failure in job https://hydra.nixos.org/build/233197680 at 2023-09-02
+  - HPath # failure in job https://hydra.nixos.org/build/233257819 at 2023-09-02
+  - hpc-coveralls # failure in job https://hydra.nixos.org/build/233255685 at 2023-09-02
+  - hpg # failure in job https://hydra.nixos.org/build/233243212 at 2023-09-02
+  - HPi # failure in job https://hydra.nixos.org/build/233257411 at 2023-09-02
+  - hpio # failure in job https://hydra.nixos.org/build/233215789 at 2023-09-02
+  - hplaylist # failure in job https://hydra.nixos.org/build/233219978 at 2023-09-02
+  - hpodder # failure in job https://hydra.nixos.org/build/233207276 at 2023-09-02
+  - hpqtypes # failure in job https://hydra.nixos.org/build/233256283 at 2023-09-02
+  - hps-kmeans # failure in job https://hydra.nixos.org/build/233207461 at 2023-09-02
+  - hPushover # failure in job https://hydra.nixos.org/build/233215804 at 2023-09-02
+  - hpygments # failure in job https://hydra.nixos.org/build/233258827 at 2023-09-02
+  - hpylos # failure in job https://hydra.nixos.org/build/234451400 at 2023-09-13
+  - hpyrg # failure in job https://hydra.nixos.org/build/233225042 at 2023-09-02
+  - hquantlib-time # failure in job https://hydra.nixos.org/build/233192009 at 2023-09-02
+  - hquery # failure in job https://hydra.nixos.org/build/233203709 at 2023-09-02
+  - hreq-core # failure in job https://hydra.nixos.org/build/233259937 at 2023-09-02
+  - hRESP # failure in job https://hydra.nixos.org/build/233229961 at 2023-09-02
+  - h-reversi # failure in job https://hydra.nixos.org/build/233235617 at 2023-09-02
+  - hR # failure in job https://hydra.nixos.org/build/233205131 at 2023-09-02
+  - Hricket # failure in job https://hydra.nixos.org/build/233226183 at 2023-09-02
+  - hricket # failure in job https://hydra.nixos.org/build/233247261 at 2023-09-02
+  - HROOT-core # failure in job https://hydra.nixos.org/build/233217487 at 2023-09-02
+  - hruby # failure in job https://hydra.nixos.org/build/233210664 at 2023-09-02
+  - hs2bf # failure in job https://hydra.nixos.org/build/233251996 at 2023-09-02
+  - hs2ps # failure in job https://hydra.nixos.org/build/233258362 at 2023-09-02
+  - hsaml2 # failure in job https://hydra.nixos.org/build/233252618 at 2023-09-02
+  - hsay # failure in job https://hydra.nixos.org/build/233218925 at 2023-09-02
+  - hsbc # failure in job https://hydra.nixos.org/build/233206310 at 2023-09-02
+  - hsbencher # failure in job https://hydra.nixos.org/build/233214962 at 2023-09-02
+  - hs-brotli # failure in job https://hydra.nixos.org/build/233215213 at 2023-09-02
+  - hsc3-cairo # failure in job https://hydra.nixos.org/build/233215926 at 2023-09-02
+  - hsc3-db # failure in job https://hydra.nixos.org/build/233191679 at 2023-09-02
+  - hsc3-dot # failure in job https://hydra.nixos.org/build/233219452 at 2023-09-02
+  - hsc3-lang # failure in job https://hydra.nixos.org/build/233198291 at 2023-09-02
+  - hsc3-process # failure in job https://hydra.nixos.org/build/233196358 at 2023-09-02
+  - hsc3-rec # failure in job https://hydra.nixos.org/build/233206364 at 2023-09-02
+  - hsc3-rw # failure in job https://hydra.nixos.org/build/233244499 at 2023-09-02
+  - hsc3-sf # failure in job https://hydra.nixos.org/build/233208404 at 2023-09-02
+  - hsc3-unsafe # failure in job https://hydra.nixos.org/build/233202606 at 2023-09-02
+  - hscaffold # failure in job https://hydra.nixos.org/build/233207380 at 2023-09-02
+  - hscamwire # failure in job https://hydra.nixos.org/build/233194329 at 2023-09-02
+  - hs-carbon-examples # failure in job https://hydra.nixos.org/build/234440337 at 2023-09-13
+  - hscd # failure in job https://hydra.nixos.org/build/233195644 at 2023-09-02
+  - hscdio # failure in job https://hydra.nixos.org/build/233195843 at 2023-09-02
+  - hschema-aeson # failure in job https://hydra.nixos.org/build/233196871 at 2023-09-02
+  - hscim # failure in job https://hydra.nixos.org/build/233208569 at 2023-09-02
+  - hsclock # failure in job https://hydra.nixos.org/build/233220439 at 2023-09-02
+  - hScraper # failure in job https://hydra.nixos.org/build/233239652 at 2023-09-02
+  - hscuid # failure in job https://hydra.nixos.org/build/233245223 at 2023-09-02
+  - hs-di # failure in job https://hydra.nixos.org/build/233254606 at 2023-09-02
+  - hsdif # failure in job https://hydra.nixos.org/build/233239725 at 2023-09-02
+  - hsdip # failure in job https://hydra.nixos.org/build/233229128 at 2023-09-02
+  - hsdns-cache # failure in job https://hydra.nixos.org/build/233225611 at 2023-09-02
+  - hs-dotnet # failure in job https://hydra.nixos.org/build/233232755 at 2023-09-02
+  - hs-duktape # failure in job https://hydra.nixos.org/build/233223882 at 2023-09-02
+  - hsebaysdk # failure in job https://hydra.nixos.org/build/233251126 at 2023-09-02
+  - hsenv # failure in job https://hydra.nixos.org/build/233196846 at 2023-09-02
+  - HSet # failure in job https://hydra.nixos.org/build/233202216 at 2023-09-02
+  - hs-excelx # failure in job https://hydra.nixos.org/build/233230761 at 2023-09-02
+  - hsfcsh # failure in job https://hydra.nixos.org/build/233245258 at 2023-09-02
+  - HSFFIG # failure in job https://hydra.nixos.org/build/233257379 at 2023-09-02
+  - hsfilt # failure in job https://hydra.nixos.org/build/233242295 at 2023-09-02
+  - hs-fltk # failure in job https://hydra.nixos.org/build/233225244 at 2023-09-02
+  - hsforce # failure in job https://hydra.nixos.org/build/233242016 at 2023-09-02
+  - hs-gizapp # failure in job https://hydra.nixos.org/build/233248733 at 2023-09-02
+  - hsgnutls # failure in job https://hydra.nixos.org/build/233199419 at 2023-09-02
+  - hsgnutls-yj # failure in job https://hydra.nixos.org/build/233220680 at 2023-09-02
+  - hsgsom # failure in job https://hydra.nixos.org/build/233192340 at 2023-09-02
+  - HsHaruPDF # failure in job https://hydra.nixos.org/build/233220916 at 2023-09-02
+  - HsHyperEstraier # failure in job https://hydra.nixos.org/build/233253787 at 2023-09-02
+  - hsI2C # failure in job https://hydra.nixos.org/build/233247520 at 2023-09-02
+  - hSimpleDB # failure in job https://hydra.nixos.org/build/233236736 at 2023-09-02
+  - hsimport # failure in job https://hydra.nixos.org/build/233219578 at 2023-09-02
+  - hs-java # failure in job https://hydra.nixos.org/build/233224973 at 2023-09-02
+  - hs-json-rpc # failure in job https://hydra.nixos.org/build/233217334 at 2023-09-02
+  - HsJudy # failure in job https://hydra.nixos.org/build/233243273 at 2023-09-02
+  - hskeleton # failure in job https://hydra.nixos.org/build/233220443 at 2023-09-02
+  - hslackbuilder # failure in job https://hydra.nixos.org/build/233230141 at 2023-09-02
+  - hslibsvm # failure in job https://hydra.nixos.org/build/233255959 at 2023-09-02
+  - hslinks # failure in job https://hydra.nixos.org/build/233221444 at 2023-09-02
+  - hslogger-reader # failure in job https://hydra.nixos.org/build/233226346 at 2023-09-02
+  - hslogger-template # failure in job https://hydra.nixos.org/build/233192309 at 2023-09-02
+  - hs-logo # failure in job https://hydra.nixos.org/build/233211298 at 2023-09-02
+  - hsluv-haskell # failure in job https://hydra.nixos.org/build/233239548 at 2023-09-02
+  - hsmagick # failure in job https://hydra.nixos.org/build/233235964 at 2023-09-02
+  - hsmodetweaks # failure in job https://hydra.nixos.org/build/233663004 at 2023-09-02
+  - Hsmtlib # failure in job https://hydra.nixos.org/build/233213073 at 2023-09-02
+  - hsmtpclient # failure in job https://hydra.nixos.org/build/233224596 at 2023-09-02
+  - hsnock # failure in job https://hydra.nixos.org/build/233194525 at 2023-09-02
+  - hs-nombre-generator # failure in job https://hydra.nixos.org/build/233246102 at 2023-09-02
+  - hsns # failure in job https://hydra.nixos.org/build/233240328 at 2023-09-02
+  - hsnsq # failure in job https://hydra.nixos.org/build/233215245 at 2023-09-02
+  - hsntp # failure in job https://hydra.nixos.org/build/233206211 at 2023-09-02
+  - hsoptions # failure in job https://hydra.nixos.org/build/233198363 at 2023-09-02
+  - hsoz # failure in job https://hydra.nixos.org/build/233217005 at 2023-09-02
+  - hs-pattrans # failure in job https://hydra.nixos.org/build/233230577 at 2023-09-02
+  - hsp-cgi # failure in job https://hydra.nixos.org/build/233254927 at 2023-09-02
+  - hspear # failure in job https://hydra.nixos.org/build/233192286 at 2023-09-02
+  - hspec2 # failure in job https://hydra.nixos.org/build/233251459 at 2023-09-02
+  - hspec-api # failure in job https://hydra.nixos.org/build/233201204 at 2023-09-02
+  - hspec-expectations-match # failure in job https://hydra.nixos.org/build/233210221 at 2023-09-02
+  - hspec-experimental # failure in job https://hydra.nixos.org/build/233216119 at 2023-09-02
+  - hspec-jenkins # failure in job https://hydra.nixos.org/build/233213269 at 2023-09-02
+  - hspec-junit-formatter # failure in job https://hydra.nixos.org/build/233218310 at 2023-09-02
+  - hspec-monad-control # failure in job https://hydra.nixos.org/build/233223942 at 2023-09-02
+  - hspec-need-env # failure in job https://hydra.nixos.org/build/233208310 at 2023-09-02
+  - hspec-slow # failure in job https://hydra.nixos.org/build/233248782 at 2023-09-02
+  - hspec-structured-formatter # failure in job https://hydra.nixos.org/build/233199636 at 2023-09-02
+  - hspec-tables # failure in job https://hydra.nixos.org/build/233221785 at 2023-09-02
+  - HsPerl5 # failure in job https://hydra.nixos.org/build/233256038 at 2023-09-02
+  - hs-pgms # failure in job https://hydra.nixos.org/build/233237693 at 2023-09-02
+  - hspkcs11 # failure in job https://hydra.nixos.org/build/233225806 at 2023-09-02
+  - hs-pkg-config # failure in job https://hydra.nixos.org/build/233240839 at 2023-09-02
+  - hspread # failure in job https://hydra.nixos.org/build/233217578 at 2023-09-02
+  - hspresent # failure in job https://hydra.nixos.org/build/233191185 at 2023-09-02
+  - hspretty # failure in job https://hydra.nixos.org/build/233253394 at 2023-09-02
+  - hsql # failure in job https://hydra.nixos.org/build/233217626 at 2023-09-02
+  - hs-re # failure in job https://hydra.nixos.org/build/233253430 at 2023-09-02
+  - hsrelp # failure in job https://hydra.nixos.org/build/233255841 at 2023-09-02
+  - hs-rqlite # failure in job https://hydra.nixos.org/build/233191478 at 2023-09-02
+  - hs-rs-notify # failure in job https://hydra.nixos.org/build/233253577 at 2023-09-02
+  - hs-scrape # failure in job https://hydra.nixos.org/build/233244221 at 2023-09-02
+  - hsseccomp # failure in job https://hydra.nixos.org/build/233194411 at 2023-09-02
+  - hsshellscript # failure in job https://hydra.nixos.org/build/233197858 at 2023-09-02
+  - hs-snowtify # failure in job https://hydra.nixos.org/build/233200511 at 2023-09-02
+  - hsSqlite3 # failure in job https://hydra.nixos.org/build/233238549 at 2023-09-02
+  - hssqlppp # failure in job https://hydra.nixos.org/build/233216888 at 2023-09-02
+  - HsSVN # failure in job https://hydra.nixos.org/build/233213151 at 2023-09-02
+  - hs-tags # failure in job https://hydra.nixos.org/build/233258358 at 2023-09-02
+  - hstatsd # failure in job https://hydra.nixos.org/build/233232363 at 2023-09-02
+  - hstats # failure in job https://hydra.nixos.org/build/233239963 at 2023-09-02
+  - hs-term-emulator # failure in job https://hydra.nixos.org/build/233252262 at 2023-09-02
+  - hstest # failure in job https://hydra.nixos.org/build/233237803 at 2023-09-02
+  - hstidy # failure in job https://hydra.nixos.org/build/233194232 at 2023-09-02
+  - HsTools # failure in job https://hydra.nixos.org/build/233234724 at 2023-09-02
+  - hs-twitterarchiver # failure in job https://hydra.nixos.org/build/233241847 at 2023-09-02
+  - hs-twitter # failure in job https://hydra.nixos.org/build/233214283 at 2023-09-02
+  - hstyle # failure in job https://hydra.nixos.org/build/233232861 at 2023-09-02
+  - hsudoku # failure in job https://hydra.nixos.org/build/233214738 at 2023-09-02
+  - hs-vcard # failure in job https://hydra.nixos.org/build/233228457 at 2023-09-02
+  - hs-watchman # failure in job https://hydra.nixos.org/build/233217591 at 2023-09-02
+  - hsXenCtrl # failure in job https://hydra.nixos.org/build/233193837 at 2023-09-02
+  - hsx # failure in job https://hydra.nixos.org/build/233211907 at 2023-09-02
+  - hsyscall # failure in job https://hydra.nixos.org/build/233190699 at 2023-09-02
+  - hsyslog-udp # failure in job https://hydra.nixos.org/build/233205524 at 2023-09-02
+  - hszephyr # failure in job https://hydra.nixos.org/build/233204818 at 2023-09-02
+  - hTalos # failure in job https://hydra.nixos.org/build/233246583 at 2023-09-02
+  - htar # failure in job https://hydra.nixos.org/build/233218013 at 2023-09-02
+  - htdp-image # failure in job https://hydra.nixos.org/build/234460283 at 2023-09-13
+  - hTensor # failure in job https://hydra.nixos.org/build/233205733 at 2023-09-02
+  - htestu # failure in job https://hydra.nixos.org/build/233234583 at 2023-09-02
+  - HTicTacToe # failure in job https://hydra.nixos.org/build/233235397 at 2023-09-02
+  - htiled # failure in job https://hydra.nixos.org/build/233219305 at 2023-09-02
+  - htlset # failure in job https://hydra.nixos.org/build/233203886 at 2023-09-02
+  - html-parse # failure in job https://hydra.nixos.org/build/233241759 at 2023-09-02
+  - html-rules # failure in job https://hydra.nixos.org/build/233200615 at 2023-09-02
+  - html-tokenizer # failure in job https://hydra.nixos.org/build/233243581 at 2023-09-02
+  - htoml # failure in job https://hydra.nixos.org/build/233246670 at 2023-09-02
+  - htoml-megaparsec # failure in job https://hydra.nixos.org/build/233211134 at 2023-09-02
+  - hts # failure in job https://hydra.nixos.org/build/233256407 at 2023-09-02
+  - htsn # failure in job https://hydra.nixos.org/build/233197004 at 2023-09-02
+  - htssets # failure in job https://hydra.nixos.org/build/233195420 at 2023-09-02
+  - http2-client # failure in job https://hydra.nixos.org/build/233214193 at 2023-09-02
+  - http2-grpc-types # failure in job https://hydra.nixos.org/build/233197769 at 2023-09-02
+  - http2-tls # failure in job https://hydra.nixos.org/build/233227095 at 2023-09-02
+  - http-attoparsec # failure in job https://hydra.nixos.org/build/233233534 at 2023-09-02
+  - http-client-lens # failure in job https://hydra.nixos.org/build/233259168 at 2023-09-02
+  - http-client-request-modifiers # failure in job https://hydra.nixos.org/build/233231339 at 2023-09-02
+  - http-client-session # failure in job https://hydra.nixos.org/build/233221185 at 2023-09-02
+  - http-client-streams # failure in job https://hydra.nixos.org/build/233233493 at 2023-09-02
+  - http-conduit-browser # failure in job https://hydra.nixos.org/build/233213208 at 2023-09-02
+  - http-conduit-downloader # failure in job https://hydra.nixos.org/build/233242604 at 2023-09-02
+  - http-directory # failure in job https://hydra.nixos.org/build/233252965 at 2023-09-02
+  - http-dispatch # failure in job https://hydra.nixos.org/build/233238880 at 2023-09-02
+  - http-encodings # failure in job https://hydra.nixos.org/build/233232289 at 2023-09-02
+  - http-grammar # failure in job https://hydra.nixos.org/build/233254392 at 2023-09-02
+  - http-interchange # failure in job https://hydra.nixos.org/build/233213341 at 2023-09-02
+  - http-kinder # failure in job https://hydra.nixos.org/build/233205030 at 2023-09-02
+  - http-kit # failure in job https://hydra.nixos.org/build/233244992 at 2023-09-02
+  - http-listen # failure in job https://hydra.nixos.org/build/233244011 at 2023-09-02
+  - http-pony # failure in job https://hydra.nixos.org/build/233233492 at 2023-09-02
+  - http-pony-serve-wai # failure in job https://hydra.nixos.org/build/233222241 at 2023-09-02
+  - http-proxy # failure in job https://hydra.nixos.org/build/233218875 at 2023-09-02
+  - http-querystring # failure in job https://hydra.nixos.org/build/233202925 at 2023-09-02
+  - http-rfc7807 # failure in job https://hydra.nixos.org/build/233191433 at 2023-09-02
+  - http-server # failure in job https://hydra.nixos.org/build/233209925 at 2023-09-02
+  - http-shed # failure in job https://hydra.nixos.org/build/233236325 at 2023-09-02
+  - httpstan # failure in job https://hydra.nixos.org/build/233202072 at 2023-09-02
+  - http-wget # failure in job https://hydra.nixos.org/build/233236793 at 2023-09-02
+  - htune # failure in job https://hydra.nixos.org/build/234447885 at 2023-09-13
+  - htvm # failure in job https://hydra.nixos.org/build/233218993 at 2023-09-02
+  - htzaar # failure in job https://hydra.nixos.org/build/233197602 at 2023-09-02
+  - huck # failure in job https://hydra.nixos.org/build/233235354 at 2023-09-02
+  - HueAPI # failure in job https://hydra.nixos.org/build/233234528 at 2023-09-02
+  - huff # failure in job https://hydra.nixos.org/build/233194394 at 2023-09-02
+  - huffman # failure in job https://hydra.nixos.org/build/233230189 at 2023-09-02
+  - HulkImport # failure in job https://hydra.nixos.org/build/233193212 at 2023-09-02
+  - human-parse # failure in job https://hydra.nixos.org/build/233212317 at 2023-09-02
+  - human-text # failure in job https://hydra.nixos.org/build/233237802 at 2023-09-02
+  - humble-prelude # failure in job https://hydra.nixos.org/build/233196934 at 2023-09-02
+  - hum # failure in job https://hydra.nixos.org/build/233203730 at 2023-09-02
+  - hums # failure in job https://hydra.nixos.org/build/233196188 at 2023-09-02
+  - hunch # failure in job https://hydra.nixos.org/build/233215770 at 2023-09-02
+  - HUnit-Diff # failure in job https://hydra.nixos.org/build/233221147 at 2023-09-02
+  - HUnit-Plus # failure in job https://hydra.nixos.org/build/233208597 at 2023-09-02
+  - hunit-rematch # failure in job https://hydra.nixos.org/build/233232138 at 2023-09-02
+  - hup # failure in job https://hydra.nixos.org/build/233246919 at 2023-09-02
+  - hurriyet # failure in job https://hydra.nixos.org/build/233200609 at 2023-09-02
+  - husky # failure in job https://hydra.nixos.org/build/233214877 at 2023-09-02
+  - hutton # failure in job https://hydra.nixos.org/build/233211451 at 2023-09-02
+  - huttons-razor # failure in job https://hydra.nixos.org/build/233224736 at 2023-09-02
+  - hVOIDP # failure in job https://hydra.nixos.org/build/233227778 at 2023-09-02
+  - hwall-auth-iitk # failure in job https://hydra.nixos.org/build/233217629 at 2023-09-02
+  - hw-ci-assist # failure in job https://hydra.nixos.org/build/233207990 at 2023-09-02
+  - hw-dsv # failure in job https://hydra.nixos.org/build/233252280 at 2023-09-02
+  - hw-dump # failure in job https://hydra.nixos.org/build/233208818 at 2023-09-02
+  - hweblib # failure in job https://hydra.nixos.org/build/233250183 at 2023-09-02
+  - hwhile # failure in job https://hydra.nixos.org/build/233206114 at 2023-09-02
+  - hw-json-simd # failure in job https://hydra.nixos.org/build/233240490 at 2023-09-02
+  - hworker # failure in job https://hydra.nixos.org/build/233220098 at 2023-09-02
+  - hw-playground-linear # failure in job https://hydra.nixos.org/build/233208994 at 2023-09-02
+  - hw-prim-bits # failure in job https://hydra.nixos.org/build/233246627 at 2023-09-02
+  - hw-simd-cli # failure in job https://hydra.nixos.org/build/233223251 at 2023-09-02
+  - hwsl2 # failure in job https://hydra.nixos.org/build/233203941 at 2023-09-02
+  - hw-streams # failure in job https://hydra.nixos.org/build/233250370 at 2023-09-02
+  - hw-tar # failure in job https://hydra.nixos.org/build/233219650 at 2023-09-02
+  - hw-xml # failure in job https://hydra.nixos.org/build/233197758 at 2023-09-02
+  - hx # failure in job https://hydra.nixos.org/build/233225223 at 2023-09-02
+  - hxmppc # failure in job https://hydra.nixos.org/build/233253810 at 2023-09-02
+  - HXQ # failure in job https://hydra.nixos.org/build/233218116 at 2023-09-02
+  - hxt-pickle-utils # failure in job https://hydra.nixos.org/build/233212654 at 2023-09-02
+  - hyakko # failure in job https://hydra.nixos.org/build/233199297 at 2023-09-02
+  - hydra # failure in job https://hydra.nixos.org/build/233212477 at 2023-09-02
+  - hydra-hs # failure in job https://hydra.nixos.org/build/233238247 at 2023-09-02
+  - hydrogen # failure in job https://hydra.nixos.org/build/233219053 at 2023-09-02
+  - hydrogen-multimap # failure in job https://hydra.nixos.org/build/233241591 at 2023-09-02
+  - hylide # failure in job https://hydra.nixos.org/build/233251582 at 2023-09-02
+  - hylolib # failure in job https://hydra.nixos.org/build/233197340 at 2023-09-02
+  - hyperdrive # failure in job https://hydra.nixos.org/build/233223556 at 2023-09-02
+  - hyper-extra # failure in job https://hydra.nixos.org/build/233216785 at 2023-09-02
+  - hyperfunctions # failure in job https://hydra.nixos.org/build/233195544 at 2023-09-02
+  - hyper-haskell-server # failure in job https://hydra.nixos.org/build/233244991 at 2023-09-02
+  - hyperion # failure in job https://hydra.nixos.org/build/233218339 at 2023-09-02
+  - hyperloglogplus # failure in job https://hydra.nixos.org/build/233259772 at 2023-09-02
+  - hyperscript # failure in job https://hydra.nixos.org/build/233222333 at 2023-09-02
+  - hypher # failure in job https://hydra.nixos.org/build/233233236 at 2023-09-02
+  - hyraxAbif # failure in job https://hydra.nixos.org/build/233195246 at 2023-09-02
+  - hzulip # failure in job https://hydra.nixos.org/build/233191086 at 2023-09-02
+  - i18n # failure in job https://hydra.nixos.org/build/233247578 at 2023-09-02
+  - I1M # failure in job https://hydra.nixos.org/build/233258307 at 2023-09-02
+  - i3blocks-hs-contrib # failure in job https://hydra.nixos.org/build/233231742 at 2023-09-02
+  - i3ipc # failure in job https://hydra.nixos.org/build/233213992 at 2023-09-02
+  - iap-verifier # failure in job https://hydra.nixos.org/build/233202491 at 2023-09-02
+  - iban # failure in job https://hydra.nixos.org/build/233236424 at 2023-09-02
+  - ib-api # failure in job https://hydra.nixos.org/build/233223054 at 2023-09-02
+  - ical # failure in job https://hydra.nixos.org/build/233200229 at 2023-09-02
+  - icepeak # failure in job https://hydra.nixos.org/build/233242326 at 2023-09-02
+  - icfpc2020-galaxy # failure in job https://hydra.nixos.org/build/233208746 at 2023-09-02
+  - IcoGrid # failure in job https://hydra.nixos.org/build/233202038 at 2023-09-02
+  - iconv-typed # failure in job https://hydra.nixos.org/build/233211253 at 2023-09-02
+  - ideas # failure in job https://hydra.nixos.org/build/233248212 at 2023-09-02
+  - ide-backend-common # failure in job https://hydra.nixos.org/build/233251470 at 2023-09-02
+  - idempotent # failure in job https://hydra.nixos.org/build/233244413 at 2023-09-02
+  - identifiers # failure in job https://hydra.nixos.org/build/233251845 at 2023-09-02
+  - idiii # failure in job https://hydra.nixos.org/build/233228586 at 2023-09-02
+  - idna2008 # failure in job https://hydra.nixos.org/build/233206444 at 2023-09-02
+  - IDynamic # failure in job https://hydra.nixos.org/build/233196222 at 2023-09-02
+  - ieee-utils # failure in job https://hydra.nixos.org/build/233224430 at 2023-09-02
+  - iexcloud # failure in job https://hydra.nixos.org/build/233224874 at 2023-09-02
+  - ifcxt # failure in job https://hydra.nixos.org/build/233196911 at 2023-09-02
+  - IFS # failure in job https://hydra.nixos.org/build/233246865 at 2023-09-02
+  - ige # failure in job https://hydra.nixos.org/build/233224389 at 2023-09-02
+  - ig # failure in job https://hydra.nixos.org/build/233203872 at 2023-09-02
+  - ignore # failure in job https://hydra.nixos.org/build/233238874 at 2023-09-02
+  - igraph # failure in job https://hydra.nixos.org/build/233192875 at 2023-09-02
+  - ihaskell-charts # failure in job https://hydra.nixos.org/build/233193328 at 2023-09-02
+  - ihaskell-diagrams # failure in job https://hydra.nixos.org/build/233230959 at 2023-09-02
+  - ihaskell-gnuplot # failure in job https://hydra.nixos.org/build/233223675 at 2023-09-02
+  - ihaskell-graphviz # failure in job https://hydra.nixos.org/build/233200671 at 2023-09-02
+  - ihaskell-parsec # failure in job https://hydra.nixos.org/build/233244271 at 2023-09-02
+  - ihaskell-plot # failure in job https://hydra.nixos.org/build/233255936 at 2023-09-02
+  - ihaskell-widgets # failure in job https://hydra.nixos.org/build/233198849 at 2023-09-02
+  - ihp-hsx # failure in job https://hydra.nixos.org/build/233211401 at 2023-09-02
+  - illuminate # failure in job https://hydra.nixos.org/build/233219478 at 2023-09-02
+  - imagemagick # failure in job https://hydra.nixos.org/build/233598237 at 2023-09-02
+  - imagepaste # failure in job https://hydra.nixos.org/build/233211716 at 2023-09-02
+  - image-type # failure in job https://hydra.nixos.org/build/233251466 at 2023-09-02
+  - imapget # failure in job https://hydra.nixos.org/build/233235664 at 2023-09-02
+  - imgur # failure in job https://hydra.nixos.org/build/233191096 at 2023-09-02
+  - imj-prelude # failure in job https://hydra.nixos.org/build/233234877 at 2023-09-02
+  - immortal-worker # failure in job https://hydra.nixos.org/build/233246961 at 2023-09-02
+  - ImperativeHaskell # failure in job https://hydra.nixos.org/build/233240920 at 2023-09-02
+  - impl # failure in job https://hydra.nixos.org/build/233203425 at 2023-09-02
+  - implicit-logging # failure in job https://hydra.nixos.org/build/233194358 at 2023-09-02
+  - implicit-params # failure in job https://hydra.nixos.org/build/233201527 at 2023-09-02
+  - imports # failure in job https://hydra.nixos.org/build/233227469 at 2023-09-02
+  - impossible # failure in job https://hydra.nixos.org/build/233216237 at 2023-09-02
+  - imprint # failure in job https://hydra.nixos.org/build/233246314 at 2023-09-02
+  - impure-containers # failure in job https://hydra.nixos.org/build/233251408 at 2023-09-02
+  - inchworm # failure in job https://hydra.nixos.org/build/233219017 at 2023-09-02
+  - indentation-core # failure in job https://hydra.nixos.org/build/233257946 at 2023-09-02
+  - index-core # failure in job https://hydra.nixos.org/build/233255196 at 2023-09-02
+  - indexed-containers # failure in job https://hydra.nixos.org/build/233236806 at 2023-09-02
+  - indexed-do-notation # failure in job https://hydra.nixos.org/build/233259970 at 2023-09-02
+  - indextype # failure in job https://hydra.nixos.org/build/233230257 at 2023-09-02
+  - indices # failure in job https://hydra.nixos.org/build/233198223 at 2023-09-02
+  - infernal # failure in job https://hydra.nixos.org/build/233228571 at 2023-09-02
+  - inferno-types # failure in job https://hydra.nixos.org/build/233225968 at 2023-09-02
+  - infernu # failure in job https://hydra.nixos.org/build/233238697 at 2023-09-02
+  - infer-upstream # failure in job https://hydra.nixos.org/build/233191739 at 2023-09-02
+  - inf-interval # failure in job https://hydra.nixos.org/build/233193217 at 2023-09-02
+  - infix # failure in job https://hydra.nixos.org/build/233256976 at 2023-09-02
+  - inflist # failure in job https://hydra.nixos.org/build/233223710 at 2023-09-02
+  - informative # failure in job https://hydra.nixos.org/build/233215837 at 2023-09-02
+  - inilist # failure in job https://hydra.nixos.org/build/233203791 at 2023-09-02
+  - ini-qq # failure in job https://hydra.nixos.org/build/233201946 at 2023-09-02
+  - initialize # failure in job https://hydra.nixos.org/build/233228739 at 2023-09-02
+  - inj-base # failure in job https://hydra.nixos.org/build/233198720 at 2023-09-02
+  - inject-function # failure in job https://hydra.nixos.org/build/233252462 at 2023-09-02
+  - injections # failure in job https://hydra.nixos.org/build/233207796 at 2023-09-02
+  - inline-c-objc # failure in job https://hydra.nixos.org/build/233223704 at 2023-09-02
+  - inline-r # failure in job https://hydra.nixos.org/build/233210520 at 2023-09-02
+  - in-other-words-plugin # failure in job https://hydra.nixos.org/build/233202396 at 2023-09-02
+  - inserts # failure in job https://hydra.nixos.org/build/233198758 at 2023-09-02
+  - instana-haskell-trace-sdk # failure in job https://hydra.nixos.org/build/233211339 at 2023-09-02
+  - instance-map # failure in job https://hydra.nixos.org/build/233209014 at 2023-09-02
+  - instant-generics # failure in job https://hydra.nixos.org/build/233209385 at 2023-09-02
+  - instapaper-sender # failure in job https://hydra.nixos.org/build/233225390 at 2023-09-02
+  - instinct # failure in job https://hydra.nixos.org/build/233203632 at 2023-09-02
+  - intcode # failure in job https://hydra.nixos.org/build/233198813 at 2023-09-02
+  - integer-pure # failure in job https://hydra.nixos.org/build/233216037 at 2023-09-02
+  - integer-simple # failure in job https://hydra.nixos.org/build/233192893 at 2023-09-02
+  - intensional-datatys # failure in job https://hydra.nixos.org/build/233218337 at 2023-09-02
+  - interact # failure in job https://hydra.nixos.org/build/233228146 at 2023-09-02
+  - interactive-plot # failure in job https://hydra.nixos.org/build/233212280 at 2023-09-02
+  - interleavableGen # failure in job https://hydra.nixos.org/build/233226525 at 2023-09-02
+  - interleavableIO # failure in job https://hydra.nixos.org/build/233257474 at 2023-09-02
+  - interlude-l # failure in job https://hydra.nixos.org/build/233204840 at 2023-09-02
+  - internetmarke # failure in job https://hydra.nixos.org/build/233229638 at 2023-09-02
+  - intero # failure in job https://hydra.nixos.org/build/233250290 at 2023-09-02
+  - interp # failure in job https://hydra.nixos.org/build/233225966 at 2023-09-02
+  - interpolatedstring-qq2 # failure in job https://hydra.nixos.org/build/233231621 at 2023-09-02
+  - interpolator # failure in job https://hydra.nixos.org/build/233218382 at 2023-09-02
+  - interpol # failure in job https://hydra.nixos.org/build/233218430 at 2023-09-02
+  - interruptible # failure in job https://hydra.nixos.org/build/233209873 at 2023-09-02
+  - interval-algebra # failure in job https://hydra.nixos.org/build/233208487 at 2023-09-02
+  - interval # failure in job https://hydra.nixos.org/build/233239434 at 2023-09-02
+  - interval-tree-clock # failure in job https://hydra.nixos.org/build/233234316 at 2023-09-02
+  - IntFormats # failure in job https://hydra.nixos.org/build/233195190 at 2023-09-02
+  - int-interval-map # failure in job https://hydra.nixos.org/build/233244556 at 2023-09-02
+  - int-like # failure in job https://hydra.nixos.org/build/233245537 at 2023-09-02
+  - int-multimap # failure in job https://hydra.nixos.org/build/233210427 at 2023-09-02
+  - intrinsic-superclasses # failure in job https://hydra.nixos.org/build/233228909 at 2023-09-02
+  - introduction # failure in job https://hydra.nixos.org/build/233223585 at 2023-09-02
+  - intro # failure in job https://hydra.nixos.org/build/233192297 at 2023-09-02
+  - invertible-syntax # failure in job https://hydra.nixos.org/build/233230924 at 2023-09-02
+  - involutive-semigroups # failure in job https://hydra.nixos.org/build/233239156 at 2023-09-02
+  - io-capture # failure in job https://hydra.nixos.org/build/233196311 at 2023-09-02
+  - io-choice # failure in job https://hydra.nixos.org/build/233218388 at 2023-09-02
+  - ioctl # failure in job https://hydra.nixos.org/build/233191634 at 2023-09-02
+  - io-reactive # failure in job https://hydra.nixos.org/build/233205095 at 2023-09-02
+  - IOR # failure in job https://hydra.nixos.org/build/233206346 at 2023-09-02
+  - iostring # failure in job https://hydra.nixos.org/build/233195232 at 2023-09-02
+  - iothread # failure in job https://hydra.nixos.org/build/233255761 at 2023-09-02
+  - iotransaction # failure in job https://hydra.nixos.org/build/233226259 at 2023-09-02
+  - ip2location # failure in job https://hydra.nixos.org/build/233208648 at 2023-09-02
+  - ip2proxy # failure in job https://hydra.nixos.org/build/233218808 at 2023-09-02
+  - ipa # failure in job https://hydra.nixos.org/build/233242228 at 2023-09-02
+  - ipfs # failure in job https://hydra.nixos.org/build/233598054 at 2023-09-02
+  - ipopt-hs # failure in job https://hydra.nixos.org/build/233210102 at 2023-09-02
+  - ip-quoter # failure in job https://hydra.nixos.org/build/233234581 at 2023-09-02
+  - iptables-helpers # failure in job https://hydra.nixos.org/build/233198949 at 2023-09-02
+  - IPv6DB # failure in job https://hydra.nixos.org/build/233199983 at 2023-09-02
+  - ircbot # failure in job https://hydra.nixos.org/build/233237219 at 2023-09-02
+  - irc-core # failure in job https://hydra.nixos.org/build/233242138 at 2023-09-02
+  - irc-dcc # failure in job https://hydra.nixos.org/build/233230181 at 2023-09-02
+  - Irc # failure in job https://hydra.nixos.org/build/233230852 at 2023-09-02
+  - irc-fun-types # failure in job https://hydra.nixos.org/build/233255910 at 2023-09-02
+  - ireal # failure in job https://hydra.nixos.org/build/233239811 at 2023-09-02
+  - iridium # failure in job https://hydra.nixos.org/build/233211261 at 2023-09-02
+  - iri # failure in job https://hydra.nixos.org/build/233197230 at 2023-09-02
+  - iris # failure in job https://hydra.nixos.org/build/233212713 at 2023-09-02
+  - iron-mq # failure in job https://hydra.nixos.org/build/233200693 at 2023-09-02
+  - irt # failure in job https://hydra.nixos.org/build/233216553 at 2023-09-02
+  - isdicom # failure in job https://hydra.nixos.org/build/233214249 at 2023-09-02
+  - IsNull # failure in job https://hydra.nixos.org/build/233233011 at 2023-09-02
+  - iso8601-duration # failure in job https://hydra.nixos.org/build/233190968 at 2023-09-02
+  - isobmff # failure in job https://hydra.nixos.org/build/233237273 at 2023-09-02
+  - isotope # failure in job https://hydra.nixos.org/build/233204650 at 2023-09-02
+  - itcli # failure in job https://hydra.nixos.org/build/233201572 at 2023-09-02
+  - itemfield # failure in job https://hydra.nixos.org/build/233203571 at 2023-09-02
+  - iteratee # failure in job https://hydra.nixos.org/build/233241290 at 2023-09-02
+  - iterative-forward-search # failure in job https://hydra.nixos.org/build/233256255 at 2023-09-02
+  - iterIO # failure in job https://hydra.nixos.org/build/233199156 at 2023-09-02
+  - iterm-show # failure in job https://hydra.nixos.org/build/233215093 at 2023-09-02
+  - it-has # failure in job https://hydra.nixos.org/build/233212395 at 2023-09-02
+  - ivory # failure in job https://hydra.nixos.org/build/233236762 at 2023-09-02
+  - ixdopp # failure in job https://hydra.nixos.org/build/233204986 at 2023-09-02
+  - ixmonad # failure in job https://hydra.nixos.org/build/233252940 at 2023-09-02
+  - ixshader # failure in job https://hydra.nixos.org/build/233247507 at 2023-09-02
+  - jack-bindings # failure in job https://hydra.nixos.org/build/233211671 at 2023-09-02
+  - JackMiniMix # failure in job https://hydra.nixos.org/build/233224671 at 2023-09-02
+  - jackminimix # failure in job https://hydra.nixos.org/build/233259985 at 2023-09-02
+  - jacobi-roots # failure in job https://hydra.nixos.org/build/233208856 at 2023-09-02
+  - jaeger-flamegraph # failure in job https://hydra.nixos.org/build/233249468 at 2023-09-02
+  - jail # failure in job https://hydra.nixos.org/build/233251033 at 2023-09-02
+  - jalla # failure in job https://hydra.nixos.org/build/233197939 at 2023-09-02
+  - jammittools # failure in job https://hydra.nixos.org/build/233192227 at 2023-09-02
+  - jarfind # failure in job https://hydra.nixos.org/build/233205367 at 2023-09-02
+  - jarify # failure in job https://hydra.nixos.org/build/233228020 at 2023-09-02
+  - jaskell # failure in job https://hydra.nixos.org/build/233236416 at 2023-09-02
+  - jason # failure in job https://hydra.nixos.org/build/233260078 at 2023-09-02
+  - java-adt # failure in job https://hydra.nixos.org/build/233256402 at 2023-09-02
+  - java-bridge # failure in job https://hydra.nixos.org/build/233219258 at 2023-09-02
+  - javascript-bridge # failure in job https://hydra.nixos.org/build/233217052 at 2023-09-02
+  - Javav # failure in job https://hydra.nixos.org/build/233243825 at 2023-09-02
+  - javav # failure in job https://hydra.nixos.org/build/233246644 at 2023-09-02
+  - jbi # failure in job https://hydra.nixos.org/build/233221466 at 2023-09-02
+  - jcdecaux-vls # failure in job https://hydra.nixos.org/build/233225142 at 2023-09-02
+  - Jdh # failure in job https://hydra.nixos.org/build/233251434 at 2023-09-02
+  - jdi # failure in job https://hydra.nixos.org/build/233238540 at 2023-09-02
+  - jenga # failure in job https://hydra.nixos.org/build/233191848 at 2023-09-02
+  - jenkinsPlugins2nix # failure in job https://hydra.nixos.org/build/233259520 at 2023-09-02
+  - jet-stream # failure in job https://hydra.nixos.org/build/233242983 at 2023-09-02
+  - Jikka # failure in job https://hydra.nixos.org/build/233204253 at 2023-09-02
+  - jinquantities # failure in job https://hydra.nixos.org/build/233205834 at 2023-09-02
+  - jmacro-rpc # failure in job https://hydra.nixos.org/build/233236314 at 2023-09-02
+  - jml-web-service # failure in job https://hydra.nixos.org/build/233225466 at 2023-09-02
+  - jni # failure in job https://hydra.nixos.org/build/233201106 at 2023-09-02
+  - join-api # failure in job https://hydra.nixos.org/build/233195265 at 2023-09-02
+  - joinlist # failure in job https://hydra.nixos.org/build/233248471 at 2023-09-02
+  - jonathanscard # failure in job https://hydra.nixos.org/build/233234239 at 2023-09-02
+  - jordan # failure in job https://hydra.nixos.org/build/233224727 at 2023-09-02
+  - jort # failure in job https://hydra.nixos.org/build/233195250 at 2023-09-02
+  - joy-rewrite # failure in job https://hydra.nixos.org/build/233201002 at 2023-09-02
+  - jpeg # failure in job https://hydra.nixos.org/build/233204056 at 2023-09-02
+  - jsaddle-clib # failure in job https://hydra.nixos.org/build/233203899 at 2023-09-02
+  - jsaddle-warp # failure in job https://hydra.nixos.org/build/233252373 at 2023-09-02
+  - jsaddle-wkwebview # failure in job https://hydra.nixos.org/build/233242986 at 2023-09-02
+  - js-good-parts # failure in job https://hydra.nixos.org/build/233198958 at 2023-09-02
+  - json2 # failure in job https://hydra.nixos.org/build/233242447 at 2023-09-02
+  - json-alt # failure in job https://hydra.nixos.org/build/233242230 at 2023-09-02
+  - json-api # failure in job https://hydra.nixos.org/build/233198171 at 2023-09-02
+  - json-api-lib # failure in job https://hydra.nixos.org/build/233210901 at 2023-09-02
+  - json-assertions # failure in job https://hydra.nixos.org/build/233196774 at 2023-09-02
+  - json-ast-quickcheck # failure in job https://hydra.nixos.org/build/233249099 at 2023-09-02
+  - JSONb # failure in job https://hydra.nixos.org/build/233231060 at 2023-09-02
+  - json-builder # failure in job https://hydra.nixos.org/build/233222400 at 2023-09-02
+  - json-bytes-builder # failure in job https://hydra.nixos.org/build/233238428 at 2023-09-02
+  - json-encoder # failure in job https://hydra.nixos.org/build/233194614 at 2023-09-02
+  - jsonextfilter # failure in job https://hydra.nixos.org/build/233194770 at 2023-09-02
+  - json-extra # failure in job https://hydra.nixos.org/build/233212026 at 2023-09-02
+  - json-fu # failure in job https://hydra.nixos.org/build/233221469 at 2023-09-02
+  - json-litobj # failure in job https://hydra.nixos.org/build/233234388 at 2023-09-02
+  - jsonlogic-aeson # failure in job https://hydra.nixos.org/build/233246828 at 2023-09-02
+  - jsonnet # failure in job https://hydra.nixos.org/build/233254884 at 2023-09-02
+  - json-pointer # failure in job https://hydra.nixos.org/build/233229617 at 2023-09-02
+  - json-pointy # failure in job https://hydra.nixos.org/build/233255533 at 2023-09-02
+  - json-python # failure in job https://hydra.nixos.org/build/233200964 at 2023-09-02
+  - json-qq # failure in job https://hydra.nixos.org/build/233196259 at 2023-09-02
+  - jsonresume # failure in job https://hydra.nixos.org/build/233202350 at 2023-09-02
+  - jsonrpc-conduit # failure in job https://hydra.nixos.org/build/233195089 at 2023-09-02
+  - json-rpc-generic # failure in job https://hydra.nixos.org/build/233201371 at 2023-09-02
+  - json-rpc-server # failure in job https://hydra.nixos.org/build/233201284 at 2023-09-02
+  - jsonrpc-tinyclient # failure in job https://hydra.nixos.org/build/233214174 at 2023-09-02
+  - jsonschema-gen # failure in job https://hydra.nixos.org/build/233225063 at 2023-09-02
+  - jsonsql # failure in job https://hydra.nixos.org/build/233255704 at 2023-09-02
+  - json-syntax # failure in job https://hydra.nixos.org/build/233250639 at 2023-09-02
+  - json-tools # failure in job https://hydra.nixos.org/build/233247019 at 2023-09-02
+  - json-tracer # failure in job https://hydra.nixos.org/build/233196632 at 2023-09-02
+  - jsontsv # failure in job https://hydra.nixos.org/build/233234129 at 2023-09-02
+  - jsonxlsx # failure in job https://hydra.nixos.org/build/233201772 at 2023-09-02
+  - jsop # failure in job https://hydra.nixos.org/build/233239247 at 2023-09-02
+  - judge # failure in job https://hydra.nixos.org/build/233231777 at 2023-09-02
+  - judy # failure in job https://hydra.nixos.org/build/233259826 at 2023-09-02
+  - JuicyPixels-blp # failure in job https://hydra.nixos.org/build/233220427 at 2023-09-02
+  - JuicyPixels-blurhash # failure in job https://hydra.nixos.org/build/233228377 at 2023-09-02
+  - JuicyPixels-canvas # failure in job https://hydra.nixos.org/build/233198693 at 2023-09-02
+  - JuicyPixels-util # failure in job https://hydra.nixos.org/build/233200460 at 2023-09-02
+  - jukebox # failure in job https://hydra.nixos.org/build/233195186 at 2023-09-02
+  - JunkDB # failure in job https://hydra.nixos.org/build/233203494 at 2023-09-02
+  - jupyter # failure in job https://hydra.nixos.org/build/233232429 at 2023-09-02
+  - justified-containers # failure in job https://hydra.nixos.org/build/233240362 at 2023-09-02
+  - JustParse # failure in job https://hydra.nixos.org/build/233257181 at 2023-09-02
+  - jvm-binary # failure in job https://hydra.nixos.org/build/233208537 at 2023-09-02
+  - jvm-parser # failure in job https://hydra.nixos.org/build/233201395 at 2023-09-02
+  - JYU-Utils # failure in job https://hydra.nixos.org/build/233204548 at 2023-09-02
+  - k8s-wrapper # failure in job https://hydra.nixos.org/build/233202485 at 2023-09-02
+  - kademlia # failure in job https://hydra.nixos.org/build/233250935 at 2023-09-02
+  - kafka-client # failure in job https://hydra.nixos.org/build/233243580 at 2023-09-02
+  - kafka-client-sync # failure in job https://hydra.nixos.org/build/233208699 at 2023-09-02
+  - Kalman # failure in job https://hydra.nixos.org/build/233210601 at 2023-09-02
+  - kalman # failure in job https://hydra.nixos.org/build/233226292 at 2023-09-02
+  - kangaroo # failure in job https://hydra.nixos.org/build/233222234 at 2023-09-02
+  - kanji # failure in job https://hydra.nixos.org/build/233208078 at 2023-09-02
+  - karabiner-config # failure in job https://hydra.nixos.org/build/233217813 at 2023-09-02
+  - karps # failure in job https://hydra.nixos.org/build/233243155 at 2023-09-02
+  - katip-datadog # failure in job https://hydra.nixos.org/build/233214346 at 2023-09-02
+  - katip-elasticsearch # failure in job https://hydra.nixos.org/build/233208410 at 2023-09-02
+  - katip-kafka # failure in job https://hydra.nixos.org/build/233241819 at 2023-09-02
+  - katip-logzio # failure in job https://hydra.nixos.org/build/233237068 at 2023-09-02
+  - katip-raven # failure in job https://hydra.nixos.org/build/233200300 at 2023-09-02
+  - katip-scalyr-scribe # failure in job https://hydra.nixos.org/build/233257038 at 2023-09-02
+  - katip-syslog # failure in job https://hydra.nixos.org/build/233238787 at 2023-09-02
+  - katt # failure in job https://hydra.nixos.org/build/233241058 at 2023-09-02
+  - katydid # failure in job https://hydra.nixos.org/build/233227524 at 2023-09-02
+  - kawaii # failure in job https://hydra.nixos.org/build/233205134 at 2023-09-02
+  - Kawaii-Parser # failure in job https://hydra.nixos.org/build/233222574 at 2023-09-02
+  - kawhi # failure in job https://hydra.nixos.org/build/233193086 at 2023-09-02
+  - kdesrc-build-extra # failure in job https://hydra.nixos.org/build/233193718 at 2023-09-02
+  - kd-tree # failure in job https://hydra.nixos.org/build/233207928 at 2023-09-02
+  - keccak # failure in job https://hydra.nixos.org/build/233200469 at 2023-09-02
+  - keenser # failure in job https://hydra.nixos.org/build/233200021 at 2023-09-02
+  - keera-hails-reactivevalues # failure in job https://hydra.nixos.org/build/233258391 at 2023-09-02
+  - keid-render-basic # failure in job https://hydra.nixos.org/build/233258215 at 2023-09-02
+  - keiretsu # failure in job https://hydra.nixos.org/build/233195563 at 2023-09-02
+  - kempe # failure in job https://hydra.nixos.org/build/233221290 at 2023-09-02
+  - kesha # failure in job https://hydra.nixos.org/build/233215581 at 2023-09-02
+  - Ketchup # failure in job https://hydra.nixos.org/build/233211862 at 2023-09-02
+  - kewar # failure in job https://hydra.nixos.org/build/233237574 at 2023-09-02
+  - keycloak-hs # failure in job https://hydra.nixos.org/build/233193019 at 2023-09-02
+  - keyed # failure in job https://hydra.nixos.org/build/233251186 at 2023-09-02
+  - khph # failure in job https://hydra.nixos.org/build/233258109 at 2023-09-02
+  - kickass-torrents-dump-parser # failure in job https://hydra.nixos.org/build/233210355 at 2023-09-02
+  - kickchan # failure in job https://hydra.nixos.org/build/233216091 at 2023-09-02
+  - kind-integer # failure in job https://hydra.nixos.org/build/233250066 at 2023-09-02
+  - kleene-list # failure in job https://hydra.nixos.org/build/233237651 at 2023-09-02
+  - kmn-programming # failure in job https://hydra.nixos.org/build/233258328 at 2023-09-02
+  - kmonad # failure in job https://hydra.nixos.org/build/233239997 at 2023-09-02
+  - kmp-dfa # failure in job https://hydra.nixos.org/build/233237266 at 2023-09-02
+  - knots # failure in job https://hydra.nixos.org/build/233209153 at 2023-09-02
+  - koellner-phonetic # failure in job https://hydra.nixos.org/build/233217750 at 2023-09-02
+  - koneko # failure in job https://hydra.nixos.org/build/233204838 at 2023-09-02
+  - Konf # failure in job https://hydra.nixos.org/build/233244880 at 2023-09-02
+  - konnakol # failure in job https://hydra.nixos.org/build/233221792 at 2023-09-02
+  - kontra-config # failure in job https://hydra.nixos.org/build/233193800 at 2023-09-02
+  - koofr-client # failure in job https://hydra.nixos.org/build/233255749 at 2023-09-02
+  - korea-holidays # failure in job https://hydra.nixos.org/build/233222677 at 2023-09-02
+  - kraken # failure in job https://hydra.nixos.org/build/233202384 at 2023-09-02
+  - krapsh # failure in job https://hydra.nixos.org/build/233219887 at 2023-09-02
+  - Kriens # failure in job https://hydra.nixos.org/build/233251673 at 2023-09-02
+  - krpc # failure in job https://hydra.nixos.org/build/233231587 at 2023-09-02
+  - KSP # failure in job https://hydra.nixos.org/build/233225102 at 2023-09-02
+  - ktx # failure in job https://hydra.nixos.org/build/233235924 at 2023-09-02
+  - kubernetes-client-core # failure in job https://hydra.nixos.org/build/233235252 at 2023-09-02
+  - kubernetes-webhook-haskell # failure in job https://hydra.nixos.org/build/233207675 at 2023-09-02
+  - kudzu # failure in job https://hydra.nixos.org/build/233230306 at 2023-09-02
+  - kuifje # failure in job https://hydra.nixos.org/build/233210240 at 2023-09-02
+  - kure # failure in job https://hydra.nixos.org/build/233197164 at 2023-09-02
+  - KyotoCabinet # failure in job https://hydra.nixos.org/build/233252460 at 2023-09-02
+  - l10n # failure in job https://hydra.nixos.org/build/233199064 at 2023-09-02
+  - labeled-graph # failure in job https://hydra.nixos.org/build/233241327 at 2023-09-02
+  - lambda2js # failure in job https://hydra.nixos.org/build/233221862 at 2023-09-02
+  - lambdaBase # failure in job https://hydra.nixos.org/build/233194002 at 2023-09-02
+  - lambdabot-telegram-plugins # failure in job https://hydra.nixos.org/build/234444260 at 2023-09-13
+  - lambdabot-utils # failure in job https://hydra.nixos.org/build/233224842 at 2023-09-02
+  - lambdabot-xmpp # failure in job https://hydra.nixos.org/build/233212018 at 2023-09-02
+  - lambda-bridge # failure in job https://hydra.nixos.org/build/233230630 at 2023-09-02
+  - lambda-calculator # failure in job https://hydra.nixos.org/build/233243971 at 2023-09-02
+  - lambda-canvas # failure in job https://hydra.nixos.org/build/234451929 at 2023-09-13
+  - lambdacms-core # failure in job https://hydra.nixos.org/build/233217257 at 2023-09-02
+  - lambdacube-core # failure in job https://hydra.nixos.org/build/233233440 at 2023-09-02
+  - lambdacube-engine # failure in job https://hydra.nixos.org/build/233223079 at 2023-09-02
+  - lambda-cube # failure in job https://hydra.nixos.org/build/233226812 at 2023-09-02
+  - lambdacube-ir # failure in job https://hydra.nixos.org/build/233210019 at 2023-09-02
+  - LambdaDesigner # failure in job https://hydra.nixos.org/build/233216338 at 2023-09-02
+  - Lambdajudge # failure in job https://hydra.nixos.org/build/233227016 at 2023-09-02
+  - LambdaNet # failure in job https://hydra.nixos.org/build/233197999 at 2023-09-02
+  - lambda-sampler # failure in job https://hydra.nixos.org/build/233205734 at 2023-09-02
+  - lambdatex # failure in job https://hydra.nixos.org/build/233215389 at 2023-09-02
+  - lambda-toolbox # failure in job https://hydra.nixos.org/build/233194921 at 2023-09-02
+  - lambdatwit # failure in job https://hydra.nixos.org/build/233219603 at 2023-09-02
+  - Lambdaya # failure in job https://hydra.nixos.org/build/233227702 at 2023-09-02
+  - lame # failure in job https://hydra.nixos.org/build/233250932 at 2023-09-02
+  - language-asn # failure in job https://hydra.nixos.org/build/233227929 at 2023-09-02
+  - language-c-comments # failure in job https://hydra.nixos.org/build/233234112 at 2023-09-02
+  - language-c-inline # failure in job https://hydra.nixos.org/build/233245990 at 2023-09-02
+  - language-conf # failure in job https://hydra.nixos.org/build/233208178 at 2023-09-02
+  - language-csharp # failure in job https://hydra.nixos.org/build/233240911 at 2023-09-02
+  - language-dart # failure in job https://hydra.nixos.org/build/233220340 at 2023-09-02
+  - language-dockerfile # failure in job https://hydra.nixos.org/build/233197924 at 2023-09-02
+  - language-elm # failure in job https://hydra.nixos.org/build/233214012 at 2023-09-02
+  - language-fortran # failure in job https://hydra.nixos.org/build/233205480 at 2023-09-02
+  - language-gcl # failure in job https://hydra.nixos.org/build/233218957 at 2023-09-02
+  - language-gemini # failure in job https://hydra.nixos.org/build/233211812 at 2023-09-02
+  - language-go # failure in job https://hydra.nixos.org/build/233194866 at 2023-09-02
+  - language-guess # failure in job https://hydra.nixos.org/build/233257420 at 2023-09-02
+  - language-hcl # failure in job https://hydra.nixos.org/build/233212998 at 2023-09-02
+  - language-java-classfile # failure in job https://hydra.nixos.org/build/233257021 at 2023-09-02
+  - language-js # failure in job https://hydra.nixos.org/build/233190676 at 2023-09-02
+  - language-lua2 # failure in job https://hydra.nixos.org/build/233197435 at 2023-09-02
+  - language-lua-qq # failure in job https://hydra.nixos.org/build/233194697 at 2023-09-02
+  - language-mixal # failure in job https://hydra.nixos.org/build/233226763 at 2023-09-02
+  - language-objc # failure in job https://hydra.nixos.org/build/233258340 at 2023-09-02
+  - language-ocaml # failure in job https://hydra.nixos.org/build/233238127 at 2023-09-02
+  - language-openscad # failure in job https://hydra.nixos.org/build/233201773 at 2023-09-02
+  - language-pig # failure in job https://hydra.nixos.org/build/233249886 at 2023-09-02
+  - language-rust # failure in job https://hydra.nixos.org/build/233194292 at 2023-09-02
+  - language-sally # failure in job https://hydra.nixos.org/build/233250891 at 2023-09-02
+  - language-sh # failure in job https://hydra.nixos.org/build/233249709 at 2023-09-02
+  - language-sqlite # failure in job https://hydra.nixos.org/build/233248845 at 2023-09-02
+  - language-sygus # failure in job https://hydra.nixos.org/build/233192608 at 2023-09-02
+  - language-typescript # failure in job https://hydra.nixos.org/build/233247703 at 2023-09-02
+  - language-webidl # failure in job https://hydra.nixos.org/build/233194656 at 2023-09-02
+  - laop # failure in job https://hydra.nixos.org/build/233204106 at 2023-09-02
+  - LargeCardinalHierarchy # failure in job https://hydra.nixos.org/build/233250339 at 2023-09-02
+  - large-generics # failure in job https://hydra.nixos.org/build/233210324 at 2023-09-02
+  - Lastik # failure in job https://hydra.nixos.org/build/233194460 at 2023-09-02
+  - latest-npm-version # failure in job https://hydra.nixos.org/build/233239108 at 2023-09-02
+  - latex-formulae-image # failure in job https://hydra.nixos.org/build/233251243 at 2023-09-02
+  - latex-svg-image # failure in job https://hydra.nixos.org/build/233239345 at 2023-09-02
+  - LATS # failure in job https://hydra.nixos.org/build/233248029 at 2023-09-02
+  - launchdarkly-server-sdk # failure in job https://hydra.nixos.org/build/233190791 at 2023-09-02
+  - launchpad-control # failure in job https://hydra.nixos.org/build/233219502 at 2023-09-02
+  - lawless-concurrent-machines # failure in job https://hydra.nixos.org/build/233225327 at 2023-09-02
+  - layers # failure in job https://hydra.nixos.org/build/233196766 at 2023-09-02
+  - layout-bootstrap # failure in job https://hydra.nixos.org/build/233223699 at 2023-09-02
+  - layout # failure in job https://hydra.nixos.org/build/233259626 at 2023-09-02
+  - layout-rules # failure in job https://hydra.nixos.org/build/233250716 at 2023-09-02
+  - lazify # failure in job https://hydra.nixos.org/build/233203655 at 2023-09-02
+  - lazyarray # failure in job https://hydra.nixos.org/build/233192440 at 2023-09-02
+  - lazyboy # failure in job https://hydra.nixos.org/build/233201158 at 2023-09-02
+  - lazy-hash # failure in job https://hydra.nixos.org/build/233211405 at 2023-09-02
+  - lazy-priority-queue # failure in job https://hydra.nixos.org/build/233211457 at 2023-09-02
+  - lazyset # failure in job https://hydra.nixos.org/build/233248383 at 2023-09-02
+  - l-bfgs-b # failure in job https://hydra.nixos.org/build/233258769 at 2023-09-02
+  - LC3 # failure in job https://hydra.nixos.org/build/233192513 at 2023-09-02
+  - lcs # failure in job https://hydra.nixos.org/build/233232193 at 2023-09-02
+  - ldif # failure in job https://hydra.nixos.org/build/233195577 at 2023-09-02
+  - ld-intervals # failure in job https://hydra.nixos.org/build/233216344 at 2023-09-02
+  - leaf # failure in job https://hydra.nixos.org/build/233212614 at 2023-09-02
+  - leapseconds # failure in job https://hydra.nixos.org/build/233253640 at 2023-09-02
+  - learn # failure in job https://hydra.nixos.org/build/233247385 at 2023-09-02
+  - Learning # failure in job https://hydra.nixos.org/build/233237137 at 2023-09-02
+  - learn-physics-examples # failure in job https://hydra.nixos.org/build/234444204 at 2023-09-13
+  - leetify # failure in job https://hydra.nixos.org/build/233200752 at 2023-09-02
+  - lendingclub # failure in job https://hydra.nixos.org/build/233239123 at 2023-09-02
+  - lens-datetime # failure in job https://hydra.nixos.org/build/233252409 at 2023-09-02
+  - lenses # failure in job https://hydra.nixos.org/build/233239109 at 2023-09-02
+  - lens-filesystem # failure in job https://hydra.nixos.org/build/233205074 at 2023-09-02
+  - lens-labels # failure in job https://hydra.nixos.org/build/233216003 at 2023-09-02
+  - lens-prelude # failure in job https://hydra.nixos.org/build/233220321 at 2023-09-02
+  - lens-process # failure in job https://hydra.nixos.org/build/233242948 at 2023-09-02
+  - lensref # failure in job https://hydra.nixos.org/build/233205479 at 2023-09-02
+  - lens-simple # failure in job https://hydra.nixos.org/build/233245452 at 2023-09-02
+  - lens-tell # failure in job https://hydra.nixos.org/build/233234619 at 2023-09-02
+  - lens-text-encoding # failure in job https://hydra.nixos.org/build/233222713 at 2023-09-02
+  - lens-th-rewrite # failure in job https://hydra.nixos.org/build/233201025 at 2023-09-02
+  - lens-time # failure in job https://hydra.nixos.org/build/233260007 at 2023-09-02
+  - lens-toml-parser # failure in job https://hydra.nixos.org/build/233216950 at 2023-09-02
+  - lens-tutorial # failure in job https://hydra.nixos.org/build/233220488 at 2023-09-02
+  - lens-typelevel # failure in job https://hydra.nixos.org/build/233225963 at 2023-09-02
+  - lens-xml # failure in job https://hydra.nixos.org/build/233245746 at 2023-09-02
+  - lenz-template # failure in job https://hydra.nixos.org/build/233206822 at 2023-09-02
+  - less-arbitrary # failure in job https://hydra.nixos.org/build/233231412 at 2023-09-02
+  - Level0 # failure in job https://hydra.nixos.org/build/233220758 at 2023-09-02
+  - level-monad # failure in job https://hydra.nixos.org/build/233257036 at 2023-09-02
+  - levmar # failure in job https://hydra.nixos.org/build/233254731 at 2023-09-02
+  - lfst # failure in job https://hydra.nixos.org/build/233240622 at 2023-09-02
+  - lhc # failure in job https://hydra.nixos.org/build/233220731 at 2023-09-02
+  - lhs2TeX-hl # failure in job https://hydra.nixos.org/build/233221405 at 2023-09-02
+  - lhslatex # failure in job https://hydra.nixos.org/build/233246375 at 2023-09-02
+  - LibClang # failure in job https://hydra.nixos.org/build/233194732 at 2023-09-02
+  - libexpect # failure in job https://hydra.nixos.org/build/233226545 at 2023-09-02
+  - libGenI # failure in job https://hydra.nixos.org/build/233240857 at 2023-09-02
+  - libhbb # failure in job https://hydra.nixos.org/build/233232186 at 2023-09-02
+  - libinfluxdb # failure in job https://hydra.nixos.org/build/233199457 at 2023-09-02
+  - libjenkins # failure in job https://hydra.nixos.org/build/233198788 at 2023-09-02
+  - libjwt-typed # failure in job https://hydra.nixos.org/build/233230163 at 2023-09-02
+  - libltdl # failure in job https://hydra.nixos.org/build/233225728 at 2023-09-02
+  - libmdbx # failure in job https://hydra.nixos.org/build/233208793 at 2023-09-02
+  - liboath-hs # failure in job https://hydra.nixos.org/build/233229056 at 2023-09-02
+  - liboleg # failure in job https://hydra.nixos.org/build/233226133 at 2023-09-02
+  - libpafe # failure in job https://hydra.nixos.org/build/233202070 at 2023-09-02
+  - libphonenumber # failure in job https://hydra.nixos.org/build/233251839 at 2023-09-02
+  - libpq # failure in job https://hydra.nixos.org/build/233192542 at 2023-09-02
+  - librandomorg # failure in job https://hydra.nixos.org/build/233232749 at 2023-09-02
+  - libsecp256k1 # failure in job https://hydra.nixos.org/build/234441559 at 2023-09-13
+  - libsystemd-daemon # failure in job https://hydra.nixos.org/build/233207090 at 2023-09-02
+  - libtagc # failure in job https://hydra.nixos.org/build/233223631 at 2023-09-02
+  - libtelnet # failure in job https://hydra.nixos.org/build/233209594 at 2023-09-02
+  - libxls # failure in job https://hydra.nixos.org/build/233257847 at 2023-09-02
+  - libxlsxwriter-hs # failure in job https://hydra.nixos.org/build/233244798 at 2023-09-02
+  - libxslt # failure in job https://hydra.nixos.org/build/233248464 at 2023-09-02
+  - libyaml-streamly # failure in job https://hydra.nixos.org/build/233203611 at 2023-09-02
+  - libzfs # failure in job https://hydra.nixos.org/build/233662945 at 2023-09-02
+  - licensor # failure in job https://hydra.nixos.org/build/233248660 at 2023-09-02
+  - lie # failure in job https://hydra.nixos.org/build/233228953 at 2023-09-02
+  - life-sync # failure in job https://hydra.nixos.org/build/233241402 at 2023-09-02
+  - lifetimes # failure in job https://hydra.nixos.org/build/233259483 at 2023-09-02
+  - lifted-protolude # failure in job https://hydra.nixos.org/build/233253040 at 2023-09-02
+  - lifter # failure in job https://hydra.nixos.org/build/234448104 at 2023-09-13
+  - ligature # failure in job https://hydra.nixos.org/build/233212688 at 2023-09-02
+  - light # failure in job https://hydra.nixos.org/build/233193643 at 2023-09-02
+  - lilypond # failure in job https://hydra.nixos.org/build/233221478 at 2023-09-02
+  - Limit # failure in job https://hydra.nixos.org/build/233229268 at 2023-09-02
+  - limp-cbc # failure in job https://hydra.nixos.org/build/233201076 at 2023-09-02
+  - linda # failure in job https://hydra.nixos.org/build/233249512 at 2023-09-02
+  - linden # failure in job https://hydra.nixos.org/build/233198590 at 2023-09-02
+  - linear-algebra-cblas # failure in job https://hydra.nixos.org/build/233239710 at 2023-09-02
+  - linear-maps # failure in job https://hydra.nixos.org/build/233258332 at 2023-09-02
+  - linear-opengl # failure in job https://hydra.nixos.org/build/233237268 at 2023-09-02
+  - linearscan # failure in job https://hydra.nixos.org/build/233257541 at 2023-09-02
+  - linear-socket # failure in job https://hydra.nixos.org/build/233192053 at 2023-09-02
+  - linear-vect # failure in job https://hydra.nixos.org/build/233252054 at 2023-09-02
+  - line-bot-sdk # failure in job https://hydra.nixos.org/build/233195852 at 2023-09-02
+  - line-drawing # failure in job https://hydra.nixos.org/build/233228389 at 2023-09-02
+  - line-indexed-cursor # failure in job https://hydra.nixos.org/build/233210607 at 2023-09-02
+  - linenoise # failure in job https://hydra.nixos.org/build/233224730 at 2023-09-02
+  - lines-of-action # failure in job https://hydra.nixos.org/build/233244937 at 2023-09-02
+  - lingo # failure in job https://hydra.nixos.org/build/233254522 at 2023-09-02
+  - linguistic-ordinals # failure in job https://hydra.nixos.org/build/233228974 at 2023-09-02
+  - linkedhashmap # failure in job https://hydra.nixos.org/build/233234634 at 2023-09-02
+  - linked-list-with-iterator # failure in job https://hydra.nixos.org/build/233220466 at 2023-09-02
+  - linklater # failure in job https://hydra.nixos.org/build/233220508 at 2023-09-02
+  - linode # failure in job https://hydra.nixos.org/build/233256512 at 2023-09-02
+  - linode-v4 # failure in job https://hydra.nixos.org/build/233238195 at 2023-09-02
+  - linux-blkid # failure in job https://hydra.nixos.org/build/233220151 at 2023-09-02
+  - linux-cgroup # failure in job https://hydra.nixos.org/build/233224448 at 2023-09-02
+  - linux-evdev # failure in job https://hydra.nixos.org/build/233259196 at 2023-09-02
+  - linux-kmod # failure in job https://hydra.nixos.org/build/233205933 at 2023-09-02
+  - linux-perf # failure in job https://hydra.nixos.org/build/233193731 at 2023-09-02
+  - linux-xattr # failure in job https://hydra.nixos.org/build/233226493 at 2023-09-02
+  - linx-gateway # failure in job https://hydra.nixos.org/build/233220744 at 2023-09-02
+  - lio-simple # failure in job https://hydra.nixos.org/build/233200711 at 2023-09-02
+  - lipsum-gen # failure in job https://hydra.nixos.org/build/233233734 at 2023-09-02
+  - liquid # failure in job https://hydra.nixos.org/build/233255883 at 2023-09-02
+  - liquid-fixpoint # failure in job https://hydra.nixos.org/build/233213637 at 2023-09-02
+  - liquidhaskell-cabal # failure in job https://hydra.nixos.org/build/233249946 at 2023-09-02
+  - Liquorice # failure in job https://hydra.nixos.org/build/233193923 at 2023-09-02
+  - list-fusion-probe # failure in job https://hydra.nixos.org/build/233236587 at 2023-09-02
+  - listlike-instances # failure in job https://hydra.nixos.org/build/233238303 at 2023-09-02
+  - list-mux # failure in job https://hydra.nixos.org/build/233206407 at 2023-09-02
+  - list-prompt # failure in job https://hydra.nixos.org/build/233235855 at 2023-09-02
+  - list-t-http-client # failure in job https://hydra.nixos.org/build/233239262 at 2023-09-02
+  - list-t-libcurl # failure in job https://hydra.nixos.org/build/233237389 at 2023-09-02
+  - list-tries # failure in job https://hydra.nixos.org/build/233250041 at 2023-09-02
+  - list-t-text # failure in job https://hydra.nixos.org/build/233235451 at 2023-09-02
+  - list-zip-def # failure in job https://hydra.nixos.org/build/233202564 at 2023-09-02
+  - list-zipper # failure in job https://hydra.nixos.org/build/233250766 at 2023-09-02
+  - literals # failure in job https://hydra.nixos.org/build/233233709 at 2023-09-02
+  - LiterateMarkdown # failure in job https://hydra.nixos.org/build/233233229 at 2023-09-02
+  - little-earley # failure in job https://hydra.nixos.org/build/233197880 at 2023-09-02
+  - ll-picosat # failure in job https://hydra.nixos.org/build/233206257 at 2023-09-02
+  - llsd # failure in job https://hydra.nixos.org/build/233241590 at 2023-09-02
+  - llvm-base # failure in job https://hydra.nixos.org/build/233244366 at 2023-09-02
+  - llvm-general-pure # failure in job https://hydra.nixos.org/build/233246430 at 2023-09-02
+  - llvm-hs # failure in job https://hydra.nixos.org/build/233205149 at 2023-09-02
+  - llvm-ht # failure in job https://hydra.nixos.org/build/233203770 at 2023-09-02
+  - llvm-party # failure in job https://hydra.nixos.org/build/233221113 at 2023-09-02
+  - llvm-pretty # failure in job https://hydra.nixos.org/build/233206445 at 2023-09-02
+  - llvm-tf # failure in job https://hydra.nixos.org/build/233211770 at 2023-09-02
+  - lmdb-high-level # failure in job https://hydra.nixos.org/build/233238988 at 2023-09-02
+  - lmdb-simple # failure in job https://hydra.nixos.org/build/233206781 at 2023-09-02
+  - lmonad # failure in job https://hydra.nixos.org/build/233246737 at 2023-09-02
+  - lnurl # failure in job https://hydra.nixos.org/build/233217638 at 2023-09-02
+  - load-balancing # failure in job https://hydra.nixos.org/build/233206458 at 2023-09-02
+  - load-font # failure in job https://hydra.nixos.org/build/233255666 at 2023-09-02
+  - local-address # failure in job https://hydra.nixos.org/build/233247765 at 2023-09-02
+  - located # failure in job https://hydra.nixos.org/build/233234945 at 2023-09-02
+  - located-monad-logger # failure in job https://hydra.nixos.org/build/233194551 at 2023-09-02
+  - loch # failure in job https://hydra.nixos.org/build/233248876 at 2023-09-02
+  - loc-test # failure in job https://hydra.nixos.org/build/233198477 at 2023-09-02
+  - log2json # failure in job https://hydra.nixos.org/build/233211819 at 2023-09-02
+  - log-effect # failure in job https://hydra.nixos.org/build/233211329 at 2023-09-02
+  - logentries # failure in job https://hydra.nixos.org/build/233215590 at 2023-09-02
+  - logger # failure in job https://hydra.nixos.org/build/233237524 at 2023-09-02
+  - logging-effect-extra-file # failure in job https://hydra.nixos.org/build/233225200 at 2023-09-02
+  - logging-effect-extra-handler # failure in job https://hydra.nixos.org/build/233232054 at 2023-09-02
+  - Logic # failure in job https://hydra.nixos.org/build/233206217 at 2023-09-02
+  - logicst # failure in job https://hydra.nixos.org/build/233250253 at 2023-09-02
+  - logict-sequence # failure in job https://hydra.nixos.org/build/233224789 at 2023-09-02
+  - logplex-parse # failure in job https://hydra.nixos.org/build/233248727 at 2023-09-02
+  - log-warper # failure in job https://hydra.nixos.org/build/233220417 at 2023-09-02
+  - lojbanParser # failure in job https://hydra.nixos.org/build/233236082 at 2023-09-02
+  - lojbanXiragan # failure in job https://hydra.nixos.org/build/233258779 at 2023-09-02
+  - lol-calculus # failure in job https://hydra.nixos.org/build/233233910 at 2023-09-02
+  - longboi # failure in job https://hydra.nixos.org/build/233233913 at 2023-09-02
+  - long-double # failure in job https://hydra.nixos.org/build/233246069 at 2023-09-02
+  - lookup-tables # failure in job https://hydra.nixos.org/build/233196965 at 2023-09-02
+  - loopbreaker # failure in job https://hydra.nixos.org/build/233235857 at 2023-09-02
+  - loop-dsl # failure in job https://hydra.nixos.org/build/233198743 at 2023-09-02
+  - looper # failure in job https://hydra.nixos.org/build/233254482 at 2023-09-02
+  - loops # failure in job https://hydra.nixos.org/build/233238771 at 2023-09-02
+  - loop-while # failure in job https://hydra.nixos.org/build/233198041 at 2023-09-02
+  - loopy # failure in job https://hydra.nixos.org/build/233227154 at 2023-09-02
+  - lord # failure in job https://hydra.nixos.org/build/233226478 at 2023-09-02
+  - lorem # failure in job https://hydra.nixos.org/build/233255922 at 2023-09-02
+  - loris # failure in job https://hydra.nixos.org/build/233250801 at 2023-09-02
+  - loshadka # failure in job https://hydra.nixos.org/build/233239546 at 2023-09-02
+  - louis # failure in job https://hydra.nixos.org/build/233227705 at 2023-09-02
+  - lowgl # failure in job https://hydra.nixos.org/build/233216216 at 2023-09-02
+  - lp-diagrams-svg # failure in job https://hydra.nixos.org/build/233220097 at 2023-09-02
+  - lrucaching # failure in job https://hydra.nixos.org/build/233252034 at 2023-09-02
+  - LRU # failure in job https://hydra.nixos.org/build/233206273 at 2023-09-02
+  - lscabal # failure in job https://hydra.nixos.org/build/233253536 at 2023-09-02
+  - L-seed # failure in job https://hydra.nixos.org/build/233222324 at 2023-09-02
+  - lsfrom # failure in job https://hydra.nixos.org/build/233211705 at 2023-09-02
+  - lsh # failure in job https://hydra.nixos.org/build/233256686 at 2023-09-02
+  - lsp-client # failure in job https://hydra.nixos.org/build/233219871 at 2023-09-02
+  - ltiv1p1 # failure in job https://hydra.nixos.org/build/233200883 at 2023-09-02
+  - ltk # failure in job https://hydra.nixos.org/build/233244152 at 2023-09-02
+  - LTS # failure in job https://hydra.nixos.org/build/233206427 at 2023-09-02
+  - lua-bc # failure in job https://hydra.nixos.org/build/233214532 at 2023-09-02
+  - luautils # failure in job https://hydra.nixos.org/build/233250269 at 2023-09-02
+  - lucid2-htmx # failure in job https://hydra.nixos.org/build/233196674 at 2023-09-02
+  - lucid-alpine # failure in job https://hydra.nixos.org/build/233199500 at 2023-09-02
+  - lucid-aria # failure in job https://hydra.nixos.org/build/233231489 at 2023-09-02
+  - lucid-hyperscript # failure in job https://hydra.nixos.org/build/233191616 at 2023-09-02
+  - luhn # failure in job https://hydra.nixos.org/build/233237661 at 2023-09-02
+  - luis-client # failure in job https://hydra.nixos.org/build/233244540 at 2023-09-02
+  - luka # failure in job https://hydra.nixos.org/build/233235403 at 2023-09-02
+  - luminance # failure in job https://hydra.nixos.org/build/233233551 at 2023-09-02
+  - lushtags # failure in job https://hydra.nixos.org/build/233225015 at 2023-09-02
+  - luthor # failure in job https://hydra.nixos.org/build/233210797 at 2023-09-02
+  - lvmlib # failure in job https://hydra.nixos.org/build/233200386 at 2023-09-02
+  - lvmrun # failure in job https://hydra.nixos.org/build/233235284 at 2023-09-02
+  - lxd-client-config # failure in job https://hydra.nixos.org/build/233225008 at 2023-09-02
+  - lxd-client # failure in job https://hydra.nixos.org/build/233231826 at 2023-09-02
+  - lye # failure in job https://hydra.nixos.org/build/233229866 at 2023-09-02
+  - lz4-frame-conduit # failure in job https://hydra.nixos.org/build/233225578 at 2023-09-02
+  - lzip # failure in job https://hydra.nixos.org/build/233215027 at 2023-09-02
+  - lzlib # failure in job https://hydra.nixos.org/build/233203879 at 2023-09-02
+  - lzma-streams # failure in job https://hydra.nixos.org/build/233229106 at 2023-09-02
+  - lzo # failure in job https://hydra.nixos.org/build/233200657 at 2023-09-02
+  - maam # failure in job https://hydra.nixos.org/build/233228184 at 2023-09-02
+  - macaroon-shop # failure in job https://hydra.nixos.org/build/233204165 at 2023-09-02
+  - mac # failure in job https://hydra.nixos.org/build/233231421 at 2023-09-02
+  - machinecell # failure in job https://hydra.nixos.org/build/233222871 at 2023-09-02
+  - machines-attoparsec # failure in job https://hydra.nixos.org/build/233253893 at 2023-09-02
+  - machines-binary # failure in job https://hydra.nixos.org/build/233238332 at 2023-09-02
+  - machines-bytestring # failure in job https://hydra.nixos.org/build/233256615 at 2023-09-02
+  - machines-encoding # failure in job https://hydra.nixos.org/build/233225978 at 2023-09-02
+  - machines-io # failure in job https://hydra.nixos.org/build/233214374 at 2023-09-02
+  - machines-zlib # failure in job https://hydra.nixos.org/build/233204363 at 2023-09-02
+  - macho # failure in job https://hydra.nixos.org/build/233192820 at 2023-09-02
+  - maclight # failure in job https://hydra.nixos.org/build/233230574 at 2023-09-02
+  - macos-corelibs # failure in job https://hydra.nixos.org/build/233211307 at 2023-09-02
+  - macrm # failure in job https://hydra.nixos.org/build/233222582 at 2023-09-02
+  - madlang # failure in job https://hydra.nixos.org/build/233253603 at 2023-09-02
+  - mage # failure in job https://hydra.nixos.org/build/233226696 at 2023-09-02
+  - MagicHaskeller # failure in job https://hydra.nixos.org/build/233192169 at 2023-09-02
+  - magic-tyfams # failure in job https://hydra.nixos.org/build/233218287 at 2023-09-02
+  - mailchimp # failure in job https://hydra.nixos.org/build/233222458 at 2023-09-02
+  - mailchimp-subscribe # failure in job https://hydra.nixos.org/build/233192581 at 2023-09-02
+  - makedo # failure in job https://hydra.nixos.org/build/233244893 at 2023-09-02
+  - makefile # failure in job https://hydra.nixos.org/build/233207515 at 2023-09-02
+  - make-hard-links # failure in job https://hydra.nixos.org/build/233213014 at 2023-09-02
+  - make-monofoldable-foldable # failure in job https://hydra.nixos.org/build/233235683 at 2023-09-02
+  - mallard # failure in job https://hydra.nixos.org/build/233208248 at 2023-09-02
+  - mandulia # failure in job https://hydra.nixos.org/build/234446158 at 2023-09-13
+  - manifolds # failure in job https://hydra.nixos.org/build/233244103 at 2023-09-02
+  - mapalgebra # failure in job https://hydra.nixos.org/build/233215542 at 2023-09-02
+  - map-exts # failure in job https://hydra.nixos.org/build/233247423 at 2023-09-02
+  - Mapping # failure in job https://hydra.nixos.org/build/233248158 at 2023-09-02
+  - mappy # failure in job https://hydra.nixos.org/build/233250202 at 2023-09-02
+  - map-reduce-folds # failure in job https://hydra.nixos.org/build/233245163 at 2023-09-02
+  - MapWith # failure in job https://hydra.nixos.org/build/233237146 at 2023-09-02
+  - markdown-kate # failure in job https://hydra.nixos.org/build/233227051 at 2023-09-02
+  - marked-pretty # failure in job https://hydra.nixos.org/build/233193892 at 2023-09-02
+  - markov-realization # failure in job https://hydra.nixos.org/build/233234901 at 2023-09-02
+  - mars # failure in job https://hydra.nixos.org/build/234449730 at 2023-09-13
+  - marshal-contt # failure in job https://hydra.nixos.org/build/233231755 at 2023-09-02
+  - marvin-interpolate # failure in job https://hydra.nixos.org/build/233201000 at 2023-09-02
+  - MASMGen # failure in job https://hydra.nixos.org/build/233213454 at 2023-09-02
+  - massiv-scheduler # failure in job https://hydra.nixos.org/build/233196778 at 2023-09-02
+  - massiv-serialise # failure in job https://hydra.nixos.org/build/233242284 at 2023-09-02
+  - master-plan # failure in job https://hydra.nixos.org/build/233208718 at 2023-09-02
+  - matcher # failure in job https://hydra.nixos.org/build/233198640 at 2023-09-02
+  - mathflow # failure in job https://hydra.nixos.org/build/233195457 at 2023-09-02
+  - math-grads # failure in job https://hydra.nixos.org/build/233222629 at 2023-09-02
+  - math-interpolate # failure in job https://hydra.nixos.org/build/233225629 at 2023-09-02
+  - math-metric # failure in job https://hydra.nixos.org/build/233225394 at 2023-09-02
+  - math-programming # failure in job https://hydra.nixos.org/build/233217072 at 2023-09-02
+  - matrix-as-xyz # failure in job https://hydra.nixos.org/build/233196953 at 2023-09-02
+  - matrix-lens # failure in job https://hydra.nixos.org/build/233259955 at 2023-09-02
+  - matrix-market # failure in job https://hydra.nixos.org/build/233237011 at 2023-09-02
+  - matrix-sized # failure in job https://hydra.nixos.org/build/233211908 at 2023-09-02
+  - matroid # failure in job https://hydra.nixos.org/build/233244169 at 2023-09-02
+  - maude # failure in job https://hydra.nixos.org/build/233204879 at 2023-09-02
+  - maxent-learner-hw # failure in job https://hydra.nixos.org/build/233239586 at 2023-09-02
+  - maybench # failure in job https://hydra.nixos.org/build/233239576 at 2023-09-02
+  - MaybeT # failure in job https://hydra.nixos.org/build/233253183 at 2023-09-02
+  - MaybeT-monads-tf # failure in job https://hydra.nixos.org/build/233238946 at 2023-09-02
+  - MaybeT-transformers # failure in job https://hydra.nixos.org/build/233191283 at 2023-09-02
+  - MazesOfMonad # failure in job https://hydra.nixos.org/build/233200182 at 2023-09-02
+  - MBot # failure in job https://hydra.nixos.org/build/233248312 at 2023-09-02
+  - mbox-tools # failure in job https://hydra.nixos.org/build/233207558 at 2023-09-02
+  - mbtiles # failure in job https://hydra.nixos.org/build/233237721 at 2023-09-02
+  - mbug # failure in job https://hydra.nixos.org/build/233242212 at 2023-09-02
+  - mcl # failure in job https://hydra.nixos.org/build/233193943 at 2023-09-02
+  - mcmaster-gloss-examples # failure in job https://hydra.nixos.org/build/234457610 at 2023-09-13
+  - mcmc-synthesis # failure in job https://hydra.nixos.org/build/233208414 at 2023-09-02
+  - mcm # failure in job https://hydra.nixos.org/build/233229087 at 2023-09-02
+  - mcpi # failure in job https://hydra.nixos.org/build/233231465 at 2023-09-02
+  - mdapi # failure in job https://hydra.nixos.org/build/233257724 at 2023-09-02
+  - mdcat # failure in job https://hydra.nixos.org/build/233249429 at 2023-09-02
+  - mdp # failure in job https://hydra.nixos.org/build/233246226 at 2023-09-02
+  - mealstrom # failure in job https://hydra.nixos.org/build/233253540 at 2023-09-02
+  - mealy # failure in job https://hydra.nixos.org/build/233260135 at 2023-09-02
+  - MeanShift # failure in job https://hydra.nixos.org/build/233194760 at 2023-09-02
+  - Measure # failure in job https://hydra.nixos.org/build/233231838 at 2023-09-02
+  - mecab # failure in job https://hydra.nixos.org/build/233194280 at 2023-09-02
+  - Mecha # failure in job https://hydra.nixos.org/build/233243480 at 2023-09-02
+  - mech # failure in job https://hydra.nixos.org/build/233238723 at 2023-09-02
+  - mechs # failure in job https://hydra.nixos.org/build/233241727 at 2023-09-02
+  - Mechs # failure in job https://hydra.nixos.org/build/233254531 at 2023-09-02
+  - mediabus # failure in job https://hydra.nixos.org/build/233259544 at 2023-09-02
+  - mediawiki # failure in job https://hydra.nixos.org/build/233213178 at 2023-09-02
+  - medium-sdk-haskell # failure in job https://hydra.nixos.org/build/233195507 at 2023-09-02
+  - meep # failure in job https://hydra.nixos.org/build/233193144 at 2023-09-02
+  - megalisp # failure in job https://hydra.nixos.org/build/233234992 at 2023-09-02
+  - megastore # failure in job https://hydra.nixos.org/build/233222876 at 2023-09-02
+  - mellon-core # failure in job https://hydra.nixos.org/build/233221666 at 2023-09-02
+  - melody # failure in job https://hydra.nixos.org/build/233223241 at 2023-09-02
+  - membrain # failure in job https://hydra.nixos.org/build/233248480 at 2023-09-02
+  - memcached-binary # failure in job https://hydra.nixos.org/build/233192281 at 2023-09-02
+  - memcached # failure in job https://hydra.nixos.org/build/233190993 at 2023-09-02
+  - memcache-haskell # failure in job https://hydra.nixos.org/build/233211839 at 2023-09-02
+  - meminfo # failure in job https://hydra.nixos.org/build/233201130 at 2023-09-02
+  - memis # failure in job https://hydra.nixos.org/build/233207107 at 2023-09-02
+  - memoization-utils # failure in job https://hydra.nixos.org/build/233220093 at 2023-09-02
+  - memo-ptr # failure in job https://hydra.nixos.org/build/233216357 at 2023-09-02
+  - memorable-bits # failure in job https://hydra.nixos.org/build/233247877 at 2023-09-02
+  - memorypool # failure in job https://hydra.nixos.org/build/233193107 at 2023-09-02
+  - memo-sqlite # failure in job https://hydra.nixos.org/build/233243897 at 2023-09-02
+  - menoh # failure in job https://hydra.nixos.org/build/233238503 at 2023-09-02
+  - menshen # failure in job https://hydra.nixos.org/build/233217324 at 2023-09-02
+  - mercury-api # failure in job https://hydra.nixos.org/build/233229812 at 2023-09-02
+  - mergeful-persistent # failure in job https://hydra.nixos.org/build/233221803 at 2023-09-02
+  - mergeless-persistent # failure in job https://hydra.nixos.org/build/233235114 at 2023-09-02
+  - messagepack-rpc # failure in job https://hydra.nixos.org/build/233254653 at 2023-09-02
+  - messente # failure in job https://hydra.nixos.org/build/233195598 at 2023-09-02
+  - metadata # failure in job https://hydra.nixos.org/build/233246079 at 2023-09-02
+  - MetaHDBC # failure in job https://hydra.nixos.org/build/233258864 at 2023-09-02
+  - metaheuristics # failure in job https://hydra.nixos.org/build/233248251 at 2023-09-02
+  - meta-misc # failure in job https://hydra.nixos.org/build/233248305 at 2023-09-02
+  - meta-par # failure in job https://hydra.nixos.org/build/233227886 at 2023-09-02
+  - method # failure in job https://hydra.nixos.org/build/233230721 at 2023-09-02
+  - metric # failure in job https://hydra.nixos.org/build/233224295 at 2023-09-02
+  - metricsd-client # failure in job https://hydra.nixos.org/build/233217951 at 2023-09-02
+  - mezzo # failure in job https://hydra.nixos.org/build/233223341 at 2023-09-02
+  - mezzolens # failure in job https://hydra.nixos.org/build/233248307 at 2023-09-02
+  - mgeneric # failure in job https://hydra.nixos.org/build/233197809 at 2023-09-02
+  - MHask # failure in job https://hydra.nixos.org/build/233232401 at 2023-09-02
+  - miconix-test # failure in job https://hydra.nixos.org/build/233230738 at 2023-09-02
+  - microbase # failure in job https://hydra.nixos.org/build/233204368 at 2023-09-02
+  - microformats2-parser # failure in job https://hydra.nixos.org/build/233238485 at 2023-09-02
+  - microgroove # failure in job https://hydra.nixos.org/build/233196933 at 2023-09-02
+  - microlens-each # failure in job https://hydra.nixos.org/build/233253621 at 2023-09-02
+  - microlens-process # failure in job https://hydra.nixos.org/build/233190805 at 2023-09-02
+  - micrologger # failure in job https://hydra.nixos.org/build/233196212 at 2023-09-02
+  - micro-recursion-schemes # failure in job https://hydra.nixos.org/build/233214118 at 2023-09-02
+  - microsoft-translator # failure in job https://hydra.nixos.org/build/233235928 at 2023-09-02
+  - mida # failure in job https://hydra.nixos.org/build/233223244 at 2023-09-02
+  - midi-simple # failure in job https://hydra.nixos.org/build/233219079 at 2023-09-02
+  - midisurface # failure in job https://hydra.nixos.org/build/233224559 at 2023-09-02
+  - midi-utils # failure in job https://hydra.nixos.org/build/233222257 at 2023-09-02
+  - mi # failure in job https://hydra.nixos.org/build/233227735 at 2023-09-02
+  - mighttpd2 # failure in job https://hydra.nixos.org/build/233213125 at 2023-09-02
+  - migrant-postgresql-simple # failure in job https://hydra.nixos.org/build/233191795 at 2023-09-02
+  - mikmod # failure in job https://hydra.nixos.org/build/233247364 at 2023-09-02
+  - mikrokosmos # failure in job https://hydra.nixos.org/build/233232143 at 2023-09-02
+  - miku # failure in job https://hydra.nixos.org/build/233212186 at 2023-09-02
+  - milena # failure in job https://hydra.nixos.org/build/233257533 at 2023-09-02
+  - mime-directory # failure in job https://hydra.nixos.org/build/233209691 at 2023-09-02
+  - MiniAgda # failure in job https://hydra.nixos.org/build/233259586 at 2023-09-02
+  - miniforth # failure in job https://hydra.nixos.org/build/233220853 at 2023-09-02
+  - minilens # failure in job https://hydra.nixos.org/build/233191347 at 2023-09-02
+  - minions # failure in job https://hydra.nixos.org/build/233246840 at 2023-09-02
+  - miniplex # failure in job https://hydra.nixos.org/build/233241976 at 2023-09-02
+  - ministg # failure in job https://hydra.nixos.org/build/233214109 at 2023-09-02
+  - minizinc-process # failure in job https://hydra.nixos.org/build/233211497 at 2023-09-02
+  - minst-idx # failure in job https://hydra.nixos.org/build/233259901 at 2023-09-02
+  - mios # failure in job https://hydra.nixos.org/build/233251863 at 2023-09-02
+  - MIP # failure in job https://hydra.nixos.org/build/233199688 at 2023-09-02
+  - mirror-tweet # failure in job https://hydra.nixos.org/build/233216951 at 2023-09-02
+  - mismi-p # failure in job https://hydra.nixos.org/build/233257227 at 2023-09-02
+  - miso-action-logger # failure in job https://hydra.nixos.org/build/233229061 at 2023-09-02
+  - miso-examples # failure in job https://hydra.nixos.org/build/233237380 at 2023-09-02
+  - mit-3qvpPyAi6mH # failure in job https://hydra.nixos.org/build/233229967 at 2023-09-02
+  - mix-arrows # failure in job https://hydra.nixos.org/build/233257720 at 2023-09-02
+  - mixpanel-client # failure in job https://hydra.nixos.org/build/233220132 at 2023-09-02
+  - mkcabal # failure in job https://hydra.nixos.org/build/233202466 at 2023-09-02
+  - mltool # failure in job https://hydra.nixos.org/build/233203849 at 2023-09-02
+  - ml-w # failure in job https://hydra.nixos.org/build/233251342 at 2023-09-02
+  - mm2 # failure in job https://hydra.nixos.org/build/233260048 at 2023-09-02
+  - mmsyn2 # failure in job https://hydra.nixos.org/build/233201519 at 2023-09-02
+  - mmsyn4 # failure in job https://hydra.nixos.org/build/233241446 at 2023-09-02
+  - mmsyn6ukr-array # failure in job https://hydra.nixos.org/build/233212068 at 2023-09-02
+  - mmsyn7ukr-common # failure in job https://hydra.nixos.org/build/233249446 at 2023-09-02
+  - mmtf # failure in job https://hydra.nixos.org/build/233190851 at 2023-09-02
+  - mmtl # failure in job https://hydra.nixos.org/build/233235862 at 2023-09-02
+  - mmzk-typeid # failure in job https://hydra.nixos.org/build/233258612 at 2023-09-02
+  - Mobile-Legends-Hack-Cheats # failure in job https://hydra.nixos.org/build/233194849 at 2023-09-02
+  - mockazo # failure in job https://hydra.nixos.org/build/233234923 at 2023-09-02
+  - mock-httpd # failure in job https://hydra.nixos.org/build/233191481 at 2023-09-02
+  - modbus-tcp # failure in job https://hydra.nixos.org/build/233230661 at 2023-09-02
+  - model # failure in job https://hydra.nixos.org/build/233211330 at 2023-09-02
+  - modelicaparser # failure in job https://hydra.nixos.org/build/233207575 at 2023-09-02
+  - modular-prelude # failure in job https://hydra.nixos.org/build/233210510 at 2023-09-02
+  - module-management # failure in job https://hydra.nixos.org/build/233198407 at 2023-09-02
+  - modulespection # failure in job https://hydra.nixos.org/build/233206138 at 2023-09-02
+  - MoeDict # failure in job https://hydra.nixos.org/build/233255252 at 2023-09-02
+  - moe # failure in job https://hydra.nixos.org/build/233253151 at 2023-09-02
+  - Moe # failure in job https://hydra.nixos.org/build/234446604 at 2023-09-13
+  - moesocks # failure in job https://hydra.nixos.org/build/233258741 at 2023-09-02
+  - mohws # failure in job https://hydra.nixos.org/build/233246088 at 2023-09-02
+  - mollie-api-haskell # failure in job https://hydra.nixos.org/build/233200867 at 2023-09-02
+  - monadacme # failure in job https://hydra.nixos.org/build/233218330 at 2023-09-02
+  - monad-atom # failure in job https://hydra.nixos.org/build/233243367 at 2023-09-02
+  - monad-atom-simple # failure in job https://hydra.nixos.org/build/233259038 at 2023-09-02
+  - monad-branch # failure in job https://hydra.nixos.org/build/233251253 at 2023-09-02
+  - MonadCatchIO-mtl # failure in job https://hydra.nixos.org/build/233228214 at 2023-09-02
+  - MonadCatchIO-transformers-foreign # failure in job https://hydra.nixos.org/build/233251635 at 2023-09-02
+  - monad-choice # failure in job https://hydra.nixos.org/build/233255987 at 2023-09-02
+  - MonadCompose # failure in job https://hydra.nixos.org/build/233204478 at 2023-09-02
+  - monad-control-aligned # failure in job https://hydra.nixos.org/build/233240714 at 2023-09-02
+  - monadcryptorandom # failure in job https://hydra.nixos.org/build/233235604 at 2023-09-02
+  - monad-fork # failure in job https://hydra.nixos.org/build/233206855 at 2023-09-02
+  - monadiccp # failure in job https://hydra.nixos.org/build/233191794 at 2023-09-02
+  - monad-introspect # failure in job https://hydra.nixos.org/build/233248261 at 2023-09-02
+  - Monadius # failure in job https://hydra.nixos.org/build/234456746 at 2023-09-13
+  - monad-levels # failure in job https://hydra.nixos.org/build/233230433 at 2023-09-02
+  - monad-lgbt # failure in job https://hydra.nixos.org/build/233207652 at 2023-09-02
+  - monadLib-compose # failure in job https://hydra.nixos.org/build/233237652 at 2023-09-02
+  - monadloc-pp # failure in job https://hydra.nixos.org/build/233229067 at 2023-09-02
+  - monadlog # failure in job https://hydra.nixos.org/build/233210391 at 2023-09-02
+  - monad-log # failure in job https://hydra.nixos.org/build/233235588 at 2023-09-02
+  - monad-logger-prefix # failure in job https://hydra.nixos.org/build/233194845 at 2023-09-02
+  - monad-logger-syslog # failure in job https://hydra.nixos.org/build/233238581 at 2023-09-02
+  - monad-lrs # failure in job https://hydra.nixos.org/build/233204729 at 2023-09-02
+  - monad-mersenne-random # failure in job https://hydra.nixos.org/build/233219918 at 2023-09-02
+  - monad-metrics # failure in job https://hydra.nixos.org/build/233213287 at 2023-09-02
+  - monad-mock # failure in job https://hydra.nixos.org/build/233211936 at 2023-09-02
+  - monad-open # failure in job https://hydra.nixos.org/build/233242922 at 2023-09-02
+  - monad-parallel-progressbar # failure in job https://hydra.nixos.org/build/233240035 at 2023-09-02
+  - monad-param # failure in job https://hydra.nixos.org/build/233257283 at 2023-09-02
+  - monad-persist # failure in job https://hydra.nixos.org/build/233214035 at 2023-09-02
+  - MonadRandomLazy # failure in job https://hydra.nixos.org/build/233247540 at 2023-09-02
+  - monad-ran # failure in job https://hydra.nixos.org/build/233251596 at 2023-09-02
+  - monad-recorder # failure in job https://hydra.nixos.org/build/233222665 at 2023-09-02
+  - monad-skeleton # failure in job https://hydra.nixos.org/build/233234306 at 2023-09-02
+  - MonadStack # failure in job https://hydra.nixos.org/build/233239920 at 2023-09-02
+  - monad-statevar # failure in job https://hydra.nixos.org/build/233215896 at 2023-09-02
+  - monad-ste # failure in job https://hydra.nixos.org/build/233226514 at 2023-09-02
+  - monad-stlike-io # failure in job https://hydra.nixos.org/build/233254724 at 2023-09-02
+  - monad-task # failure in job https://hydra.nixos.org/build/233199661 at 2023-09-02
+  - monad-throw-exit # failure in job https://hydra.nixos.org/build/233205411 at 2023-09-02
+  - monad-timing # failure in job https://hydra.nixos.org/build/233213441 at 2023-09-02
+  - monad-tree # failure in job https://hydra.nixos.org/build/233259264 at 2023-09-02
+  - monad-tx # failure in job https://hydra.nixos.org/build/233232176 at 2023-09-02
+  - monad-unify # failure in job https://hydra.nixos.org/build/233202833 at 2023-09-02
+  - monad-wrap # failure in job https://hydra.nixos.org/build/233247808 at 2023-09-02
+  - Monatron # failure in job https://hydra.nixos.org/build/233211361 at 2023-09-02
+  - mondo # failure in job https://hydra.nixos.org/build/233207379 at 2023-09-02
+  - money # failure in job https://hydra.nixos.org/build/233236545 at 2023-09-02
+  - mongodb-queue # failure in job https://hydra.nixos.org/build/233216248 at 2023-09-02
+  - monitor # failure in job https://hydra.nixos.org/build/233229021 at 2023-09-02
+  - monocypher # failure in job https://hydra.nixos.org/build/233195745 at 2023-09-02
+  - mono-foldable # failure in job https://hydra.nixos.org/build/233238824 at 2023-09-02
+  - monoid-absorbing # failure in job https://hydra.nixos.org/build/233236465 at 2023-09-02
+  - monoidal-functors # failure in job https://hydra.nixos.org/build/233203234 at 2023-09-02
+  - monoid # failure in job https://hydra.nixos.org/build/233252888 at 2023-09-02
+  - monoidmap # failure in job https://hydra.nixos.org/build/233252527 at 2023-09-02
+  - monoid-owns # failure in job https://hydra.nixos.org/build/233259043 at 2023-09-02
+  - monoidplus # failure in job https://hydra.nixos.org/build/233226759 at 2023-09-02
+  - monoids # failure in job https://hydra.nixos.org/build/233231684 at 2023-09-02
+  - monopati # failure in job https://hydra.nixos.org/build/233234119 at 2023-09-02
+  - monus # failure in job https://hydra.nixos.org/build/233252424 at 2023-09-02
+  - monzo # failure in job https://hydra.nixos.org/build/233254681 at 2023-09-02
+  - morfette # failure in job https://hydra.nixos.org/build/233249575 at 2023-09-02
+  - morfeusz # failure in job https://hydra.nixos.org/build/233232351 at 2023-09-02
+  - morpheus-graphql-cli # failure in job https://hydra.nixos.org/build/233249063 at 2023-09-02
+  - morphisms-functors # failure in job https://hydra.nixos.org/build/233255311 at 2023-09-02
+  - morphisms-objects # failure in job https://hydra.nixos.org/build/233216076 at 2023-09-02
+  - morte # failure in job https://hydra.nixos.org/build/233212193 at 2023-09-02
+  - mortred # failure in job https://hydra.nixos.org/build/233216766 at 2023-09-02
+  - mosaico-lib # failure in job https://hydra.nixos.org/build/233253717 at 2023-09-02
+  - motor-reflection # failure in job https://hydra.nixos.org/build/233247530 at 2023-09-02
+  - mount # failure in job https://hydra.nixos.org/build/233220302 at 2023-09-02
+  - movie-monad # failure in job https://hydra.nixos.org/build/233215402 at 2023-09-02
+  - mpppc # failure in job https://hydra.nixos.org/build/233223008 at 2023-09-02
+  - mpris # failure in job https://hydra.nixos.org/build/233259241 at 2023-09-02
+  - mpvguihs # failure in job https://hydra.nixos.org/build/233196650 at 2023-09-02
+  - mqtt # failure in job https://hydra.nixos.org/build/233202067 at 2023-09-02
+  - mqtt-hs # failure in job https://hydra.nixos.org/build/233239399 at 2023-09-02
+  - mrifk # failure in job https://hydra.nixos.org/build/233201109 at 2023-09-02
+  - mrm # failure in job https://hydra.nixos.org/build/233191612 at 2023-09-02
+  - ms-auth # failure in job https://hydra.nixos.org/build/233193383 at 2023-09-02
+  - ms-azure-api # failure in job https://hydra.nixos.org/build/233202229 at 2023-09-02
+  - ms # failure in job https://hydra.nixos.org/build/233237728 at 2023-09-02
+  - msgpack # failure in job https://hydra.nixos.org/build/233258131 at 2023-09-02
+  - msgpack-types # failure in job https://hydra.nixos.org/build/233235351 at 2023-09-02
+  - ms-graph-api # failure in job https://hydra.nixos.org/build/233219042 at 2023-09-02
+  - msh # failure in job https://hydra.nixos.org/build/233196466 at 2023-09-02
+  - MTGBuilder # failure in job https://hydra.nixos.org/build/233227528 at 2023-09-02
+  - mtl-c # failure in job https://hydra.nixos.org/build/233196798 at 2023-09-02
+  - mtl-evil-instances # failure in job https://hydra.nixos.org/build/233239976 at 2023-09-02
+  - mtl-extras # failure in job https://hydra.nixos.org/build/233199852 at 2023-09-02
+  - mtl-tf # failure in job https://hydra.nixos.org/build/233254943 at 2023-09-02
+  - mtlx # failure in job https://hydra.nixos.org/build/233221631 at 2023-09-02
+  - mtp # failure in job https://hydra.nixos.org/build/233212895 at 2023-09-02
+  - mtsl # failure in job https://hydra.nixos.org/build/233207653 at 2023-09-02
+  - MuCheck # failure in job https://hydra.nixos.org/build/233254207 at 2023-09-02
+  - mudbath # failure in job https://hydra.nixos.org/build/233198648 at 2023-09-02
+  - mud # failure in job https://hydra.nixos.org/build/233229445 at 2023-09-02
+  - mulang # failure in job https://hydra.nixos.org/build/233211001 at 2023-09-02
+  - multext-east-msd # failure in job https://hydra.nixos.org/build/233191007 at 2023-09-02
+  - multiaddr # failure in job https://hydra.nixos.org/build/233223452 at 2023-09-02
+  - multiarg # failure in job https://hydra.nixos.org/build/233238633 at 2023-09-02
+  - multihash # failure in job https://hydra.nixos.org/build/233203263 at 2023-09-02
+  - multi-instance # failure in job https://hydra.nixos.org/build/233203186 at 2023-09-02
+  - multilinear # failure in job https://hydra.nixos.org/build/233260046 at 2023-09-02
+  - multipass # failure in job https://hydra.nixos.org/build/233252587 at 2023-09-02
+  - multipath # failure in job https://hydra.nixos.org/build/233248692 at 2023-09-02
+  - multiplate-simplified # failure in job https://hydra.nixos.org/build/233241999 at 2023-09-02
+  - multipool # failure in job https://hydra.nixos.org/build/233234384 at 2023-09-02
+  - multirec # failure in job https://hydra.nixos.org/build/233242079 at 2023-09-02
+  - multivariant # failure in job https://hydra.nixos.org/build/233254625 at 2023-09-02
+  - Munkres # failure in job https://hydra.nixos.org/build/233237379 at 2023-09-02
+  - muon # failure in job https://hydra.nixos.org/build/233238364 at 2023-09-02
+  - murmur # failure in job https://hydra.nixos.org/build/233244309 at 2023-09-02
+  - mu-schema # failure in job https://hydra.nixos.org/build/233235916 at 2023-09-02
+  - musicScroll # failure in job https://hydra.nixos.org/build/233197933 at 2023-09-02
+  - music-util # failure in job https://hydra.nixos.org/build/233234440 at 2023-09-02
+  - musicxml # failure in job https://hydra.nixos.org/build/233201763 at 2023-09-02
+  - mustache2hs # failure in job https://hydra.nixos.org/build/233229095 at 2023-09-02
+  - mustache-haskell # failure in job https://hydra.nixos.org/build/233235667 at 2023-09-02
+  - mutable # failure in job https://hydra.nixos.org/build/233204639 at 2023-09-02
+  - mvc # failure in job https://hydra.nixos.org/build/233205036 at 2023-09-02
+  - mxnet # failure in job https://hydra.nixos.org/build/233212365 at 2023-09-02
+  - mxnet-nnvm # failure in job https://hydra.nixos.org/build/233236073 at 2023-09-02
+  - myanimelist-export # failure in job https://hydra.nixos.org/build/233255510 at 2023-09-02
+  - myo # failure in job https://hydra.nixos.org/build/233251998 at 2023-09-02
+  - my-package-testing # failure in job https://hydra.nixos.org/build/233201843 at 2023-09-02
+  - MyPrimes # failure in job https://hydra.nixos.org/build/233247934 at 2023-09-02
+  - mysql-effect # failure in job https://hydra.nixos.org/build/233248718 at 2023-09-02
+  - mysql-haskell # failure in job https://hydra.nixos.org/build/233195978 at 2023-09-02
+  - mysql-pure # failure in job https://hydra.nixos.org/build/233250825 at 2023-09-02
+  - mysql-simple-quasi # failure in job https://hydra.nixos.org/build/233214755 at 2023-09-02
+  - mystem # failure in job https://hydra.nixos.org/build/233215180 at 2023-09-02
+  - my-test-docs # failure in job https://hydra.nixos.org/build/233191840 at 2023-09-02
+  - myxine-client # failure in job https://hydra.nixos.org/build/233236439 at 2023-09-02
+  - mzv # failure in job https://hydra.nixos.org/build/233241826 at 2023-09-02
+  - n2o-protocols # failure in job https://hydra.nixos.org/build/233233132 at 2023-09-02
+  - nagios-plugin-ekg # failure in job https://hydra.nixos.org/build/233203188 at 2023-09-02
+  - named-binary-tag # failure in job https://hydra.nixos.org/build/233225138 at 2023-09-02
+  - named-lock # failure in job https://hydra.nixos.org/build/233247307 at 2023-09-02
+  - named-servant # failure in job https://hydra.nixos.org/build/233205979 at 2023-09-02
+  - named-sop # failure in job https://hydra.nixos.org/build/233233523 at 2023-09-02
+  - namelist # failure in job https://hydra.nixos.org/build/233216883 at 2023-09-02
+  - nanoAgda # failure in job https://hydra.nixos.org/build/233259294 at 2023-09-02
+  - nano-cryptr # failure in job https://hydra.nixos.org/build/233218831 at 2023-09-02
+  - nanocurses # failure in job https://hydra.nixos.org/build/233215906 at 2023-09-02
+  - nano-hmac # failure in job https://hydra.nixos.org/build/233224756 at 2023-09-02
+  - NanoID # failure in job https://hydra.nixos.org/build/233212531 at 2023-09-02
+  - nano-md5 # failure in job https://hydra.nixos.org/build/233222265 at 2023-09-02
+  - nanomsg # failure in job https://hydra.nixos.org/build/233240904 at 2023-09-02
+  - nanomsg-haskell # failure in job https://hydra.nixos.org/build/233207779 at 2023-09-02
+  - nanoparsec # failure in job https://hydra.nixos.org/build/233248843 at 2023-09-02
+  - nanopass # failure in job https://hydra.nixos.org/build/233230210 at 2023-09-02
+  - NanoProlog # failure in job https://hydra.nixos.org/build/233244743 at 2023-09-02
+  - nanovg-simple # failure in job https://hydra.nixos.org/build/233257414 at 2023-09-02
+  - Naperian # failure in job https://hydra.nixos.org/build/233200372 at 2023-09-02
+  - naperian # failure in job https://hydra.nixos.org/build/233233726 at 2023-09-02
+  - naqsha # failure in job https://hydra.nixos.org/build/233256844 at 2023-09-02
+  - narc # failure in job https://hydra.nixos.org/build/233215853 at 2023-09-02
+  - nationstates # failure in job https://hydra.nixos.org/build/233243640 at 2023-09-02
+  - nats-client # failure in job https://hydra.nixos.org/build/233241313 at 2023-09-02
+  - nat-sized-numbers # failure in job https://hydra.nixos.org/build/233244238 at 2023-09-02
+  - natural # failure in job https://hydra.nixos.org/build/233232490 at 2023-09-02
+  - NaturalSort # failure in job https://hydra.nixos.org/build/233213239 at 2023-09-02
+  - naver-translate # failure in job https://hydra.nixos.org/build/233225934 at 2023-09-02
+  - nbt # failure in job https://hydra.nixos.org/build/233253509 at 2023-09-02
+  - ncurses # failure in job https://hydra.nixos.org/build/233238895 at 2023-09-02
+  - neat # failure in job https://hydra.nixos.org/build/233203521 at 2023-09-02
+  - needle # failure in job https://hydra.nixos.org/build/233192371 at 2023-09-02
+  - neet # failure in job https://hydra.nixos.org/build/233235457 at 2023-09-02
+  - nehe-tuts # failure in job https://hydra.nixos.org/build/233249347 at 2023-09-02
+  - neil # failure in job https://hydra.nixos.org/build/233219708 at 2023-09-02
+  - neither-data # failure in job https://hydra.nixos.org/build/233201266 at 2023-09-02
+  - neither # failure in job https://hydra.nixos.org/build/233244974 at 2023-09-02
+  - neko-lib # failure in job https://hydra.nixos.org/build/233236797 at 2023-09-02
+  - neko-obfs # failure in job https://hydra.nixos.org/build/233248732 at 2023-09-02
+  - nekos-best # failure in job https://hydra.nixos.org/build/233214327 at 2023-09-02
+  - Neks # failure in job https://hydra.nixos.org/build/233238103 at 2023-09-02
+  - neptune-backend # failure in job https://hydra.nixos.org/build/233214329 at 2023-09-02
+  - nero # failure in job https://hydra.nixos.org/build/233216907 at 2023-09-02
+  - NestedFunctor # failure in job https://hydra.nixos.org/build/233253656 at 2023-09-02
+  - nestedmap # failure in job https://hydra.nixos.org/build/233219375 at 2023-09-02
+  - nested-sequence # failure in job https://hydra.nixos.org/build/233221359 at 2023-09-02
+  - nest # failure in job https://hydra.nixos.org/build/233224450 at 2023-09-02
+  - netclock # failure in job https://hydra.nixos.org/build/233207456 at 2023-09-02
+  - netease-fm # failure in job https://hydra.nixos.org/build/233210043 at 2023-09-02
+  - netrium # failure in job https://hydra.nixos.org/build/233258377 at 2023-09-02
+  - NetSNMP # failure in job https://hydra.nixos.org/build/233598256 at 2023-09-02
+  - netspec # failure in job https://hydra.nixos.org/build/233251049 at 2023-09-02
+  - netwire-input-javascript # failure in job https://hydra.nixos.org/build/233245020 at 2023-09-02
+  - netwire-vinylglfw-examples # failure in job https://hydra.nixos.org/build/233236274 at 2023-09-02
+  - network-address # failure in job https://hydra.nixos.org/build/233248618 at 2023-09-02
+  - network-api-support # failure in job https://hydra.nixos.org/build/233257275 at 2023-09-02
+  - network-arbitrary # failure in job https://hydra.nixos.org/build/233250988 at 2023-09-02
+  - network-attoparsec # failure in job https://hydra.nixos.org/build/233255528 at 2023-09-02
+  - network-bitcoin # failure in job https://hydra.nixos.org/build/233191198 at 2023-09-02
+  - network-builder # failure in job https://hydra.nixos.org/build/233235184 at 2023-09-02
+  - network-bytestring # failure in job https://hydra.nixos.org/build/233201616 at 2023-09-02
+  - network-carbon # failure in job https://hydra.nixos.org/build/233225276 at 2023-09-02
+  - network-dbus # failure in job https://hydra.nixos.org/build/233212385 at 2023-09-02
+  - networked-game # failure in job https://hydra.nixos.org/build/233239577 at 2023-09-02
+  - network-house # failure in job https://hydra.nixos.org/build/233193957 at 2023-09-02
+  - network-manager-tui # failure in job https://hydra.nixos.org/build/233247972 at 2023-09-02
+  - network-metrics # failure in job https://hydra.nixos.org/build/233259963 at 2023-09-02
+  - network-msg # failure in job https://hydra.nixos.org/build/233236413 at 2023-09-02
+  - network-msgpack-rpc # failure in job https://hydra.nixos.org/build/233222467 at 2023-09-02
+  - network-packet-linux # failure in job https://hydra.nixos.org/build/233235052 at 2023-09-02
+  - network-server # failure in job https://hydra.nixos.org/build/233250808 at 2023-09-02
+  - network-service # failure in job https://hydra.nixos.org/build/233193647 at 2023-09-02
+  - network-simple-sockaddr # failure in job https://hydra.nixos.org/build/233204221 at 2023-09-02
+  - network-socket-options # failure in job https://hydra.nixos.org/build/233252466 at 2023-09-02
+  - network-transport-amqp # failure in job https://hydra.nixos.org/build/233224582 at 2023-09-02
+  - network-voicetext # failure in job https://hydra.nixos.org/build/233204992 at 2023-09-02
+  - network-wai-router # failure in job https://hydra.nixos.org/build/233219167 at 2023-09-02
+  - neural-network-blashs # failure in job https://hydra.nixos.org/build/233244174 at 2023-09-02
+  - neural-network-hmatrix # failure in job https://hydra.nixos.org/build/233237535 at 2023-09-02
+  - newbase60 # failure in job https://hydra.nixos.org/build/233241443 at 2023-09-02
+  - newhope # failure in job https://hydra.nixos.org/build/233221942 at 2023-09-02
+  - newline # failure in job https://hydra.nixos.org/build/233205462 at 2023-09-02
+  - newports # failure in job https://hydra.nixos.org/build/233234468 at 2023-09-02
+  - newsletter # failure in job https://hydra.nixos.org/build/233252800 at 2023-09-02
+  - newt # failure in job https://hydra.nixos.org/build/233227870 at 2023-09-02
+  - newtype-deriving # failure in job https://hydra.nixos.org/build/233209383 at 2023-09-02
+  - newtype-th # failure in job https://hydra.nixos.org/build/233203461 at 2023-09-02
+  - next-ref # failure in job https://hydra.nixos.org/build/233230105 at 2023-09-02
+  - nextstep-plist # failure in job https://hydra.nixos.org/build/233227343 at 2023-09-02
+  - NGrams # failure in job https://hydra.nixos.org/build/233230426 at 2023-09-02
+  - ngrams-loader # failure in job https://hydra.nixos.org/build/233211319 at 2023-09-02
+  - ngx-export-log # failure in job https://hydra.nixos.org/build/233193133 at 2023-09-02
+  - niagra # failure in job https://hydra.nixos.org/build/233234016 at 2023-09-02
+  - nibblestring # failure in job https://hydra.nixos.org/build/233224888 at 2023-09-02
+  - nice-html # failure in job https://hydra.nixos.org/build/233193644 at 2023-09-02
+  - nicovideo-translator # failure in job https://hydra.nixos.org/build/233225618 at 2023-09-02
+  - nist-beacon # failure in job https://hydra.nixos.org/build/233206376 at 2023-09-02
+  - nitro # failure in job https://hydra.nixos.org/build/233229909 at 2023-09-02
+  - nix-delegate # failure in job https://hydra.nixos.org/build/233232891 at 2023-09-02
+  - nixdu # failure in job https://hydra.nixos.org/build/233257712 at 2023-09-02
+  - nix-eval # failure in job https://hydra.nixos.org/build/233256388 at 2023-09-02
+  - nix-freeze-tree # failure in job https://hydra.nixos.org/build/233234834 at 2023-09-02
+  - nixfromnpm # failure in job https://hydra.nixos.org/build/233239168 at 2023-09-02
+  - nixpkgs-update # failure in job https://hydra.nixos.org/build/233196708 at 2023-09-02
+  - nix-serve-ng # failure in job https://hydra.nixos.org/build/233214170 at 2023-09-02
+  - nix-tools # failure in job https://hydra.nixos.org/build/233662959 at 2023-09-02
+  - nlp-scores # failure in job https://hydra.nixos.org/build/233232770 at 2023-09-02
+  - NMap # failure in job https://hydra.nixos.org/build/233246148 at 2023-09-02
+  - nme # failure in job https://hydra.nixos.org/build/233224069 at 2023-09-02
+  - nm # failure in job https://hydra.nixos.org/build/233258727 at 2023-09-02
+  - nn # failure in job https://hydra.nixos.org/build/233236534 at 2023-09-02
+  - nntp # failure in job https://hydra.nixos.org/build/233210197 at 2023-09-02
+  - noether # failure in job https://hydra.nixos.org/build/233193462 at 2023-09-02
+  - nofib-analyse # failure in job https://hydra.nixos.org/build/233241646 at 2023-09-02
+  - nofib-analyze # failure in job https://hydra.nixos.org/build/233203306 at 2023-09-02
+  - noise # failure in job https://hydra.nixos.org/build/233190885 at 2023-09-02
+  - noli # failure in job https://hydra.nixos.org/build/233208659 at 2023-09-02
+  - non-empty-containers # failure in job https://hydra.nixos.org/build/233201102 at 2023-09-02
+  - NonEmpty # failure in job https://hydra.nixos.org/build/233244009 at 2023-09-02
+  - nonempty-lift # failure in job https://hydra.nixos.org/build/233237065 at 2023-09-02
+  - non-empty-zipper # failure in job https://hydra.nixos.org/build/233244341 at 2023-09-02
+  - nonlinear-optimization # failure in job https://hydra.nixos.org/build/233204674 at 2023-09-02
+  - noodle # failure in job https://hydra.nixos.org/build/233195125 at 2023-09-02
+  - normalization-insensitive # failure in job https://hydra.nixos.org/build/233239612 at 2023-09-02
+  - no-role-annots # failure in job https://hydra.nixos.org/build/233229589 at 2023-09-02
+  - notcpp # failure in job https://hydra.nixos.org/build/233216543 at 2023-09-02
+  - notmuch-haskell # failure in job https://hydra.nixos.org/build/233332618 at 2023-09-02
+  - not-prelude # failure in job https://hydra.nixos.org/build/233248453 at 2023-09-02
+  - NoTrace # failure in job https://hydra.nixos.org/build/233229305 at 2023-09-02
+  - notzero # failure in job https://hydra.nixos.org/build/233216133 at 2023-09-02
+  - np-linear # failure in job https://hydra.nixos.org/build/233257696 at 2023-09-02
+  - nptools # failure in job https://hydra.nixos.org/build/233234905 at 2023-09-02
+  - ntp-control # failure in job https://hydra.nixos.org/build/233231061 at 2023-09-02
+  - ntrip-client # failure in job https://hydra.nixos.org/build/233230605 at 2023-09-02
+  - n-tuple # failure in job https://hydra.nixos.org/build/233225021 at 2023-09-02
+  - nuha # failure in job https://hydra.nixos.org/build/233215103 at 2023-09-02
+  - nullary # failure in job https://hydra.nixos.org/build/233214073 at 2023-09-02
+  - null-canvas # failure in job https://hydra.nixos.org/build/233201814 at 2023-09-02
+  - nullpipe # failure in job https://hydra.nixos.org/build/233245129 at 2023-09-02
+  - NumberSieves # failure in job https://hydra.nixos.org/build/233255007 at 2023-09-02
+  - NumberTheory # failure in job https://hydra.nixos.org/build/233215395 at 2023-09-02
+  - number-wall # failure in job https://hydra.nixos.org/build/233197764 at 2023-09-02
+  - numeric-qq # failure in job https://hydra.nixos.org/build/233207127 at 2023-09-02
+  - numeric-ranges # failure in job https://hydra.nixos.org/build/233191878 at 2023-09-02
+  - numhask-free # failure in job https://hydra.nixos.org/build/233214800 at 2023-09-02
+  - numhask-prelude # failure in job https://hydra.nixos.org/build/233248768 at 2023-09-02
+  - numhask-space # failure in job https://hydra.nixos.org/build/233210514 at 2023-09-02
+  - numtype # failure in job https://hydra.nixos.org/build/233219211 at 2023-09-02
+  - numtype-tf # failure in job https://hydra.nixos.org/build/233243483 at 2023-09-02
+  - Nutri # failure in job https://hydra.nixos.org/build/233244244 at 2023-09-02
+  - nvfetcher # failure in job https://hydra.nixos.org/build/233598212 at 2023-09-02
+  - NXTDSL # failure in job https://hydra.nixos.org/build/233193483 at 2023-09-02
+  - nylas # failure in job https://hydra.nixos.org/build/233193540 at 2023-09-02
+  - oanda-rest-api # failure in job https://hydra.nixos.org/build/233250190 at 2023-09-02
+  - oasis-xrd # failure in job https://hydra.nixos.org/build/233199264 at 2023-09-02
+  - oauthenticated # failure in job https://hydra.nixos.org/build/233257682 at 2023-09-02
+  - Object # failure in job https://hydra.nixos.org/build/233191909 at 2023-09-02
+  - ObjectIO # failure in job https://hydra.nixos.org/build/233242132 at 2023-09-02
+  - ocaml-export # failure in job https://hydra.nixos.org/build/233218217 at 2023-09-02
+  - Octree # failure in job https://hydra.nixos.org/build/233228066 at 2023-09-02
+  - OddWord # failure in job https://hydra.nixos.org/build/233192922 at 2023-09-02
+  - oden-go-packages # failure in job https://hydra.nixos.org/build/233200117 at 2023-09-02
+  - oeis2 # failure in job https://hydra.nixos.org/build/233199597 at 2023-09-02
+  - OGDF # failure in job https://hydra.nixos.org/build/233200888 at 2023-09-02
+  - OGL # failure in job https://hydra.nixos.org/build/233255135 at 2023-09-02
+  - ogma-language-c # failure in job https://hydra.nixos.org/build/233228824 at 2023-09-02
+  - ogma-language-cocospec # failure in job https://hydra.nixos.org/build/233235359 at 2023-09-02
+  - ogma-language-smv # failure in job https://hydra.nixos.org/build/233239832 at 2023-09-02
+  - ogmarkup # failure in job https://hydra.nixos.org/build/233229980 at 2023-09-02
+  - ohloh-hs # failure in job https://hydra.nixos.org/build/233228177 at 2023-09-02
+  - oi # failure in job https://hydra.nixos.org/build/233190838 at 2023-09-02
+  - okapi # failure in job https://hydra.nixos.org/build/233193822 at 2023-09-02
+  - old-version # failure in job https://hydra.nixos.org/build/233198538 at 2023-09-02
+  - om-actor # failure in job https://hydra.nixos.org/build/233231027 at 2023-09-02
+  - omaketex # failure in job https://hydra.nixos.org/build/233202599 at 2023-09-02
+  - ombra # failure in job https://hydra.nixos.org/build/233192387 at 2023-09-02
+  - om-doh # failure in job https://hydra.nixos.org/build/233217719 at 2023-09-02
+  - Omega # failure in job https://hydra.nixos.org/build/233226089 at 2023-09-02
+  - omega # failure in job https://hydra.nixos.org/build/233241129 at 2023-09-02
+  - om-elm # failure in job https://hydra.nixos.org/build/233226229 at 2023-09-02
+  - om-fail # failure in job https://hydra.nixos.org/build/233244639 at 2023-09-02
+  - om-http # failure in job https://hydra.nixos.org/build/233245328 at 2023-09-02
+  - om-http-logging # failure in job https://hydra.nixos.org/build/233218069 at 2023-09-02
+  - om-logging # failure in job https://hydra.nixos.org/build/233222909 at 2023-09-02
+  - omnifmt # failure in job https://hydra.nixos.org/build/233219763 at 2023-09-02
+  - om-socket # failure in job https://hydra.nixos.org/build/233235423 at 2023-09-02
+  - on-a-horse # failure in job https://hydra.nixos.org/build/233199193 at 2023-09-02
+  - onama # failure in job https://hydra.nixos.org/build/233241430 at 2023-09-02
+  - ONC-RPC # failure in job https://hydra.nixos.org/build/233225207 at 2023-09-02
+  - on-demand-ssh-tunnel # failure in job https://hydra.nixos.org/build/233197181 at 2023-09-02
+  - oneormore # failure in job https://hydra.nixos.org/build/233242475 at 2023-09-02
+  - online # failure in job https://hydra.nixos.org/build/233195360 at 2023-09-02
+  - onpartitions # failure in job https://hydra.nixos.org/build/233226163 at 2023-09-02
+  - onu-course # failure in job https://hydra.nixos.org/build/233233153 at 2023-09-02
+  - opaleye-classy # failure in job https://hydra.nixos.org/build/233214120 at 2023-09-02
+  - opaleye-sqlite # failure in job https://hydra.nixos.org/build/233191474 at 2023-09-02
+  - opaleye-trans # failure in job https://hydra.nixos.org/build/233210536 at 2023-09-02
+  - open-adt # failure in job https://hydra.nixos.org/build/233201191 at 2023-09-02
+  - OpenAFP # failure in job https://hydra.nixos.org/build/233249295 at 2023-09-02
+  - openai-hs # failure in job https://hydra.nixos.org/build/233598196 at 2023-09-02
+  - openapi3-code-generator # failure in job https://hydra.nixos.org/build/233255628 at 2023-09-02
+  - openapi3 # failure in job https://hydra.nixos.org/build/233208815 at 2023-09-02
+  - openapi-petstore # failure in job https://hydra.nixos.org/build/233221722 at 2023-09-02
+  - openapi-typed # failure in job https://hydra.nixos.org/build/233226830 at 2023-09-02
+  - opencc # failure in job https://hydra.nixos.org/build/233211902 at 2023-09-02
+  - opench-meteo # failure in job https://hydra.nixos.org/build/233212476 at 2023-09-02
+  - OpenCL # failure in job https://hydra.nixos.org/build/233216571 at 2023-09-02
+  - OpenCLRaw # failure in job https://hydra.nixos.org/build/233247133 at 2023-09-02
+  - OpenCLWrappers # failure in job https://hydra.nixos.org/build/233222391 at 2023-09-02
+  - opencog-atomspace # failure in job https://hydra.nixos.org/build/233237785 at 2023-09-02
+  - opencv-raw # failure in job https://hydra.nixos.org/build/233211286 at 2023-09-02
+  - opendatatable # failure in job https://hydra.nixos.org/build/233254960 at 2023-09-02
+  - openexchangerates # failure in job https://hydra.nixos.org/build/233203238 at 2023-09-02
+  - openflow # failure in job https://hydra.nixos.org/build/233244058 at 2023-09-02
+  - opengles # failure in job https://hydra.nixos.org/build/233214966 at 2023-09-02
+  - OpenGLRaw21 # failure in job https://hydra.nixos.org/build/233229407 at 2023-09-02
+  - open-haddock # failure in job https://hydra.nixos.org/build/233205112 at 2023-09-02
+  - openid-connect # failure in job https://hydra.nixos.org/build/233196765 at 2023-09-02
+  - open-pandoc # failure in job https://hydra.nixos.org/build/233247973 at 2023-09-02
+  - openpgp # failure in job https://hydra.nixos.org/build/233244438 at 2023-09-02
+  - open-signals # failure in job https://hydra.nixos.org/build/233207409 at 2023-09-02
+  - opensoundcontrol-ht # failure in job https://hydra.nixos.org/build/233253386 at 2023-09-02
+  - openssh-protocol # failure in job https://hydra.nixos.org/build/233196013 at 2023-09-02
+  - opentelemetry-extra # failure in job https://hydra.nixos.org/build/233194254 at 2023-09-02
+  - opentelemetry-http-client # failure in job https://hydra.nixos.org/build/233221983 at 2023-09-02
+  - opentheory-char # failure in job https://hydra.nixos.org/build/233222347 at 2023-09-02
+  - opentracing # failure in job https://hydra.nixos.org/build/233218638 at 2023-09-02
+  - opentype # failure in job https://hydra.nixos.org/build/233213443 at 2023-09-02
+  - OpenVGRaw # failure in job https://hydra.nixos.org/build/233254457 at 2023-09-02
+  - Operads # failure in job https://hydra.nixos.org/build/233233055 at 2023-09-02
+  - operate-do # failure in job https://hydra.nixos.org/build/233257129 at 2023-09-02
+  - operational-extra # failure in job https://hydra.nixos.org/build/233232454 at 2023-09-02
+  - op # failure in job https://hydra.nixos.org/build/233201812 at 2023-09-02
+  - oplang # failure in job https://hydra.nixos.org/build/233208221 at 2023-09-02
+  - opn # failure in job https://hydra.nixos.org/build/233198628 at 2023-09-02
+  - optima # failure in job https://hydra.nixos.org/build/233200812 at 2023-09-02
+  - optimization # failure in job https://hydra.nixos.org/build/233191078 at 2023-09-02
+  - optional # failure in job https://hydra.nixos.org/build/233241818 at 2023-09-02
+  - options-time # failure in job https://hydra.nixos.org/build/233194289 at 2023-09-02
+  - optparse-applicative-simple # failure in job https://hydra.nixos.org/build/233236802 at 2023-09-02
+  - optparse-helper # failure in job https://hydra.nixos.org/build/233248522 at 2023-09-02
+  - optstream # failure in job https://hydra.nixos.org/build/233200326 at 2023-09-02
+  - orc # failure in job https://hydra.nixos.org/build/233216448 at 2023-09-02
+  - OrchestrateDB # failure in job https://hydra.nixos.org/build/233200562 at 2023-09-02
+  - orchestrate # failure in job https://hydra.nixos.org/build/233228950 at 2023-09-02
+  - ordered # failure in job https://hydra.nixos.org/build/233226269 at 2023-09-02
+  - order-statistics # failure in job https://hydra.nixos.org/build/233255710 at 2023-09-02
+  - Ordinary # failure in job https://hydra.nixos.org/build/233240078 at 2023-09-02
+  - ordrea # failure in job https://hydra.nixos.org/build/233192984 at 2023-09-02
+  - oref # failure in job https://hydra.nixos.org/build/233239331 at 2023-09-02
+  - organize-imports # failure in job https://hydra.nixos.org/build/233217876 at 2023-09-02
+  - orgmode # failure in job https://hydra.nixos.org/build/233232348 at 2023-09-02
+  - orgmode-parse # failure in job https://hydra.nixos.org/build/233206463 at 2023-09-02
+  - org-parser # failure in job https://hydra.nixos.org/build/233223593 at 2023-09-02
+  - origami # failure in job https://hydra.nixos.org/build/233254357 at 2023-09-02
+  - orion-hs # failure in job https://hydra.nixos.org/build/233210586 at 2023-09-02
+  - orizentic # failure in job https://hydra.nixos.org/build/233197904 at 2023-09-02
+  - OrPatterns # failure in job https://hydra.nixos.org/build/233191538 at 2023-09-02
+  - ory-hydra-client # failure in job https://hydra.nixos.org/build/233197456 at 2023-09-02
+  - ory-kratos # failure in job https://hydra.nixos.org/build/233191249 at 2023-09-02
+  - osc # failure in job https://hydra.nixos.org/build/233250062 at 2023-09-02
+  - oscpacking # failure in job https://hydra.nixos.org/build/234464653 at 2023-09-13
+  - oset # failure in job https://hydra.nixos.org/build/233230763 at 2023-09-02
+  - Oslo-Vectize # failure in job https://hydra.nixos.org/build/233252956 at 2023-09-02
+  - osm-conduit # failure in job https://hydra.nixos.org/build/233259898 at 2023-09-02
+  - OSM # failure in job https://hydra.nixos.org/build/233231098 at 2023-09-02
+  - oso2pdf # failure in job https://hydra.nixos.org/build/233235234 at 2023-09-02
+  - osx-ar # failure in job https://hydra.nixos.org/build/233194090 at 2023-09-02
+  - ot # failure in job https://hydra.nixos.org/build/233244553 at 2023-09-02
+  - OTP # failure in job https://hydra.nixos.org/build/233215664 at 2023-09-02
+  - ottparse-pretty # failure in job https://hydra.nixos.org/build/233217185 at 2023-09-02
+  - overloaded # failure in job https://hydra.nixos.org/build/233239086 at 2023-09-02
+  - overloaded-records # failure in job https://hydra.nixos.org/build/233235922 at 2023-09-02
+  - overture # failure in job https://hydra.nixos.org/build/233245959 at 2023-09-02
+  - owoify-hs # failure in job https://hydra.nixos.org/build/233213422 at 2023-09-02
+  - package-description-remote # failure in job https://hydra.nixos.org/build/233221358 at 2023-09-02
+  - package-version # failure in job https://hydra.nixos.org/build/233191665 at 2023-09-02
+  - package-vt # failure in job https://hydra.nixos.org/build/233225831 at 2023-09-02
+  - packdeps # failure in job https://hydra.nixos.org/build/233216607 at 2023-09-02
+  - packed-dawg # failure in job https://hydra.nixos.org/build/233207332 at 2023-09-02
+  - packed # failure in job https://hydra.nixos.org/build/233231889 at 2023-09-02
+  - packed-multikey-map # failure in job https://hydra.nixos.org/build/233234157 at 2023-09-02
+  - packedstring # failure in job https://hydra.nixos.org/build/233240511 at 2023-09-02
+  - packer-messagepack # failure in job https://hydra.nixos.org/build/233213453 at 2023-09-02
+  - pack # failure in job https://hydra.nixos.org/build/233243562 at 2023-09-02
+  - packman # failure in job https://hydra.nixos.org/build/233193792 at 2023-09-02
+  - packstream # failure in job https://hydra.nixos.org/build/233229259 at 2023-09-02
+  - packunused # failure in job https://hydra.nixos.org/build/233252566 at 2023-09-02
+  - pacman-memcache # failure in job https://hydra.nixos.org/build/233194833 at 2023-09-02
+  - padic # failure in job https://hydra.nixos.org/build/233244747 at 2023-09-02
+  - pads-haskell # failure in job https://hydra.nixos.org/build/233224030 at 2023-09-02
+  - pagarme # failure in job https://hydra.nixos.org/build/233201914 at 2023-09-02
+  - pagerduty-hs # failure in job https://hydra.nixos.org/build/233220387 at 2023-09-02
+  - pagure-hook-receiver # failure in job https://hydra.nixos.org/build/233245894 at 2023-09-02
+  - PandocAgda # failure in job https://hydra.nixos.org/build/233332745 at 2023-09-02
+  - pandoc-citeproc # failure in job https://hydra.nixos.org/build/233198462 at 2023-09-02
+  - pandoc-columns # failure in job https://hydra.nixos.org/build/233234538 at 2023-09-02
+  - pandoc-csv2table # failure in job https://hydra.nixos.org/build/233229925 at 2023-09-02
+  - pandoc-filter-graphviz # failure in job https://hydra.nixos.org/build/233233372 at 2023-09-02
+  - pandoc-filter-indent # failure in job https://hydra.nixos.org/build/233235439 at 2023-09-02
+  - pandoc-include # failure in job https://hydra.nixos.org/build/233199152 at 2023-09-02
+  - pandoc-include-plus # failure in job https://hydra.nixos.org/build/233198059 at 2023-09-02
+  - pandoc-lens # failure in job https://hydra.nixos.org/build/233251239 at 2023-09-02
+  - pandoc-linear-table # failure in job https://hydra.nixos.org/build/233254813 at 2023-09-02
+  - pandoc-link-context # failure in job https://hydra.nixos.org/build/233254006 at 2023-09-02
+  - pandoc-logic-proof # failure in job https://hydra.nixos.org/build/233223409 at 2023-09-02
+  - pandoc-markdown-ghci-filter # failure in job https://hydra.nixos.org/build/233213731 at 2023-09-02
+  - pandoc-placetable # failure in job https://hydra.nixos.org/build/233243163 at 2023-09-02
+  - pandoc-plantuml-diagrams # failure in job https://hydra.nixos.org/build/233221778 at 2023-09-02
+  - pandoc-pyplot # failure in job https://hydra.nixos.org/build/233248205 at 2023-09-02
+  - pandoc-select-code # failure in job https://hydra.nixos.org/build/233238415 at 2023-09-02
+  - pandoc-unlit # failure in job https://hydra.nixos.org/build/233219811 at 2023-09-02
+  - pandoc-utils # failure in job https://hydra.nixos.org/build/233203436 at 2023-09-02
+  - pandora # failure in job https://hydra.nixos.org/build/233211349 at 2023-09-02
+  - pang-a-lambda # failure in job https://hydra.nixos.org/build/233202706 at 2023-09-02
+  - pangraph # failure in job https://hydra.nixos.org/build/233242559 at 2023-09-02
+  - pan-os-syslog # failure in job https://hydra.nixos.org/build/233244422 at 2023-09-02
+  - panpipe # failure in job https://hydra.nixos.org/build/233257048 at 2023-09-02
+  - pansite # failure in job https://hydra.nixos.org/build/233245941 at 2023-09-02
+  - pantry-tmp # failure in job https://hydra.nixos.org/build/233662928 at 2023-09-02
+  - papa-base-export # failure in job https://hydra.nixos.org/build/233251046 at 2023-09-02
+  - papa-include # failure in job https://hydra.nixos.org/build/233226603 at 2023-09-02
+  - papa-lens-export # failure in job https://hydra.nixos.org/build/233228582 at 2023-09-02
+  - papa-lens-implement # failure in job https://hydra.nixos.org/build/233192797 at 2023-09-02
+  - papa-prelude-core # failure in job https://hydra.nixos.org/build/233212274 at 2023-09-02
+  - papa-prelude # failure in job https://hydra.nixos.org/build/233256276 at 2023-09-02
+  - papa-prelude-lens # failure in job https://hydra.nixos.org/build/233213147 at 2023-09-02
+  - papa-prelude-semigroupoids # failure in job https://hydra.nixos.org/build/233250360 at 2023-09-02
+  - papa-prelude-semigroups # failure in job https://hydra.nixos.org/build/233199275 at 2023-09-02
+  - papa-semigroupoids-implement # failure in job https://hydra.nixos.org/build/233234835 at 2023-09-02
+  - paphragen # failure in job https://hydra.nixos.org/build/233206378 at 2023-09-02
+  - papillon # failure in job https://hydra.nixos.org/build/233195439 at 2023-09-02
+  - pappy # failure in job https://hydra.nixos.org/build/233213934 at 2023-09-02
+  - paragon # failure in job https://hydra.nixos.org/build/233205056 at 2023-09-02
+  - Parallel-Arrows-Definition # failure in job https://hydra.nixos.org/build/233234042 at 2023-09-02
+  - parallel-tasks # failure in job https://hydra.nixos.org/build/233232488 at 2023-09-02
+  - parameterized-data # failure in job https://hydra.nixos.org/build/233250720 at 2023-09-02
+  - paranoia # failure in job https://hydra.nixos.org/build/233241355 at 2023-09-02
+  - parco # failure in job https://hydra.nixos.org/build/233248490 at 2023-09-02
+  - parcom-lib # failure in job https://hydra.nixos.org/build/233222095 at 2023-09-02
+  - pareto # failure in job https://hydra.nixos.org/build/233216417 at 2023-09-02
+  - paripari # failure in job https://hydra.nixos.org/build/233234391 at 2023-09-02
+  - parochial # failure in job https://hydra.nixos.org/build/233239964 at 2023-09-02
+  - PArrows # failure in job https://hydra.nixos.org/build/233232332 at 2023-09-02
+  - Parry # failure in job https://hydra.nixos.org/build/233230444 at 2023-09-02
+  - parsec2 # failure in job https://hydra.nixos.org/build/233225643 at 2023-09-02
+  - parsec3 # failure in job https://hydra.nixos.org/build/233221004 at 2023-09-02
+  - parsec-parsers # failure in job https://hydra.nixos.org/build/233219781 at 2023-09-02
+  - parsec-pratt # failure in job https://hydra.nixos.org/build/233194863 at 2023-09-02
+  - parseerror-eq # failure in job https://hydra.nixos.org/build/233250555 at 2023-09-02
+  - parse # failure in job https://hydra.nixos.org/build/233246780 at 2023-09-02
+  - parse-gcstats # failure in job https://hydra.nixos.org/build/233241500 at 2023-09-02
+  - parsely # failure in job https://hydra.nixos.org/build/233205027 at 2023-09-02
+  - parser241 # failure in job https://hydra.nixos.org/build/233238792 at 2023-09-02
+  - parser-combinators-tests # failure in job https://hydra.nixos.org/build/233259610 at 2023-09-02
+  - parsergen # failure in job https://hydra.nixos.org/build/233197332 at 2023-09-02
+  - parser-helper # failure in job https://hydra.nixos.org/build/233198774 at 2023-09-02
+  - parsers-megaparsec # failure in job https://hydra.nixos.org/build/233234736 at 2023-09-02
+  - parser-unbiased-choice-monad-embedding # failure in job https://hydra.nixos.org/build/233258179 at 2023-09-02
+  - parsimony # failure in job https://hydra.nixos.org/build/233230339 at 2023-09-02
+  - parsix # failure in job https://hydra.nixos.org/build/233250899 at 2023-09-02
+  - parsley-core # failure in job https://hydra.nixos.org/build/233240217 at 2023-09-02
+  - parsnip # failure in job https://hydra.nixos.org/build/233229093 at 2023-09-02
+  - partial-lens # failure in job https://hydra.nixos.org/build/233234761 at 2023-09-02
+  - partial-records # failure in job https://hydra.nixos.org/build/233205143 at 2023-09-02
+  - partly # failure in job https://hydra.nixos.org/build/233229003 at 2023-09-02
+  - passage # failure in job https://hydra.nixos.org/build/233192945 at 2023-09-02
+  - passman-core # failure in job https://hydra.nixos.org/build/233217997 at 2023-09-02
+  - passman # failure in job https://hydra.nixos.org/build/233234939 at 2023-09-02
+  - PasswordGenerator # failure in job https://hydra.nixos.org/build/233242634 at 2023-09-02
+  - passwords # failure in job https://hydra.nixos.org/build/233234987 at 2023-09-02
+  - pasta-curves # failure in job https://hydra.nixos.org/build/233196512 at 2023-09-02
+  - pasta # failure in job https://hydra.nixos.org/build/233216549 at 2023-09-02
+  - pastis # failure in job https://hydra.nixos.org/build/233218498 at 2023-09-02
+  - pasty # failure in job https://hydra.nixos.org/build/233251812 at 2023-09-02
+  - patches-vector # failure in job https://hydra.nixos.org/build/233244862 at 2023-09-02
+  - Pathfinder # failure in job https://hydra.nixos.org/build/233236573 at 2023-09-02
+  - path-formatting # failure in job https://hydra.nixos.org/build/233199358 at 2023-09-02
+  - PathTree # failure in job https://hydra.nixos.org/build/233216203 at 2023-09-02
+  - patronscraper # failure in job https://hydra.nixos.org/build/233258571 at 2023-09-02
+  - pattern-trie # failure in job https://hydra.nixos.org/build/233237252 at 2023-09-02
+  - paynow-zw # failure in job https://hydra.nixos.org/build/233221916 at 2023-09-02
+  - paypal-adaptive-hoops # failure in job https://hydra.nixos.org/build/233244557 at 2023-09-02
+  - paypal-api # failure in job https://hydra.nixos.org/build/233228585 at 2023-09-02
+  - pbc4hs # failure in job https://hydra.nixos.org/build/233247062 at 2023-09-02
+  - pb # failure in job https://hydra.nixos.org/build/233193210 at 2023-09-02
+  - PBKDF2 # failure in job https://hydra.nixos.org/build/233201545 at 2023-09-02
+  - pb-next # failure in job https://hydra.nixos.org/build/233217547 at 2023-09-02
+  - pcd-loader # failure in job https://hydra.nixos.org/build/233230290 at 2023-09-02
+  - pcf-font-embed # failure in job https://hydra.nixos.org/build/233246806 at 2023-09-02
+  - pcgen # failure in job https://hydra.nixos.org/build/233195356 at 2023-09-02
+  - PCLT # failure in job https://hydra.nixos.org/build/233246845 at 2023-09-02
+  - pcre-light-extra # failure in job https://hydra.nixos.org/build/233194585 at 2023-09-02
+  - pdfinfo # failure in job https://hydra.nixos.org/build/233214432 at 2023-09-02
+  - pdf-slave-template # failure in job https://hydra.nixos.org/build/233217870 at 2023-09-02
+  - pdf-toolbox-viewer # failure in job https://hydra.nixos.org/build/233196461 at 2023-09-02
+  - pdftotext # failure in job https://hydra.nixos.org/build/233242086 at 2023-09-02
+  - pdynload # failure in job https://hydra.nixos.org/build/233226504 at 2023-09-02
+  - PeanoWitnesses # failure in job https://hydra.nixos.org/build/233207451 at 2023-09-02
+  - pecoff # failure in job https://hydra.nixos.org/build/233231268 at 2023-09-02
+  - pedestrian-dag # failure in job https://hydra.nixos.org/build/233258214 at 2023-09-02
+  - peg # failure in job https://hydra.nixos.org/build/233219135 at 2023-09-02
+  - peggy # failure in job https://hydra.nixos.org/build/233219739 at 2023-09-02
+  - pencil # failure in job https://hydra.nixos.org/build/233241521 at 2023-09-02
+  - penntreebank-megaparsec # failure in job https://hydra.nixos.org/build/233192370 at 2023-09-02
+  - percent-encoder # failure in job https://hydra.nixos.org/build/233227242 at 2023-09-02
+  - perceptron # failure in job https://hydra.nixos.org/build/233192246 at 2023-09-02
+  - peregrin # failure in job https://hydra.nixos.org/build/233219228 at 2023-09-02
+  - PerfectHash # failure in job https://hydra.nixos.org/build/233252581 at 2023-09-02
+  - perfect-vector-shuffle # failure in job https://hydra.nixos.org/build/233195328 at 2023-09-02
+  - perhaps # failure in job https://hydra.nixos.org/build/233206486 at 2023-09-02
+  - periodic-common # failure in job https://hydra.nixos.org/build/233224868 at 2023-09-02
+  - periodic # failure in job https://hydra.nixos.org/build/233192615 at 2023-09-02
+  - periodic-polynomials # failure in job https://hydra.nixos.org/build/233251520 at 2023-09-02
+  - permutation # failure in job https://hydra.nixos.org/build/233232155 at 2023-09-02
+  - permute # failure in job https://hydra.nixos.org/build/233238641 at 2023-09-02
+  - persist2er # failure in job https://hydra.nixos.org/build/233243953 at 2023-09-02
+  - Persistence # failure in job https://hydra.nixos.org/build/233226467 at 2023-09-02
+  - persistent-cereal # failure in job https://hydra.nixos.org/build/233240762 at 2023-09-02
+  - persistent-database-url # failure in job https://hydra.nixos.org/build/233233601 at 2023-09-02
+  - persistent-equivalence # failure in job https://hydra.nixos.org/build/233208713 at 2023-09-02
+  - persistent-generic # failure in job https://hydra.nixos.org/build/233220060 at 2023-09-02
+  - persistent-mongoDB # failure in job https://hydra.nixos.org/build/233207971 at 2023-09-02
+  - persistent-odbc # failure in job https://hydra.nixos.org/build/233191221 at 2023-09-02
+  - persistent-postgresql-streaming # failure in job https://hydra.nixos.org/build/233194038 at 2023-09-02
+  - persistent-ratelimit # failure in job https://hydra.nixos.org/build/233224537 at 2023-09-02
+  - persistent-stm # failure in job https://hydra.nixos.org/build/233234706 at 2023-09-02
+  - persistent-template-classy # failure in job https://hydra.nixos.org/build/233230341 at 2023-09-02
+  - persist # failure in job https://hydra.nixos.org/build/233234953 at 2023-09-02
+  - persist-state # failure in job https://hydra.nixos.org/build/233249568 at 2023-09-02
+  - persona # failure in job https://hydra.nixos.org/build/233209614 at 2023-09-02
+  - pesca # failure in job https://hydra.nixos.org/build/233231301 at 2023-09-02
+  - pez # failure in job https://hydra.nixos.org/build/233212139 at 2023-09-02
+  - pgdl # failure in job https://hydra.nixos.org/build/233203790 at 2023-09-02
+  - pg-extras # failure in job https://hydra.nixos.org/build/233253845 at 2023-09-02
+  - pgf2 # failure in job https://hydra.nixos.org/build/233234332 at 2023-09-02
+  - pg-harness # failure in job https://hydra.nixos.org/build/233219805 at 2023-09-02
+  - pg-harness-server # failure in job https://hydra.nixos.org/build/233236493 at 2023-09-02
+  - pg-recorder # failure in job https://hydra.nixos.org/build/233241248 at 2023-09-02
+  - pgsql-simple # failure in job https://hydra.nixos.org/build/233228421 at 2023-09-02
+  - pg-store # failure in job https://hydra.nixos.org/build/233208603 at 2023-09-02
+  - pgstream # failure in job https://hydra.nixos.org/build/233201596 at 2023-09-02
+  - pg-transact # failure in job https://hydra.nixos.org/build/233253337 at 2023-09-02
+  - pgvector # failure in job https://hydra.nixos.org/build/233202205 at 2023-09-02
+  - phasechange # failure in job https://hydra.nixos.org/build/233254293 at 2023-09-02
+  - phaser # failure in job https://hydra.nixos.org/build/233250604 at 2023-09-02
+  - phoityne # failure in job https://hydra.nixos.org/build/233195238 at 2023-09-02
+  - phoityne-vscode # failure in job https://hydra.nixos.org/build/233190938 at 2023-09-02
+  - phone-metadata # failure in job https://hydra.nixos.org/build/233256096 at 2023-09-02
+  - phone-numbers # failure in job https://hydra.nixos.org/build/233217584 at 2023-09-02
+  - phone-push # failure in job https://hydra.nixos.org/build/233246934 at 2023-09-02
+  - phonetic-languages-constaints # failure in job https://hydra.nixos.org/build/233232580 at 2023-09-02
+  - phonetic-languages-simplified-generalized-examples-array # failure in job https://hydra.nixos.org/build/233245242 at 2023-09-02
+  - phonetic-languages-simplified-properties-array # failure in job https://hydra.nixos.org/build/233195530 at 2023-09-02
+  - phonetic-languages-simplified-properties-array-old # failure in job https://hydra.nixos.org/build/233258258 at 2023-09-02
+  - phonetic-languages-vector # failure in job https://hydra.nixos.org/build/233258156 at 2023-09-02
+  - phraskell # failure in job https://hydra.nixos.org/build/233202906 at 2023-09-02
+  - Phsu # failure in job https://hydra.nixos.org/build/233243595 at 2023-09-02
+  - pia-forward # failure in job https://hydra.nixos.org/build/233219067 at 2023-09-02
+  - pi-calculus # failure in job https://hydra.nixos.org/build/233247119 at 2023-09-02
+  - picedit # failure in job https://hydra.nixos.org/build/233204167 at 2023-09-02
+  - pickle # failure in job https://hydra.nixos.org/build/233255980 at 2023-09-02
+  - picologic # failure in job https://hydra.nixos.org/build/233202882 at 2023-09-02
+  - picoparsec # failure in job https://hydra.nixos.org/build/233251453 at 2023-09-02
+  - pictikz # failure in job https://hydra.nixos.org/build/233240766 at 2023-09-02
+  - pier-core # failure in job https://hydra.nixos.org/build/233234325 at 2023-09-02
+  - piet # failure in job https://hydra.nixos.org/build/233259843 at 2023-09-02
+  - pi-forall # failure in job https://hydra.nixos.org/build/233247486 at 2023-09-02
+  - pig # failure in job https://hydra.nixos.org/build/233234188 at 2023-09-02
+  - pi-hoole # failure in job https://hydra.nixos.org/build/233242115 at 2023-09-02
+  - pi-lcd # failure in job https://hydra.nixos.org/build/233251924 at 2023-09-02
+  - pinboard # failure in job https://hydra.nixos.org/build/233239482 at 2023-09-02
+  - pinch-gen # failure in job https://hydra.nixos.org/build/233212466 at 2023-09-02
+  - pinchot # failure in job https://hydra.nixos.org/build/233230585 at 2023-09-02
+  - Pipe # failure in job https://hydra.nixos.org/build/233243604 at 2023-09-02
+  - pipes-async # failure in job https://hydra.nixos.org/build/233194729 at 2023-09-02
+  - pipes-bgzf # failure in job https://hydra.nixos.org/build/233238921 at 2023-09-02
+  - pipes-break # failure in job https://hydra.nixos.org/build/233250730 at 2023-09-02
+  - pipes-brotli # failure in job https://hydra.nixos.org/build/233254662 at 2023-09-02
+  - pipes-bzip # failure in job https://hydra.nixos.org/build/233222309 at 2023-09-02
+  - pipes-category # failure in job https://hydra.nixos.org/build/233200163 at 2023-09-02
+  - pipes-cereal # failure in job https://hydra.nixos.org/build/233195413 at 2023-09-02
+  - pipes-core # failure in job https://hydra.nixos.org/build/233213024 at 2023-09-02
+  - pipes-errors # failure in job https://hydra.nixos.org/build/233214912 at 2023-09-02
+  - pipes-interleave # failure in job https://hydra.nixos.org/build/233247428 at 2023-09-02
+  - pipes-io # failure in job https://hydra.nixos.org/build/233243253 at 2023-09-02
+  - pipes-lines # failure in job https://hydra.nixos.org/build/233243979 at 2023-09-02
+  - pipes-lzma # failure in job https://hydra.nixos.org/build/233256730 at 2023-09-02
+  - pipes-network-ws # failure in job https://hydra.nixos.org/build/233245816 at 2023-09-02
+  - pipes-protolude # failure in job https://hydra.nixos.org/build/233216770 at 2023-09-02
+  - pipes-rt # failure in job https://hydra.nixos.org/build/233192738 at 2023-09-02
+  - pipes-s3 # failure in job https://hydra.nixos.org/build/233212176 at 2023-09-02
+  - pipes-shell # failure in job https://hydra.nixos.org/build/233201295 at 2023-09-02
+  - pipes-sqlite-simple # failure in job https://hydra.nixos.org/build/233192011 at 2023-09-02
+  - pipes-transduce # failure in job https://hydra.nixos.org/build/233255687 at 2023-09-02
+  - pipes-vector # failure in job https://hydra.nixos.org/build/233230658 at 2023-09-02
+  - pipes-zeromq4 # failure in job https://hydra.nixos.org/build/233225144 at 2023-09-02
+  - Piso # failure in job https://hydra.nixos.org/build/233248525 at 2023-09-02
+  - pit # failure in job https://hydra.nixos.org/build/233231533 at 2023-09-02
+  - pivotal-tracker # failure in job https://hydra.nixos.org/build/233247891 at 2023-09-02
+  - pixela # failure in job https://hydra.nixos.org/build/233212880 at 2023-09-02
+  - pixelated-avatar-generator # failure in job https://hydra.nixos.org/build/233226212 at 2023-09-02
+  - pixel-printer # failure in job https://hydra.nixos.org/build/233238475 at 2023-09-02
+  - pixiv # failure in job https://hydra.nixos.org/build/233192807 at 2023-09-02
+  - pkcs10 # failure in job https://hydra.nixos.org/build/233212551 at 2023-09-02
+  - pkcs7 # failure in job https://hydra.nixos.org/build/233191635 at 2023-09-02
+  - pkggraph # failure in job https://hydra.nixos.org/build/233238971 at 2023-09-02
+  - plailude # failure in job https://hydra.nixos.org/build/233233772 at 2023-09-02
+  - plan-applicative # failure in job https://hydra.nixos.org/build/233202905 at 2023-09-02
+  - planar-graph # failure in job https://hydra.nixos.org/build/233217108 at 2023-09-02
+  - plan-b # failure in job https://hydra.nixos.org/build/233255860 at 2023-09-02
+  - planb-token-introspection # failure in job https://hydra.nixos.org/build/233226890 at 2023-09-02
+  - planet-mitchell-test # failure in job https://hydra.nixos.org/build/233198054 at 2023-09-02
+  - plankton # failure in job https://hydra.nixos.org/build/233216254 at 2023-09-02
+  - plat # failure in job https://hydra.nixos.org/build/233205071 at 2023-09-02
+  - platinum-parsing # failure in job https://hydra.nixos.org/build/233225071 at 2023-09-02
+  - PlayingCards # failure in job https://hydra.nixos.org/build/233239100 at 2023-09-02
+  - playlists # failure in job https://hydra.nixos.org/build/233240151 at 2023-09-02
+  - plist-buddy # failure in job https://hydra.nixos.org/build/233199181 at 2023-09-02
+  - plist # failure in job https://hydra.nixos.org/build/233233906 at 2023-09-02
+  - plivo # failure in job https://hydra.nixos.org/build/233256647 at 2023-09-02
+  - ploterific # failure in job https://hydra.nixos.org/build/233228102 at 2023-09-02
+  - plot-gtk3 # failure in job https://hydra.nixos.org/build/233202048 at 2023-09-02
+  - plot-gtk # failure in job https://hydra.nixos.org/build/233241286 at 2023-09-02
+  - plot-gtk-ui # failure in job https://hydra.nixos.org/build/233205192 at 2023-09-02
+  - plot-lab # failure in job https://hydra.nixos.org/build/233242283 at 2023-09-02
+  - plots # failure in job https://hydra.nixos.org/build/233207279 at 2023-09-02
+  - plow-log-async # failure in job https://hydra.nixos.org/build/233201736 at 2023-09-02
+  - plugins # failure in job https://hydra.nixos.org/build/233239631 at 2023-09-02
+  - plugins-multistage # failure in job https://hydra.nixos.org/build/233205493 at 2023-09-02
+  - plumbers # failure in job https://hydra.nixos.org/build/233221866 at 2023-09-02
+  - plural # failure in job https://hydra.nixos.org/build/233198934 at 2023-09-02
+  - plur # failure in job https://hydra.nixos.org/build/233229752 at 2023-09-02
+  - plzwrk # failure in job https://hydra.nixos.org/build/233219630 at 2023-09-02
+  - pngload-fixed # failure in job https://hydra.nixos.org/build/233233956 at 2023-09-02
+  - pocket # failure in job https://hydra.nixos.org/build/233244120 at 2023-09-02
+  - podenv # failure in job https://hydra.nixos.org/build/233210257 at 2023-09-02
+  - pointedalternative # failure in job https://hydra.nixos.org/build/233205911 at 2023-09-02
+  - pointfree-fancy # failure in job https://hydra.nixos.org/build/233229134 at 2023-09-02
+  - pointful # failure in job https://hydra.nixos.org/build/233212599 at 2023-09-02
+  - pointless-haskell # failure in job https://hydra.nixos.org/build/233209713 at 2023-09-02
+  - pokemon-go-protobuf-types # failure in job https://hydra.nixos.org/build/233218347 at 2023-09-02
+  - poker-base # failure in job https://hydra.nixos.org/build/233221473 at 2023-09-02
+  - poker-eval # failure in job https://hydra.nixos.org/build/233259714 at 2023-09-02
+  - pokitdok # failure in job https://hydra.nixos.org/build/233251624 at 2023-09-02
+  - polar-configfile # failure in job https://hydra.nixos.org/build/233194279 at 2023-09-02
+  - polar-shader # failure in job https://hydra.nixos.org/build/233258190 at 2023-09-02
+  - policeman # failure in job https://hydra.nixos.org/build/233199941 at 2023-09-02
+  - polling-cache # failure in job https://hydra.nixos.org/build/233211378 at 2023-09-02
+  - Pollutocracy # failure in job https://hydra.nixos.org/build/234458943 at 2023-09-13
+  - poly-cont # failure in job https://hydra.nixos.org/build/233223995 at 2023-09-02
+  - poly-control # failure in job https://hydra.nixos.org/build/233190876 at 2023-09-02
+  - polydata-core # failure in job https://hydra.nixos.org/build/233232049 at 2023-09-02
+  - poly # failure in job https://hydra.nixos.org/build/233255655 at 2023-09-02
+  - polyglot # failure in job https://hydra.nixos.org/build/233218267 at 2023-09-02
+  - polynom # failure in job https://hydra.nixos.org/build/233237353 at 2023-09-02
+  - polynomial # failure in job https://hydra.nixos.org/build/233242131 at 2023-09-02
+  - polysemy-keyed-state # failure in job https://hydra.nixos.org/build/233224142 at 2023-09-02
+  - polysemy-kvstore # failure in job https://hydra.nixos.org/build/233229745 at 2023-09-02
+  - polysemy-managed # failure in job https://hydra.nixos.org/build/233221190 at 2023-09-02
+  - polysemy-optics # failure in job https://hydra.nixos.org/build/233219159 at 2023-09-02
+  - polysemy-process # failure in job https://hydra.nixos.org/build/233238650 at 2023-09-02
+  - polysemy-readline # failure in job https://hydra.nixos.org/build/233219007 at 2023-09-02
+  - polysemy-req # failure in job https://hydra.nixos.org/build/233224435 at 2023-09-02
+  - polysemy-several # failure in job https://hydra.nixos.org/build/233216921 at 2023-09-02
+  - polysemy-socket # failure in job https://hydra.nixos.org/build/233195754 at 2023-09-02
+  - polyseq # failure in job https://hydra.nixos.org/build/233191210 at 2023-09-02
+  - polytypeable # failure in job https://hydra.nixos.org/build/233211797 at 2023-09-02
+  - polyvariadic # failure in job https://hydra.nixos.org/build/233250822 at 2023-09-02
+  - pomaps # failure in job https://hydra.nixos.org/build/233246145 at 2023-09-02
+  - pomohoro # failure in job https://hydra.nixos.org/build/233244601 at 2023-09-02
+  - ponder # failure in job https://hydra.nixos.org/build/233223646 at 2023-09-02
+  - pong-server # failure in job https://hydra.nixos.org/build/233194974 at 2023-09-02
+  - pontarius-xmpp-extras # failure in job https://hydra.nixos.org/build/233246212 at 2023-09-02
+  - pontarius-xpmn # failure in job https://hydra.nixos.org/build/233217546 at 2023-09-02
+  - poolboy # failure in job https://hydra.nixos.org/build/233195085 at 2023-09-02
+  - pool-conduit # failure in job https://hydra.nixos.org/build/233246643 at 2023-09-02
+  - pool # failure in job https://hydra.nixos.org/build/233205364 at 2023-09-02
+  - pop3-client # failure in job https://hydra.nixos.org/build/233251475 at 2023-09-02
+  - popkey # failure in job https://hydra.nixos.org/build/233203892 at 2023-09-02
+  - poppler # failure in job https://hydra.nixos.org/build/233196044 at 2023-09-02
+  - porpoise # failure in job https://hydra.nixos.org/build/233191117 at 2023-09-02
+  - portager # failure in job https://hydra.nixos.org/build/233192963 at 2023-09-02
+  - porte # failure in job https://hydra.nixos.org/build/233224391 at 2023-09-02
+  - PortFusion # failure in job https://hydra.nixos.org/build/233248354 at 2023-09-02
+  - posable # failure in job https://hydra.nixos.org/build/233217897 at 2023-09-02
+  - posit # failure in job https://hydra.nixos.org/build/233229714 at 2023-09-02
+  - positron # failure in job https://hydra.nixos.org/build/233256252 at 2023-09-02
+  - posix-acl # failure in job https://hydra.nixos.org/build/233222892 at 2023-09-02
+  - posix-api # failure in job https://hydra.nixos.org/build/233240089 at 2023-09-02
+  - posix-realtime # failure in job https://hydra.nixos.org/build/233191463 at 2023-09-02
+  - posix-waitpid # failure in job https://hydra.nixos.org/build/233206551 at 2023-09-02
+  - posplyu # failure in job https://hydra.nixos.org/build/233230437 at 2023-09-02
+  - postcodes # failure in job https://hydra.nixos.org/build/233247290 at 2023-09-02
+  - postgres-embedded # failure in job https://hydra.nixos.org/build/233246098 at 2023-09-02
+  - postgresql-common # failure in job https://hydra.nixos.org/build/233257104 at 2023-09-02
+  - postgresql-config # failure in job https://hydra.nixos.org/build/233197788 at 2023-09-02
+  - postgresql-cube # failure in job https://hydra.nixos.org/build/233195283 at 2023-09-02
+  - PostgreSQL # failure in job https://hydra.nixos.org/build/233258066 at 2023-09-02
+  - postgresql-lo-stream # failure in job https://hydra.nixos.org/build/233194012 at 2023-09-02
+  - postgresql-ltree # failure in job https://hydra.nixos.org/build/233199998 at 2023-09-02
+  - postgresql-named # failure in job https://hydra.nixos.org/build/233241920 at 2023-09-02
+  - postgresql-orm # failure in job https://hydra.nixos.org/build/233219383 at 2023-09-02
+  - postgresql-query # failure in job https://hydra.nixos.org/build/233202114 at 2023-09-02
+  - postgresql-replicant # failure in job https://hydra.nixos.org/build/233247943 at 2023-09-02
+  - postgresql-resilient # failure in job https://hydra.nixos.org/build/233212362 at 2023-09-02
+  - postgresql-simple-bind # failure in job https://hydra.nixos.org/build/233220640 at 2023-09-02
+  - postgresql-simple-migration # failure in job https://hydra.nixos.org/build/233222723 at 2023-09-02
+  - postgresql-simple-named # failure in job https://hydra.nixos.org/build/233202481 at 2023-09-02
+  - postgresql-simple-sop # failure in job https://hydra.nixos.org/build/233249757 at 2023-09-02
+  - postgresql-tx-monad-logger # failure in job https://hydra.nixos.org/build/233227034 at 2023-09-02
+  - postgresql-tx-simple # failure in job https://hydra.nixos.org/build/233242850 at 2023-09-02
+  - postgresql-typed-lifted # failure in job https://hydra.nixos.org/build/233215141 at 2023-09-02
+  - postgres-tmp # failure in job https://hydra.nixos.org/build/233258685 at 2023-09-02
+  - postgrest-ws # failure in job https://hydra.nixos.org/build/233247807 at 2023-09-02
+  - postgres-websockets # failure in job https://hydra.nixos.org/build/233199923 at 2023-09-02
+  - postie # failure in job https://hydra.nixos.org/build/233259075 at 2023-09-02
+  - postmark-streams # failure in job https://hydra.nixos.org/build/233233210 at 2023-09-02
+  - postmaster # failure in job https://hydra.nixos.org/build/233258599 at 2023-09-02
+  - potato-tool # failure in job https://hydra.nixos.org/build/233242728 at 2023-09-02
+  - potoki-core # failure in job https://hydra.nixos.org/build/233218616 at 2023-09-02
+  - powerdns # failure in job https://hydra.nixos.org/build/233213008 at 2023-09-02
+  - powermate # failure in job https://hydra.nixos.org/build/233224977 at 2023-09-02
+  - powerpc # failure in job https://hydra.nixos.org/build/233217983 at 2023-09-02
+  - powerqueue-levelmem # failure in job https://hydra.nixos.org/build/233232882 at 2023-09-02
+  - pprecord # failure in job https://hydra.nixos.org/build/233198838 at 2023-09-02
+  - PPrinter # failure in job https://hydra.nixos.org/build/233253160 at 2023-09-02
+  - pqc # failure in job https://hydra.nixos.org/build/233217425 at 2023-09-02
+  - praglude # failure in job https://hydra.nixos.org/build/233227990 at 2023-09-02
+  - preamble # failure in job https://hydra.nixos.org/build/233214735 at 2023-09-02
+  - precis # failure in job https://hydra.nixos.org/build/233218390 at 2023-09-02
+  - precursor # failure in job https://hydra.nixos.org/build/233243544 at 2023-09-02
+  - predicate-class # failure in job https://hydra.nixos.org/build/233229898 at 2023-09-02
+  - predicate-typed # failure in job https://hydra.nixos.org/build/233202614 at 2023-09-02
+  - prednote # failure in job https://hydra.nixos.org/build/233253938 at 2023-09-02
+  - prefork # failure in job https://hydra.nixos.org/build/233213524 at 2023-09-02
+  - pregame # failure in job https://hydra.nixos.org/build/233206528 at 2023-09-02
+  - preliminaries # failure in job https://hydra.nixos.org/build/233210546 at 2023-09-02
+  - Prelude # failure in job https://hydra.nixos.org/build/233198144 at 2023-09-02
+  - prelude-generalize # failure in job https://hydra.nixos.org/build/233197167 at 2023-09-02
+  - prelude-plus # failure in job https://hydra.nixos.org/build/233252792 at 2023-09-02
+  - preprocess-haskell # failure in job https://hydra.nixos.org/build/233212371 at 2023-09-02
+  - preprocessor # failure in job https://hydra.nixos.org/build/233225468 at 2023-09-02
+  - preql # failure in job https://hydra.nixos.org/build/233192349 at 2023-09-02
+  - presburger # failure in job https://hydra.nixos.org/build/233200745 at 2023-09-02
+  - present # failure in job https://hydra.nixos.org/build/233247937 at 2023-09-02
+  - press # failure in job https://hydra.nixos.org/build/233244648 at 2023-09-02
+  - pretty-compact # failure in job https://hydra.nixos.org/build/233230012 at 2023-09-02
+  - pretty-ghci # failure in job https://hydra.nixos.org/build/233236777 at 2023-09-02
+  - pretty-loc # failure in job https://hydra.nixos.org/build/233198098 at 2023-09-02
+  - pretty-ncols # failure in job https://hydra.nixos.org/build/233220264 at 2023-09-02
+  - prettyprinter-vty # failure in job https://hydra.nixos.org/build/233251729 at 2023-09-02
+  - primal # failure in job https://hydra.nixos.org/build/233260049 at 2023-09-02
+  - prim-array # failure in job https://hydra.nixos.org/build/233220574 at 2023-09-02
+  - prime # failure in job https://hydra.nixos.org/build/233197550 at 2023-09-02
+  - primes-type # failure in job https://hydra.nixos.org/build/233258302 at 2023-09-02
+  - prim # failure in job https://hydra.nixos.org/build/233215988 at 2023-09-02
+  - prim-instances # failure in job https://hydra.nixos.org/build/233215690 at 2023-09-02
+  - PrimitiveArray # failure in job https://hydra.nixos.org/build/233204574 at 2023-09-02
+  - PrimitiveArray-Pretty # failure in job https://hydra.nixos.org/build/233234197 at 2023-09-02
+  - primitive-atomic # failure in job https://hydra.nixos.org/build/233219043 at 2023-09-02
+  - primitive-checked # failure in job https://hydra.nixos.org/build/233211674 at 2023-09-02
+  - primitive-convenience # failure in job https://hydra.nixos.org/build/233223846 at 2023-09-02
+  - primitive-foreign # failure in job https://hydra.nixos.org/build/233247413 at 2023-09-02
+  - primitive-indexed # failure in job https://hydra.nixos.org/build/233245884 at 2023-09-02
+  - primitive-maybe # failure in job https://hydra.nixos.org/build/233205279 at 2023-09-02
+  - primitive-primvar # failure in job https://hydra.nixos.org/build/233213521 at 2023-09-02
+  - primitive-simd # failure in job https://hydra.nixos.org/build/233247045 at 2023-09-02
+  - primitive-slice # failure in job https://hydra.nixos.org/build/233245739 at 2023-09-02
+  - primitive-sort # failure in job https://hydra.nixos.org/build/233233750 at 2023-09-02
+  - primitive-stablename # failure in job https://hydra.nixos.org/build/233251421 at 2023-09-02
+  - prim-ref # failure in job https://hydra.nixos.org/build/233226138 at 2023-09-02
+  - pringletons # failure in job https://hydra.nixos.org/build/233246491 at 2023-09-02
+  - printcess # failure in job https://hydra.nixos.org/build/233212768 at 2023-09-02
+  - print-debugger # failure in job https://hydra.nixos.org/build/233229154 at 2023-09-02
+  - print-info # failure in job https://hydra.nixos.org/build/233246545 at 2023-09-02
+  - prints # failure in job https://hydra.nixos.org/build/233201961 at 2023-09-02
+  - PriorityChansConverger # failure in job https://hydra.nixos.org/build/233217782 at 2023-09-02
+  - priority-queue # failure in job https://hydra.nixos.org/build/233253122 at 2023-09-02
+  - pro-abstract # failure in job https://hydra.nixos.org/build/233213330 at 2023-09-02
+  - probable # failure in job https://hydra.nixos.org/build/233243771 at 2023-09-02
+  - prob-fx # failure in job https://hydra.nixos.org/build/233239940 at 2023-09-02
+  - Probnet # failure in job https://hydra.nixos.org/build/233190989 at 2023-09-02
+  - process-conduit # failure in job https://hydra.nixos.org/build/233225334 at 2023-09-02
+  - processing # failure in job https://hydra.nixos.org/build/233232969 at 2023-09-02
+  - process-leksah # failure in job https://hydra.nixos.org/build/233256114 at 2023-09-02
+  - process-listlike # failure in job https://hydra.nixos.org/build/233194645 at 2023-09-02
+  - processmemory # failure in job https://hydra.nixos.org/build/233217444 at 2023-09-02
+  - process-sequential # failure in job https://hydra.nixos.org/build/233221064 at 2023-09-02
+  - procrastinating-variable # failure in job https://hydra.nixos.org/build/233229350 at 2023-09-02
+  - procstat # failure in job https://hydra.nixos.org/build/233256320 at 2023-09-02
+  - product-isomorphic # failure in job https://hydra.nixos.org/build/233230736 at 2023-09-02
+  - prof2pretty # failure in job https://hydra.nixos.org/build/233240665 at 2023-09-02
+  - prof-flamegraph # failure in job https://hydra.nixos.org/build/233254675 at 2023-09-02
+  - profiteur # failure in job https://hydra.nixos.org/build/233216916 at 2023-09-02
+  - profunctor-monad # failure in job https://hydra.nixos.org/build/233190940 at 2023-09-02
+  - progression # failure in job https://hydra.nixos.org/build/233256355 at 2023-09-02
+  - progressive # failure in job https://hydra.nixos.org/build/233228075 at 2023-09-02
+  - progress-meter # failure in job https://hydra.nixos.org/build/233222787 at 2023-09-02
+  - progress-reporting # failure in job https://hydra.nixos.org/build/233200528 at 2023-09-02
+  - proj4-hs-bindings # failure in job https://hydra.nixos.org/build/233220980 at 2023-09-02
+  - project-forge # failure in job https://hydra.nixos.org/build/233253798 at 2023-09-02
+  - projectile # failure in job https://hydra.nixos.org/build/233220390 at 2023-09-02
+  - prolens # failure in job https://hydra.nixos.org/build/233232251 at 2023-09-02
+  - prolog # failure in job https://hydra.nixos.org/build/233259542 at 2023-09-02
+  - prometheus-effect # failure in job https://hydra.nixos.org/build/233215984 at 2023-09-02
+  - prometheus-wai-middleware # failure in job https://hydra.nixos.org/build/233239230 at 2023-09-02
+  - promise # failure in job https://hydra.nixos.org/build/233228578 at 2023-09-02
+  - pronounce # failure in job https://hydra.nixos.org/build/233234844 at 2023-09-02
+  - proof-assistant-bot # failure in job https://hydra.nixos.org/build/234974688 at 2023-09-13
+  - proof-combinators # failure in job https://hydra.nixos.org/build/233210521 at 2023-09-02
+  - PropaFP # failure in job https://hydra.nixos.org/build/233206496 at 2023-09-02
+  - Proper # failure in job https://hydra.nixos.org/build/233194417 at 2023-09-02
+  - properties # failure in job https://hydra.nixos.org/build/233240862 at 2023-09-02
+  - property-list # failure in job https://hydra.nixos.org/build/233254907 at 2023-09-02
+  - prop-unit # failure in job https://hydra.nixos.org/build/233233874 at 2023-09-02
+  - prosidy # failure in job https://hydra.nixos.org/build/233249779 at 2023-09-02
+  - pro-source # failure in job https://hydra.nixos.org/build/233226793 at 2023-09-02
+  - prosper # failure in job https://hydra.nixos.org/build/233244079 at 2023-09-02
+  - proteaaudio # failure in job https://hydra.nixos.org/build/233225498 at 2023-09-02
+  - proto3-wire # failure in job https://hydra.nixos.org/build/233208217 at 2023-09-02
+  - protocol-buffers # failure in job https://hydra.nixos.org/build/233220653 at 2023-09-02
+  - protocol-buffers-fork # failure in job https://hydra.nixos.org/build/233228361 at 2023-09-02
+  - protocol # failure in job https://hydra.nixos.org/build/233224436 at 2023-09-02
+  - proto-lens-arbitrary # failure in job https://hydra.nixos.org/build/233239393 at 2023-09-02
+  - protolude-lifted # failure in job https://hydra.nixos.org/build/233196312 at 2023-09-02
+  - proton-haskell # failure in job https://hydra.nixos.org/build/233214383 at 2023-09-02
+  - prototype # failure in job https://hydra.nixos.org/build/233238810 at 2023-09-02
+  - prove-everywhere-server # failure in job https://hydra.nixos.org/build/233204606 at 2023-09-02
+  - provenience # failure in job https://hydra.nixos.org/build/233247246 at 2023-09-02
+  - proxy-kindness # failure in job https://hydra.nixos.org/build/233204762 at 2023-09-02
+  - proxy-mapping # failure in job https://hydra.nixos.org/build/233227151 at 2023-09-02
+  - prune-juice # failure in job https://hydra.nixos.org/build/233198633 at 2023-09-02
+  - pseudo-trie # failure in job https://hydra.nixos.org/build/233230636 at 2023-09-02
+  - psi # failure in job https://hydra.nixos.org/build/233222861 at 2023-09-02
+  - pstemmer # failure in job https://hydra.nixos.org/build/233241342 at 2023-09-02
+  - psx # failure in job https://hydra.nixos.org/build/233199666 at 2023-09-02
+  - PTQ # failure in job https://hydra.nixos.org/build/233202571 at 2023-09-02
+  - pub # failure in job https://hydra.nixos.org/build/233255415 at 2023-09-02
+  - publicsuffix # failure in job https://hydra.nixos.org/build/233241572 at 2023-09-02
+  - publicsuffixlistcreate # failure in job https://hydra.nixos.org/build/233251430 at 2023-09-02
+  - publish # failure in job https://hydra.nixos.org/build/233247247 at 2023-09-02
+  - pubnub # failure in job https://hydra.nixos.org/build/233221264 at 2023-09-02
+  - pubsub # failure in job https://hydra.nixos.org/build/233257241 at 2023-09-02
+  - pugixml # failure in job https://hydra.nixos.org/build/233241247 at 2023-09-02
+  - pugs-DrIFT # failure in job https://hydra.nixos.org/build/233216584 at 2023-09-02
+  - pugs-HsSyck # failure in job https://hydra.nixos.org/build/233242766 at 2023-09-02
+  - PUH-Project # failure in job https://hydra.nixos.org/build/233238918 at 2023-09-02
+  - Pup-Events-Server # failure in job https://hydra.nixos.org/build/233198287 at 2023-09-02
+  - pure-io # failure in job https://hydra.nixos.org/build/233235168 at 2023-09-02
+  - pure-priority-queue # failure in job https://hydra.nixos.org/build/233258014 at 2023-09-02
+  - purescript-ast # failure in job https://hydra.nixos.org/build/233204157 at 2023-09-02
+  - purescript-cst # failure in job https://hydra.nixos.org/build/233197178 at 2023-09-02
+  - pure-zlib # failure in job https://hydra.nixos.org/build/233241392 at 2023-09-02
+  - purview # failure in job https://hydra.nixos.org/build/233208821 at 2023-09-02
+  - pushbullet # failure in job https://hydra.nixos.org/build/233209340 at 2023-09-02
+  - pushbullet-types # failure in job https://hydra.nixos.org/build/233242388 at 2023-09-02
+  - pusher-haskell # failure in job https://hydra.nixos.org/build/233201954 at 2023-09-02
+  - pusher-ws # failure in job https://hydra.nixos.org/build/233204133 at 2023-09-02
+  - pushme # failure in job https://hydra.nixos.org/build/233212481 at 2023-09-02
+  - push-notifications # failure in job https://hydra.nixos.org/build/233199364 at 2023-09-02
+  - putlenses # failure in job https://hydra.nixos.org/build/233197372 at 2023-09-02
+  - puzzle-draw # failure in job https://hydra.nixos.org/build/233204953 at 2023-09-02
+  - pvector # failure in job https://hydra.nixos.org/build/233217965 at 2023-09-02
+  - pyffi # failure in job https://hydra.nixos.org/build/233260156 at 2023-09-02
+  - pyfi # failure in job https://hydra.nixos.org/build/233214389 at 2023-09-02
+  - python-pickle # failure in job https://hydra.nixos.org/build/233230321 at 2023-09-02
+  - q4c12-twofinger # failure in job https://hydra.nixos.org/build/233190771 at 2023-09-02
+  - qc-oi-testgenerator # failure in job https://hydra.nixos.org/build/233197822 at 2023-09-02
+  - qd # failure in job https://hydra.nixos.org/build/233213936 at 2023-09-02
+  - qed # failure in job https://hydra.nixos.org/build/233249635 at 2023-09-02
+  - qhull-simple # failure in job https://hydra.nixos.org/build/233248108 at 2023-09-02
+  - qif # failure in job https://hydra.nixos.org/build/233227609 at 2023-09-02
+  - QIO # failure in job https://hydra.nixos.org/build/233233009 at 2023-09-02
+  - QLearn # failure in job https://hydra.nixos.org/build/233252190 at 2023-09-02
+  - qlinear # failure in job https://hydra.nixos.org/build/233214014 at 2023-09-02
+  - qrcode # failure in job https://hydra.nixos.org/build/233225438 at 2023-09-02
+  - qr-imager # failure in job https://hydra.nixos.org/build/233201973 at 2023-09-02
+  - qt # failure in job https://hydra.nixos.org/build/233248869 at 2023-09-02
+  - QuadEdge # failure in job https://hydra.nixos.org/build/233249144 at 2023-09-02
+  - QuadTree # failure in job https://hydra.nixos.org/build/233234922 at 2023-09-02
+  - qualified-imports-plugin # failure in job https://hydra.nixos.org/build/233234707 at 2023-09-02
+  - quandl-api # failure in job https://hydra.nixos.org/build/233219173 at 2023-09-02
+  - quantification # failure in job https://hydra.nixos.org/build/233217183 at 2023-09-02
+  - quantum-arrow # failure in job https://hydra.nixos.org/build/233219576 at 2023-09-02
+  - quarantimer # failure in job https://hydra.nixos.org/build/233598108 at 2023-09-02
+  - qudb # failure in job https://hydra.nixos.org/build/233238799 at 2023-09-02
+  - quenya-verb # failure in job https://hydra.nixos.org/build/233209006 at 2023-09-02
+  - querystring-pickle # failure in job https://hydra.nixos.org/build/233246108 at 2023-09-02
+  - questioner # failure in job https://hydra.nixos.org/build/233213704 at 2023-09-02
+  - quibble-core # failure in job https://hydra.nixos.org/build/233200635 at 2023-09-02
+  - quic # failure in job https://hydra.nixos.org/build/233238400 at 2023-09-02
+  - QuickAnnotate # failure in job https://hydra.nixos.org/build/233197428 at 2023-09-02
+  - quickbooks # failure in job https://hydra.nixos.org/build/233227666 at 2023-09-02
+  - quickcheck-arbitrary-template # failure in job https://hydra.nixos.org/build/233223045 at 2023-09-02
+  - quickcheck-combinators # failure in job https://hydra.nixos.org/build/233209131 at 2023-09-02
+  - quickcheck-dynamic # failure in job https://hydra.nixos.org/build/233248273 at 2023-09-02
+  - quickcheck-property-comb # failure in job https://hydra.nixos.org/build/233204877 at 2023-09-02
+  - quickcheck-property-monad # failure in job https://hydra.nixos.org/build/233228775 at 2023-09-02
+  - quickcheck-rematch # failure in job https://hydra.nixos.org/build/233205449 at 2023-09-02
+  - quickcheck-report # failure in job https://hydra.nixos.org/build/233214523 at 2023-09-02
+  - QuickCheckVariant # failure in job https://hydra.nixos.org/build/233239276 at 2023-09-02
+  - quickcheck-webdriver # failure in job https://hydra.nixos.org/build/233228000 at 2023-09-02
+  - quickjs-hs # failure in job https://hydra.nixos.org/build/233248440 at 2023-09-02
+  - quickpull # failure in job https://hydra.nixos.org/build/233238642 at 2023-09-02
+  - quick-schema # failure in job https://hydra.nixos.org/build/233256519 at 2023-09-02
+  - quickset # failure in job https://hydra.nixos.org/build/233236904 at 2023-09-02
+  - Quickson # failure in job https://hydra.nixos.org/build/233195101 at 2023-09-02
+  - quickson # failure in job https://hydra.nixos.org/build/233216697 at 2023-09-02
+  - quickspec # failure in job https://hydra.nixos.org/build/233196573 at 2023-09-02
+  - quickwebapp # failure in job https://hydra.nixos.org/build/233208251 at 2023-09-02
+  - quipper-core # failure in job https://hydra.nixos.org/build/233200962 at 2023-09-02
+  - quiver # failure in job https://hydra.nixos.org/build/233230395 at 2023-09-02
+  - quokka # failure in job https://hydra.nixos.org/build/233196347 at 2023-09-02
+  - quoridor-hs # failure in job https://hydra.nixos.org/build/233217459 at 2023-09-02
+  - RabbitMQ # failure in job https://hydra.nixos.org/build/233222087 at 2023-09-02
+  - rad # failure in job https://hydra.nixos.org/build/233248990 at 2023-09-02
+  - radian # failure in job https://hydra.nixos.org/build/233230029 at 2023-09-02
+  - radium # failure in job https://hydra.nixos.org/build/233205347 at 2023-09-02
+  - radium-formula-parser # failure in job https://hydra.nixos.org/build/233259018 at 2023-09-02
+  - radix # failure in job https://hydra.nixos.org/build/233241258 at 2023-09-02
+  - rados-haskell # failure in job https://hydra.nixos.org/build/233212247 at 2023-09-02
+  - raft # failure in job https://hydra.nixos.org/build/233248392 at 2023-09-02
+  - rakhana # failure in job https://hydra.nixos.org/build/233256901 at 2023-09-02
+  - rakuten # failure in job https://hydra.nixos.org/build/233196803 at 2023-09-02
+  - ralist # failure in job https://hydra.nixos.org/build/233195682 at 2023-09-02
+  - raml # failure in job https://hydra.nixos.org/build/233212517 at 2023-09-02
+  - rando # failure in job https://hydra.nixos.org/build/233257817 at 2023-09-02
+  - random-access-list # failure in job https://hydra.nixos.org/build/233233464 at 2023-09-02
+  - random-cycle # failure in job https://hydra.nixos.org/build/233208007 at 2023-09-02
+  - random-derive # failure in job https://hydra.nixos.org/build/233222005 at 2023-09-02
+  - RandomDotOrg # failure in job https://hydra.nixos.org/build/233229709 at 2023-09-02
+  - random-eff # failure in job https://hydra.nixos.org/build/233255496 at 2023-09-02
+  - Randometer # failure in job https://hydra.nixos.org/build/233231023 at 2023-09-02
+  - random-source # failure in job https://hydra.nixos.org/build/233254664 at 2023-09-02
+  - random-stream # failure in job https://hydra.nixos.org/build/233240384 at 2023-09-02
+  - random-string # failure in job https://hydra.nixos.org/build/233223504 at 2023-09-02
+  - rand-vars # failure in job https://hydra.nixos.org/build/233219255 at 2023-09-02
+  - Range # failure in job https://hydra.nixos.org/build/233235824 at 2023-09-02
+  - rangemin # failure in job https://hydra.nixos.org/build/233244031 at 2023-09-02
+  - rank1dynamic # failure in job https://hydra.nixos.org/build/233229881 at 2023-09-02
+  - rank-product # failure in job https://hydra.nixos.org/build/233239589 at 2023-09-02
+  - rapid # failure in job https://hydra.nixos.org/build/233223077 at 2023-09-02
+  - rapid-term # failure in job https://hydra.nixos.org/build/233251731 at 2023-09-02
+  - Rasenschach # failure in job https://hydra.nixos.org/build/234445901 at 2023-09-13
+  - rating-chgk-info # failure in job https://hydra.nixos.org/build/233598034 at 2023-09-02
+  - rational-list # failure in job https://hydra.nixos.org/build/233197144 at 2023-09-02
+  - rattle # failure in job https://hydra.nixos.org/build/233234335 at 2023-09-02
+  - rattletrap # failure in job https://hydra.nixos.org/build/233206840 at 2023-09-02
+  - raven-haskell-scotty # failure in job https://hydra.nixos.org/build/233244270 at 2023-09-02
+  - raylib-imgui # failure in job https://hydra.nixos.org/build/233222471 at 2023-09-02
+  - raz # failure in job https://hydra.nixos.org/build/233218482 at 2023-09-02
+  - rbst # failure in job https://hydra.nixos.org/build/233238184 at 2023-09-02
+  - rclient # failure in job https://hydra.nixos.org/build/233239290 at 2023-09-02
+  - rdf4h # failure in job https://hydra.nixos.org/build/233234057 at 2023-09-02
+  - react-flux # failure in job https://hydra.nixos.org/build/233246819 at 2023-09-02
+  - react-haskell # failure in job https://hydra.nixos.org/build/233242976 at 2023-09-02
+  - reaction-logic # failure in job https://hydra.nixos.org/build/233216789 at 2023-09-02
+  - reactive-bacon # failure in job https://hydra.nixos.org/build/233238838 at 2023-09-02
+  - reactive-banana-automation # failure in job https://hydra.nixos.org/build/233199860 at 2023-09-02
+  - reactive-banana-gi-gtk # failure in job https://hydra.nixos.org/build/233219417 at 2023-09-02
+  - reactive-banana-sdl2 # failure in job https://hydra.nixos.org/build/233235324 at 2023-09-02
+  - reactive-banana-threepenny # failure in job https://hydra.nixos.org/build/233216958 at 2023-09-02
+  - reactive-thread # failure in job https://hydra.nixos.org/build/233257806 at 2023-09-02
+  - react-tutorial-haskell-server # failure in job https://hydra.nixos.org/build/233201256 at 2023-09-02
+  - readability # failure in job https://hydra.nixos.org/build/233205178 at 2023-09-02
+  - read-bounded # failure in job https://hydra.nixos.org/build/233195369 at 2023-09-02
+  - read-ctags # failure in job https://hydra.nixos.org/build/233231382 at 2023-09-02
+  - reader-soup # failure in job https://hydra.nixos.org/build/233198810 at 2023-09-02
+  - read-io # failure in job https://hydra.nixos.org/build/233244370 at 2023-09-02
+  - readline-statevar # failure in job https://hydra.nixos.org/build/233226053 at 2023-09-02
+  - readme-lhs # failure in job https://hydra.nixos.org/build/233248229 at 2023-09-02
+  - readshp # failure in job https://hydra.nixos.org/build/233197835 at 2023-09-02
+  - really-simple-xml-parser # failure in job https://hydra.nixos.org/build/233195945 at 2023-09-02
+  - reanimate-svg # failure in job https://hydra.nixos.org/build/233242271 at 2023-09-02
+  - reasonable-lens # failure in job https://hydra.nixos.org/build/233233111 at 2023-09-02
+  - reason-export # failure in job https://hydra.nixos.org/build/233212942 at 2023-09-02
+  - record-encode # failure in job https://hydra.nixos.org/build/233216156 at 2023-09-02
+  - record # failure in job https://hydra.nixos.org/build/233242406 at 2023-09-02
+  - records # failure in job https://hydra.nixos.org/build/233254822 at 2023-09-02
+  - records-sop # failure in job https://hydra.nixos.org/build/233251652 at 2023-09-02
+  - record-wrangler # failure in job https://hydra.nixos.org/build/233212838 at 2023-09-02
+  - rec-smallarray # failure in job https://hydra.nixos.org/build/233258592 at 2023-09-02
+  - recursors # failure in job https://hydra.nixos.org/build/233234451 at 2023-09-02
+  - red-black-record # failure in job https://hydra.nixos.org/build/233194275 at 2023-09-02
+  - redis-hs # failure in job https://hydra.nixos.org/build/233191943 at 2023-09-02
+  - redis-simple # failure in job https://hydra.nixos.org/build/233200379 at 2023-09-02
+  - Redmine # failure in job https://hydra.nixos.org/build/233250398 at 2023-09-02
+  - reedsolomon # failure in job https://hydra.nixos.org/build/233215366 at 2023-09-02
+  - reenact # failure in job https://hydra.nixos.org/build/233229531 at 2023-09-02
+  - refcount # failure in job https://hydra.nixos.org/build/233236697 at 2023-09-02
+  - Referees # failure in job https://hydra.nixos.org/build/233213892 at 2023-09-02
+  - references # failure in job https://hydra.nixos.org/build/233197836 at 2023-09-02
+  - ref-extras # failure in job https://hydra.nixos.org/build/233255903 at 2023-09-02
+  - Ref # failure in job https://hydra.nixos.org/build/233238498 at 2023-09-02
+  - ref # failure in job https://hydra.nixos.org/build/233256479 at 2023-09-02
+  - refined-http-api-data # failure in job https://hydra.nixos.org/build/233231753 at 2023-09-02
+  - refined-with # failure in job https://hydra.nixos.org/build/233258564 at 2023-09-02
+  - reflection-extras # failure in job https://hydra.nixos.org/build/233226544 at 2023-09-02
+  - reflex-backend-socket # failure in job https://hydra.nixos.org/build/233254514 at 2023-09-02
+  - reflex-basic-host # failure in job https://hydra.nixos.org/build/233210837 at 2023-09-02
+  - reflex-dom-ace # failure in job https://hydra.nixos.org/build/233198338 at 2023-09-02
+  - reflex-dom-contrib # failure in job https://hydra.nixos.org/build/233258949 at 2023-09-02
+  - reflex-dom-fragment-shader-canvas # failure in job https://hydra.nixos.org/build/233202576 at 2023-09-02
+  - reflex-dom-helpers # failure in job https://hydra.nixos.org/build/233239532 at 2023-09-02
+  - reflex-dom-pandoc # failure in job https://hydra.nixos.org/build/233217895 at 2023-09-02
+  - reflex-dom-retractable # failure in job https://hydra.nixos.org/build/233198362 at 2023-09-02
+  - reflex-dom-svg # failure in job https://hydra.nixos.org/build/233193544 at 2023-09-02
+  - reflex-external-ref # failure in job https://hydra.nixos.org/build/233215834 at 2023-09-02
+  - reflex-gi-gtk # failure in job https://hydra.nixos.org/build/233213103 at 2023-09-02
+  - reflex-gloss # failure in job https://hydra.nixos.org/build/234457448 at 2023-09-13
+  - reflex-jsx # failure in job https://hydra.nixos.org/build/233207137 at 2023-09-02
+  - reflex-orphans # failure in job https://hydra.nixos.org/build/233249128 at 2023-09-02
+  - reflex-sdl2 # failure in job https://hydra.nixos.org/build/233233947 at 2023-09-02
+  - reflex-test-host # failure in job https://hydra.nixos.org/build/233220665 at 2023-09-02
+  - reflex-transformers # failure in job https://hydra.nixos.org/build/233243647 at 2023-09-02
+  - reflex-vty # failure in job https://hydra.nixos.org/build/233225875 at 2023-09-02
+  - ref-mtl # failure in job https://hydra.nixos.org/build/233260152 at 2023-09-02
+  - reformat # failure in job https://hydra.nixos.org/build/233212381 at 2023-09-02
+  - reform-hamlet # failure in job https://hydra.nixos.org/build/233230013 at 2023-09-02
+  - reform-hsp # failure in job https://hydra.nixos.org/build/233228737 at 2023-09-02
+  - reform-lucid # failure in job https://hydra.nixos.org/build/233257636 at 2023-09-02
+  - refresht # failure in job https://hydra.nixos.org/build/233245243 at 2023-09-02
+  - refty # failure in job https://hydra.nixos.org/build/233215083 at 2023-09-02
+  - reg-alloc # failure in job https://hydra.nixos.org/build/233195081 at 2023-09-02
+  - regex-dfa # failure in job https://hydra.nixos.org/build/233242994 at 2023-09-02
+  - regexdot # failure in job https://hydra.nixos.org/build/233217389 at 2023-09-02
+  - regex-generator # failure in job https://hydra.nixos.org/build/233239502 at 2023-09-02
+  - regex-parsec # failure in job https://hydra.nixos.org/build/233223781 at 2023-09-02
+  - regex-posix-unittest # failure in job https://hydra.nixos.org/build/233249685 at 2023-09-02
+  - regexpr-symbolic # failure in job https://hydra.nixos.org/build/233254451 at 2023-09-02
+  - regexqq # failure in job https://hydra.nixos.org/build/233233149 at 2023-09-02
+  - regex-tdfa-pipes # failure in job https://hydra.nixos.org/build/233247416 at 2023-09-02
+  - regex-tdfa-quasiquoter # failure in job https://hydra.nixos.org/build/233234166 at 2023-09-02
+  - regex-tdfa-rc # failure in job https://hydra.nixos.org/build/233206042 at 2023-09-02
+  - regex-tdfa-text # failure in job https://hydra.nixos.org/build/233191686 at 2023-09-02
+  - regex-tdfa-unittest # failure in job https://hydra.nixos.org/build/233241081 at 2023-09-02
+  - regex-tdfa-utf8 # failure in job https://hydra.nixos.org/build/233211722 at 2023-09-02
+  - regex-tre # failure in job https://hydra.nixos.org/build/233236303 at 2023-09-02
+  - regex-type # failure in job https://hydra.nixos.org/build/233199739 at 2023-09-02
+  - regions # failure in job https://hydra.nixos.org/build/233196483 at 2023-09-02
+  - register-machine-typelevel # failure in job https://hydra.nixos.org/build/233217514 at 2023-09-02
+  - registry # failure in job https://hydra.nixos.org/build/233235447 at 2023-09-02
+  - regress # failure in job https://hydra.nixos.org/build/233208901 at 2023-09-02
+  - regular # failure in job https://hydra.nixos.org/build/233232656 at 2023-09-02
+  - rehoo # failure in job https://hydra.nixos.org/build/233246417 at 2023-09-02
+  - rei # failure in job https://hydra.nixos.org/build/233221328 at 2023-09-02
+  - reified-records # failure in job https://hydra.nixos.org/build/233220595 at 2023-09-02
+  - reify # failure in job https://hydra.nixos.org/build/233247509 at 2023-09-02
+  - relacion # failure in job https://hydra.nixos.org/build/233241624 at 2023-09-02
+  - relation # failure in job https://hydra.nixos.org/build/233244581 at 2023-09-02
+  - releaser # failure in job https://hydra.nixos.org/build/233239420 at 2023-09-02
+  - relevant-time # failure in job https://hydra.nixos.org/build/233190794 at 2023-09-02
+  - reload # failure in job https://hydra.nixos.org/build/233212925 at 2023-09-02
+  - remark # failure in job https://hydra.nixos.org/build/233240981 at 2023-09-02
+  - remarks # failure in job https://hydra.nixos.org/build/233256889 at 2023-09-02
+  - remote-debugger # failure in job https://hydra.nixos.org/build/233199491 at 2023-09-02
+  - remote # failure in job https://hydra.nixos.org/build/233220714 at 2023-09-02
+  - remote-monad # failure in job https://hydra.nixos.org/build/233247733 at 2023-09-02
+  - reorderable # failure in job https://hydra.nixos.org/build/233256477 at 2023-09-02
+  - reorder-expression # failure in job https://hydra.nixos.org/build/233215573 at 2023-09-02
+  - repa-eval # failure in job https://hydra.nixos.org/build/233259486 at 2023-09-02
+  - repa # failure in job https://hydra.nixos.org/build/233219888 at 2023-09-02
+  - repa-scalar # failure in job https://hydra.nixos.org/build/233213694 at 2023-09-02
+  - repa-series # failure in job https://hydra.nixos.org/build/233200085 at 2023-09-02
+  - ReplaceUmlaut # failure in job https://hydra.nixos.org/build/233228662 at 2023-09-02
+  - repl # failure in job https://hydra.nixos.org/build/233233135 at 2023-09-02
+  - RepLib # failure in job https://hydra.nixos.org/build/233210112 at 2023-09-02
+  - replica # failure in job https://hydra.nixos.org/build/233214750 at 2023-09-02
+  - ReplicateEffects # failure in job https://hydra.nixos.org/build/233233197 at 2023-09-02
+  - repl-toolkit # failure in job https://hydra.nixos.org/build/233246536 at 2023-09-02
+  - representable-functors # failure in job https://hydra.nixos.org/build/233252174 at 2023-09-02
+  - reprinter # failure in job https://hydra.nixos.org/build/233232702 at 2023-09-02
+  - reproject # failure in job https://hydra.nixos.org/build/233214934 at 2023-09-02
+  - req-conduit # failure in job https://hydra.nixos.org/build/233248395 at 2023-09-02
+  - request # failure in job https://hydra.nixos.org/build/233256702 at 2023-09-02
+  - request-monad # failure in job https://hydra.nixos.org/build/233204896 at 2023-09-02
+  - require # failure in job https://hydra.nixos.org/build/233203170 at 2023-09-02
+  - req-url-extra # failure in job https://hydra.nixos.org/build/233198488 at 2023-09-02
+  - rescue # failure in job https://hydra.nixos.org/build/233230073 at 2023-09-02
+  - reservoir # failure in job https://hydra.nixos.org/build/233194430 at 2023-09-02
+  - resolve # failure in job https://hydra.nixos.org/build/233224070 at 2023-09-02
+  - resolve-trivial-conflicts # failure in job https://hydra.nixos.org/build/233237974 at 2023-09-02
+  - resource-effect # failure in job https://hydra.nixos.org/build/233253816 at 2023-09-02
+  - resource-embed # failure in job https://hydra.nixos.org/build/233209109 at 2023-09-02
+  - resource-pool-monad # failure in job https://hydra.nixos.org/build/233204199 at 2023-09-02
+  - resourcet-pool # failure in job https://hydra.nixos.org/build/233213894 at 2023-09-02
+  - restartable # failure in job https://hydra.nixos.org/build/233220815 at 2023-09-02
+  - restyle # failure in job https://hydra.nixos.org/build/233199043 at 2023-09-02
+  - resumable-exceptions # failure in job https://hydra.nixos.org/build/233206560 at 2023-09-02
+  - rethinkdb-client-driver # failure in job https://hydra.nixos.org/build/233216583 at 2023-09-02
+  - rethinkdb # failure in job https://hydra.nixos.org/build/233211172 at 2023-09-02
+  - retryer # failure in job https://hydra.nixos.org/build/233193427 at 2023-09-02
+  - reverse-geocoding # failure in job https://hydra.nixos.org/build/233238347 at 2023-09-02
+  - reverse-list # failure in job https://hydra.nixos.org/build/233192931 at 2023-09-02
+  - reversi # failure in job https://hydra.nixos.org/build/233205170 at 2023-09-02
+  - ReviewBoard # failure in job https://hydra.nixos.org/build/233217736 at 2023-09-02
+  - rewrite-inspector # failure in job https://hydra.nixos.org/build/233243472 at 2023-09-02
+  - rfc # failure in job https://hydra.nixos.org/build/233241988 at 2023-09-02
+  - rfc-prelude # failure in job https://hydra.nixos.org/build/233227572 at 2023-09-02
+  - rhbzquery # failure in job https://hydra.nixos.org/build/233259706 at 2023-09-02
+  - rhine # failure in job https://hydra.nixos.org/build/233245503 at 2023-09-02
+  - riak # failure in job https://hydra.nixos.org/build/233192622 at 2023-09-02
+  - riak-protobuf-lens # failure in job https://hydra.nixos.org/build/233203142 at 2023-09-02
+  - ribbit # failure in job https://hydra.nixos.org/build/233191000 at 2023-09-02
+  - rib-core # failure in job https://hydra.nixos.org/build/233231659 at 2023-09-02
+  - RichConditional # failure in job https://hydra.nixos.org/build/233218626 at 2023-09-02
+  - riemann # failure in job https://hydra.nixos.org/build/233207899 at 2023-09-02
+  - riff # failure in job https://hydra.nixos.org/build/233202602 at 2023-09-02
+  - rigel-viz # failure in job https://hydra.nixos.org/build/233251060 at 2023-09-02
+  - ring-buffer # failure in job https://hydra.nixos.org/build/233245453 at 2023-09-02
+  - ring-buffers # failure in job https://hydra.nixos.org/build/233259860 at 2023-09-02
+  - riscv-isa # failure in job https://hydra.nixos.org/build/233192811 at 2023-09-02
+  - rison # failure in job https://hydra.nixos.org/build/233231694 at 2023-09-02
+  - Ritt-Wu # failure in job https://hydra.nixos.org/build/233221182 at 2023-09-02
+  - rivers # failure in job https://hydra.nixos.org/build/233225238 at 2023-09-02
+  - rivet-migration # failure in job https://hydra.nixos.org/build/233191937 at 2023-09-02
+  - rivet-simple-deploy # failure in job https://hydra.nixos.org/build/233229780 at 2023-09-02
+  - rle # failure in job https://hydra.nixos.org/build/233238229 at 2023-09-02
+  - rlglue # failure in job https://hydra.nixos.org/build/233222786 at 2023-09-02
+  - RLP # failure in job https://hydra.nixos.org/build/233222770 at 2023-09-02
+  - rl-satton # failure in job https://hydra.nixos.org/build/233256608 at 2023-09-02
+  - robin # failure in job https://hydra.nixos.org/build/233205010 at 2023-09-02
+  - robots-txt # failure in job https://hydra.nixos.org/build/233243090 at 2023-09-02
+  - roc-cluster # failure in job https://hydra.nixos.org/build/233202517 at 2023-09-02
+  - roguestar # failure in job https://hydra.nixos.org/build/233233677 at 2023-09-02
+  - roku-api # failure in job https://hydra.nixos.org/build/233249158 at 2023-09-02
+  - rollbar-client # failure in job https://hydra.nixos.org/build/233241484 at 2023-09-02
+  - rollbar-hs # failure in job https://hydra.nixos.org/build/233240182 at 2023-09-02
+  - roller # failure in job https://hydra.nixos.org/build/233198848 at 2023-09-02
+  - roman-numerals # failure in job https://hydra.nixos.org/build/233214716 at 2023-09-02
+  - ron # failure in job https://hydra.nixos.org/build/233197052 at 2023-09-02
+  - rope # failure in job https://hydra.nixos.org/build/233198109 at 2023-09-02
+  - rosebud # failure in job https://hydra.nixos.org/build/233225772 at 2023-09-02
+  - rosmsg # failure in job https://hydra.nixos.org/build/233248569 at 2023-09-02
+  - rospkg # failure in job https://hydra.nixos.org/build/233229989 at 2023-09-02
+  - rosso # failure in job https://hydra.nixos.org/build/233230103 at 2023-09-02
+  - rotating-log # failure in job https://hydra.nixos.org/build/233206245 at 2023-09-02
+  - rounding # failure in job https://hydra.nixos.org/build/233234537 at 2023-09-02
+  - roundtrip-aeson # failure in job https://hydra.nixos.org/build/233253408 at 2023-09-02
+  - rowrecord # failure in job https://hydra.nixos.org/build/233208964 at 2023-09-02
+  - R-pandoc # failure in job https://hydra.nixos.org/build/233192114 at 2023-09-02
+  - rpc-framework # failure in job https://hydra.nixos.org/build/233202964 at 2023-09-02
+  - rpmbuild-order # failure in job https://hydra.nixos.org/build/233257209 at 2023-09-02
+  - rpm # failure in job https://hydra.nixos.org/build/233194513 at 2023-09-02
+  - rpmostree-update # failure in job https://hydra.nixos.org/build/233254709 at 2023-09-02
+  - rrule # failure in job https://hydra.nixos.org/build/233259470 at 2023-09-02
+  - rspp # failure in job https://hydra.nixos.org/build/233236691 at 2023-09-02
+  - rss2irc # failure in job https://hydra.nixos.org/build/233196081 at 2023-09-02
+  - rstream # failure in job https://hydra.nixos.org/build/233249587 at 2023-09-02
+  - RtMidi # failure in job https://hydra.nixos.org/build/233241377 at 2023-09-02
+  - rtnetlink # failure in job https://hydra.nixos.org/build/233198783 at 2023-09-02
+  - rtorrent-rpc # failure in job https://hydra.nixos.org/build/233202187 at 2023-09-02
+  - rtorrent-state # failure in job https://hydra.nixos.org/build/233216983 at 2023-09-02
+  - rts-loader # failure in job https://hydra.nixos.org/build/233226464 at 2023-09-02
+  - rubberband # failure in job https://hydra.nixos.org/build/233191496 at 2023-09-02
+  - ruby-marshal # failure in job https://hydra.nixos.org/build/233242569 at 2023-09-02
+  - ruby-qq # failure in job https://hydra.nixos.org/build/233259084 at 2023-09-02
+  - ruff # failure in job https://hydra.nixos.org/build/233200285 at 2023-09-02
+  - ruin # failure in job https://hydra.nixos.org/build/233247866 at 2023-09-02
+  - runhs # failure in job https://hydra.nixos.org/build/233193983 at 2023-09-02
+  - runmany # failure in job https://hydra.nixos.org/build/233241476 at 2023-09-02
+  - runtime-instances # failure in job https://hydra.nixos.org/build/233217985 at 2023-09-02
+  - rustls # failure in job https://hydra.nixos.org/build/233249545 at 2023-09-02
+  - rws # failure in job https://hydra.nixos.org/build/233237887 at 2023-09-02
+  - RxHaskell # failure in job https://hydra.nixos.org/build/233248784 at 2023-09-02
+  - rz-pipe # failure in job https://hydra.nixos.org/build/233228273 at 2023-09-02
+  - SableCC2Hs # failure in job https://hydra.nixos.org/build/233213351 at 2023-09-02
+  - safe-buffer-monad # failure in job https://hydra.nixos.org/build/233192108 at 2023-09-02
+  - safe-coerce # failure in job https://hydra.nixos.org/build/233244289 at 2023-09-02
+  - safe-coloured-text-gen # failure in job https://hydra.nixos.org/build/233225146 at 2023-09-02
+  - safe-coloured-text-layout # failure in job https://hydra.nixos.org/build/233247031 at 2023-09-02
+  - safecopy-migrate # failure in job https://hydra.nixos.org/build/233224574 at 2023-09-02
+  - safecopy-store # failure in job https://hydra.nixos.org/build/233227973 at 2023-09-02
+  - safe-freeze # failure in job https://hydra.nixos.org/build/233230451 at 2023-09-02
+  - safe-globals # failure in job https://hydra.nixos.org/build/233201910 at 2023-09-02
+  - safeint # failure in job https://hydra.nixos.org/build/233257369 at 2023-09-02
+  - safeio # failure in job https://hydra.nixos.org/build/233219890 at 2023-09-02
+  - safe-lazy-io # failure in job https://hydra.nixos.org/build/233236485 at 2023-09-02
+  - safe-length # failure in job https://hydra.nixos.org/build/233255904 at 2023-09-02
+  - safe-money-xmlbf # failure in job https://hydra.nixos.org/build/233254139 at 2023-09-02
+  - safepath # failure in job https://hydra.nixos.org/build/233235468 at 2023-09-02
+  - safe-printf # failure in job https://hydra.nixos.org/build/233232731 at 2023-09-02
+  - saferoute # failure in job https://hydra.nixos.org/build/233254085 at 2023-09-02
+  - safe-tensor # failure in job https://hydra.nixos.org/build/233212430 at 2023-09-02
+  - safe-wild-cards # failure in job https://hydra.nixos.org/build/233217160 at 2023-09-02
+  - sajson # failure in job https://hydra.nixos.org/build/233197310 at 2023-09-02
+  - sakuraio-platform # failure in job https://hydra.nixos.org/build/233198228 at 2023-09-02
+  - salak # failure in job https://hydra.nixos.org/build/233236898 at 2023-09-02
+  - Salsa # failure in job https://hydra.nixos.org/build/233257551 at 2023-09-02
+  - salvia-protocol # failure in job https://hydra.nixos.org/build/233220788 at 2023-09-02
+  - sandlib # failure in job https://hydra.nixos.org/build/233249740 at 2023-09-02
+  - sandman # failure in job https://hydra.nixos.org/build/233209667 at 2023-09-02
+  - sarasvati # failure in job https://hydra.nixos.org/build/233208235 at 2023-09-02
+  - satchmo-backends # failure in job https://hydra.nixos.org/build/233228506 at 2023-09-02
+  - satchmo-minisat # failure in job https://hydra.nixos.org/build/233229585 at 2023-09-02
+  - sat # failure in job https://hydra.nixos.org/build/233225713 at 2023-09-02
+  - Saturnin # failure in job https://hydra.nixos.org/build/233227938 at 2023-09-02
+  - satyros # failure in job https://hydra.nixos.org/build/233199726 at 2023-09-02
+  - savage # failure in job https://hydra.nixos.org/build/233213243 at 2023-09-02
+  - sax # failure in job https://hydra.nixos.org/build/233218617 at 2023-09-02
+  - sbv # failure in job https://hydra.nixos.org/build/233210414 at 2023-09-02
+  - scale # failure in job https://hydra.nixos.org/build/233222189 at 2023-09-02
+  - scaleimage # failure in job https://hydra.nixos.org/build/233240688 at 2023-09-02
+  - scalendar # failure in job https://hydra.nixos.org/build/233206581 at 2023-09-02
+  - scat # failure in job https://hydra.nixos.org/build/233199202 at 2023-09-02
+  - scc # failure in job https://hydra.nixos.org/build/233247446 at 2023-09-02
+  - scgi # failure in job https://hydra.nixos.org/build/233247314 at 2023-09-02
+  - schedevr # failure in job https://hydra.nixos.org/build/233240124 at 2023-09-02
+  - schedule-planner # failure in job https://hydra.nixos.org/build/233192691 at 2023-09-02
+  - schedyield # failure in job https://hydra.nixos.org/build/233213288 at 2023-09-02
+  - schemas # failure in job https://hydra.nixos.org/build/233225239 at 2023-09-02
+  - scholdoc-types # failure in job https://hydra.nixos.org/build/233194927 at 2023-09-02
+  - scidb-hquery # failure in job https://hydra.nixos.org/build/233257053 at 2023-09-02
+  - sci-ratio # failure in job https://hydra.nixos.org/build/233258475 at 2023-09-02
+  - scons2dot # failure in job https://hydra.nixos.org/build/233204528 at 2023-09-02
+  - scottish # failure in job https://hydra.nixos.org/build/233251021 at 2023-09-02
+  - scotty-binding-play # failure in job https://hydra.nixos.org/build/233244465 at 2023-09-02
+  - scotty-blaze # failure in job https://hydra.nixos.org/build/233190960 at 2023-09-02
+  - scotty-format # failure in job https://hydra.nixos.org/build/233249643 at 2023-09-02
+  - scotty-resource # failure in job https://hydra.nixos.org/build/233258457 at 2023-09-02
+  - scotty-rest # failure in job https://hydra.nixos.org/build/233209040 at 2023-09-02
+  - scotty-session # failure in job https://hydra.nixos.org/build/233258736 at 2023-09-02
+  - scotty-tls # failure in job https://hydra.nixos.org/build/233250916 at 2023-09-02
+  - scotty-view # failure in job https://hydra.nixos.org/build/233245343 at 2023-09-02
+  - scrapbook-core # failure in job https://hydra.nixos.org/build/233222406 at 2023-09-02
+  - scrape-changes # failure in job https://hydra.nixos.org/build/233225890 at 2023-09-02
+  - ScratchFs # failure in job https://hydra.nixos.org/build/233257558 at 2023-09-02
+  - script-monad # failure in job https://hydra.nixos.org/build/233221600 at 2023-09-02
+  - scrobble # failure in job https://hydra.nixos.org/build/233252277 at 2023-09-02
+  - scroll-list # failure in job https://hydra.nixos.org/build/233217737 at 2023-09-02
+  - scrz # failure in job https://hydra.nixos.org/build/233230705 at 2023-09-02
+  - scythe # failure in job https://hydra.nixos.org/build/233259400 at 2023-09-02
+  - scyther-proof # failure in job https://hydra.nixos.org/build/233248937 at 2023-09-02
+  - sde-solver # failure in job https://hydra.nixos.org/build/233251017 at 2023-09-02
+  - sdl2-cairo-image # failure in job https://hydra.nixos.org/build/233210135 at 2023-09-02
+  - sdl2-compositor # failure in job https://hydra.nixos.org/build/233198910 at 2023-09-02
+  - sdl2-fps # failure in job https://hydra.nixos.org/build/233195346 at 2023-09-02
+  - sdl2-gfx # failure in job https://hydra.nixos.org/build/233236795 at 2023-09-02
+  - sdl2-image # failure in job https://hydra.nixos.org/build/233216837 at 2023-09-02
+  - sdl2-mixer # failure in job https://hydra.nixos.org/build/233228951 at 2023-09-02
+  - sdl2-ttf # failure in job https://hydra.nixos.org/build/233238600 at 2023-09-02
+  - sdp # failure in job https://hydra.nixos.org/build/233246702 at 2023-09-02
+  - seacat # failure in job https://hydra.nixos.org/build/233229959 at 2023-09-02
+  - seakale # failure in job https://hydra.nixos.org/build/233236200 at 2023-09-02
+  - secdh # failure in job https://hydra.nixos.org/build/233244391 at 2023-09-02
+  - sec # failure in job https://hydra.nixos.org/build/233233150 at 2023-09-02
+  - seclib # failure in job https://hydra.nixos.org/build/233203235 at 2023-09-02
+  - second-transfer # failure in job https://hydra.nixos.org/build/233214725 at 2023-09-02
+  - secp256k1 # failure in job https://hydra.nixos.org/build/233231129 at 2023-09-02
+  - secp256k1-legacy # failure in job https://hydra.nixos.org/build/233197038 at 2023-09-02
+  - secret-santa # failure in job https://hydra.nixos.org/build/233208686 at 2023-09-02
+  - SecureHash-SHA3 # failure in job https://hydra.nixos.org/build/233216866 at 2023-09-02
+  - secure-memory # failure in job https://hydra.nixos.org/build/233226568 at 2023-09-02
+  - secure-sockets # failure in job https://hydra.nixos.org/build/233254170 at 2023-09-02
+  - secureUDP # failure in job https://hydra.nixos.org/build/233215410 at 2023-09-02
+  - SegmentTree # failure in job https://hydra.nixos.org/build/233216161 at 2023-09-02
+  - selda # failure in job https://hydra.nixos.org/build/233234757 at 2023-09-02
+  - selectors # failure in job https://hydra.nixos.org/build/233227433 at 2023-09-02
+  - selenium # failure in job https://hydra.nixos.org/build/233214276 at 2023-09-02
+  - selinux # failure in job https://hydra.nixos.org/build/233192853 at 2023-09-02
+  - Semantique # failure in job https://hydra.nixos.org/build/233199841 at 2023-09-02
+  - semaphore-compat # failure in job https://hydra.nixos.org/build/233225619 at 2023-09-02
+  - semdoc # failure in job https://hydra.nixos.org/build/233258790 at 2023-09-02
+  - semialign-indexed # failure in job https://hydra.nixos.org/build/233210150 at 2023-09-02
+  - semialign-optics # failure in job https://hydra.nixos.org/build/233229100 at 2023-09-02
+  - semibounded-lattices # failure in job https://hydra.nixos.org/build/233195267 at 2023-09-02
+  - Semigroup # failure in job https://hydra.nixos.org/build/233201793 at 2023-09-02
+  - semigroupoids-syntax # failure in job https://hydra.nixos.org/build/233213850 at 2023-09-02
+  - semigroups-actions # failure in job https://hydra.nixos.org/build/233216317 at 2023-09-02
+  - semilattices # failure in job https://hydra.nixos.org/build/233223765 at 2023-09-02
+  - sendgrid-haskell # failure in job https://hydra.nixos.org/build/233228693 at 2023-09-02
+  - sendgrid-v3 # failure in job https://hydra.nixos.org/build/233224134 at 2023-09-02
+  - sensu-run # failure in job https://hydra.nixos.org/build/233251719 at 2023-09-02
+  - sentry # failure in job https://hydra.nixos.org/build/233246813 at 2023-09-02
+  - seonbi # failure in job https://hydra.nixos.org/build/233196115 at 2023-09-02
+  - separated # failure in job https://hydra.nixos.org/build/233222642 at 2023-09-02
+  - SeqAlign # failure in job https://hydra.nixos.org/build/233214595 at 2023-09-02
+  - sequent-core # failure in job https://hydra.nixos.org/build/233202838 at 2023-09-02
+  - sequential-index # failure in job https://hydra.nixos.org/build/233228686 at 2023-09-02
+  - serf # failure in job https://hydra.nixos.org/build/233251981 at 2023-09-02
+  - serialize-instances # failure in job https://hydra.nixos.org/build/233239330 at 2023-09-02
+  - serialport # failure in job https://hydra.nixos.org/build/233201348 at 2023-09-02
+  - serokell-util # failure in job https://hydra.nixos.org/build/233209952 at 2023-09-02
+  - servant-aeson-specs # failure in job https://hydra.nixos.org/build/233202245 at 2023-09-02
+  - servant-auth-cookie # failure in job https://hydra.nixos.org/build/233235829 at 2023-09-02
+  - servant-auth-server # failure in job https://hydra.nixos.org/build/233208742 at 2023-09-02
+  - servant-avro # failure in job https://hydra.nixos.org/build/233225632 at 2023-09-02
+  - servant-benchmark # failure in job https://hydra.nixos.org/build/233203748 at 2023-09-02
+  - servant-client-js # failure in job https://hydra.nixos.org/build/233194725 at 2023-09-02
+  - servant-cli # failure in job https://hydra.nixos.org/build/233259212 at 2023-09-02
+  - servant-combinators # failure in job https://hydra.nixos.org/build/233249924 at 2023-09-02
+  - servant-db # failure in job https://hydra.nixos.org/build/233234946 at 2023-09-02
+  - servant-dhall # failure in job https://hydra.nixos.org/build/233201199 at 2023-09-02
+  - servant-docs-simple # failure in job https://hydra.nixos.org/build/233237374 at 2023-09-02
+  - servant-errors # failure in job https://hydra.nixos.org/build/233239712 at 2023-09-02
+  - servant-event-stream # failure in job https://hydra.nixos.org/build/233598042 at 2023-09-02
+  - servant-gdp # failure in job https://hydra.nixos.org/build/233191664 at 2023-09-02
+  - servant-generate # failure in job https://hydra.nixos.org/build/233199452 at 2023-09-02
+  - servant-generic # failure in job https://hydra.nixos.org/build/233211338 at 2023-09-02
+  - servant-github # failure in job https://hydra.nixos.org/build/233231566 at 2023-09-02
+  - servant-github-webhook # failure in job https://hydra.nixos.org/build/233234237 at 2023-09-02
+  - servant-htmx # failure in job https://hydra.nixos.org/build/233214786 at 2023-09-02
+  - servant-http-streams # failure in job https://hydra.nixos.org/build/233242852 at 2023-09-02
+  - servant-iCalendar # failure in job https://hydra.nixos.org/build/233200493 at 2023-09-02
+  - servant-jquery # failure in job https://hydra.nixos.org/build/233238796 at 2023-09-02
+  - servant-JuicyPixels # failure in job https://hydra.nixos.org/build/233222224 at 2023-09-02
+  - servant-kotlin # failure in job https://hydra.nixos.org/build/233598190 at 2023-09-02
+  - servant-namedargs # failure in job https://hydra.nixos.org/build/233258674 at 2023-09-02
+  - servant-nix # failure in job https://hydra.nixos.org/build/233236159 at 2023-09-02
+  - servant-pandoc # failure in job https://hydra.nixos.org/build/233203008 at 2023-09-02
+  - servant-polysemy # failure in job https://hydra.nixos.org/build/233218670 at 2023-09-02
+  - servant-pool # failure in job https://hydra.nixos.org/build/233208935 at 2023-09-02
+  - servant-purescript # failure in job https://hydra.nixos.org/build/233598080 at 2023-09-02
+  - servant-py # failure in job https://hydra.nixos.org/build/233598104 at 2023-09-02
+  - servant-quickcheck # failure in job https://hydra.nixos.org/build/233236741 at 2023-09-02
+  - servant-reflex # failure in job https://hydra.nixos.org/build/233212870 at 2023-09-02
+  - servant-router # failure in job https://hydra.nixos.org/build/233246333 at 2023-09-02
+  - servant-ruby # failure in job https://hydra.nixos.org/build/233598144 at 2023-09-02
+  - servant-scotty # failure in job https://hydra.nixos.org/build/233248472 at 2023-09-02
+  - servant-seo # failure in job https://hydra.nixos.org/build/233259245 at 2023-09-02
+  - servant-smsc-ru # failure in job https://hydra.nixos.org/build/233239620 at 2023-09-02
+  - servant-stache # failure in job https://hydra.nixos.org/build/233204547 at 2023-09-02
+  - servant-static-th # failure in job https://hydra.nixos.org/build/233191735 at 2023-09-02
+  - servant-streaming # failure in job https://hydra.nixos.org/build/233215168 at 2023-09-02
+  - servant-streamly # failure in job https://hydra.nixos.org/build/233231404 at 2023-09-02
+  - servant-tracing # failure in job https://hydra.nixos.org/build/233229308 at 2023-09-02
+  - servant-wasm # failure in job https://hydra.nixos.org/build/233191644 at 2023-09-02
+  - servant-yaml # failure in job https://hydra.nixos.org/build/233260010 at 2023-09-02
+  - servant-zeppelin # failure in job https://hydra.nixos.org/build/233230172 at 2023-09-02
+  - server-generic # failure in job https://hydra.nixos.org/build/233194042 at 2023-09-02
+  - serverless-haskell # failure in job https://hydra.nixos.org/build/233201987 at 2023-09-02
+  - serversession-backend-acid-state # failure in job https://hydra.nixos.org/build/233202796 at 2023-09-02
+  - serversession-backend-persistent # failure in job https://hydra.nixos.org/build/233239242 at 2023-09-02
+  - services # failure in job https://hydra.nixos.org/build/233249029 at 2023-09-02
+  - serviette # failure in job https://hydra.nixos.org/build/233226968 at 2023-09-02
+  - SessionLogger # failure in job https://hydra.nixos.org/build/233235790 at 2023-09-02
+  - sessions # failure in job https://hydra.nixos.org/build/233214614 at 2023-09-02
+  - sessiontypes # failure in job https://hydra.nixos.org/build/233224975 at 2023-09-02
+  - setgame # failure in job https://hydra.nixos.org/build/233218664 at 2023-09-02
+  - set-of # failure in job https://hydra.nixos.org/build/233202960 at 2023-09-02
+  - setoid # failure in job https://hydra.nixos.org/build/233213744 at 2023-09-02
+  - setters # failure in job https://hydra.nixos.org/build/233199079 at 2023-09-02
+  - set-with # failure in job https://hydra.nixos.org/build/233209870 at 2023-09-02
+  - sexp # failure in job https://hydra.nixos.org/build/233214197 at 2023-09-02
+  - sexpr-parser # failure in job https://hydra.nixos.org/build/233208359 at 2023-09-02
+  - sext # failure in job https://hydra.nixos.org/build/233245441 at 2023-09-02
+  - sfml-audio # failure in job https://hydra.nixos.org/build/233253560 at 2023-09-02
+  - SFML # failure in job https://hydra.nixos.org/build/233244892 at 2023-09-02
+  - sfmt # failure in job https://hydra.nixos.org/build/233260124 at 2023-09-02
+  - sgd # failure in job https://hydra.nixos.org/build/233240302 at 2023-09-02
+  - SG # failure in job https://hydra.nixos.org/build/233228780 at 2023-09-02
+  - SGplus # failure in job https://hydra.nixos.org/build/233227890 at 2023-09-02
+  - sh2md # failure in job https://hydra.nixos.org/build/233254149 at 2023-09-02
+  - shade # failure in job https://hydra.nixos.org/build/233227940 at 2023-09-02
+  - shadower # failure in job https://hydra.nixos.org/build/233224166 at 2023-09-02
+  - shake-cabal-build # failure in job https://hydra.nixos.org/build/233192322 at 2023-09-02
+  - shake-dhall # failure in job https://hydra.nixos.org/build/233246191 at 2023-09-02
+  - shake-extras # failure in job https://hydra.nixos.org/build/233192079 at 2023-09-02
+  - shake-minify # failure in job https://hydra.nixos.org/build/233251572 at 2023-09-02
+  - shake-pack # failure in job https://hydra.nixos.org/build/233195211 at 2023-09-02
+  - shake-path # failure in job https://hydra.nixos.org/build/233247617 at 2023-09-02
+  - shake-persist # failure in job https://hydra.nixos.org/build/233228771 at 2023-09-02
+  - shakespeare-babel # failure in job https://hydra.nixos.org/build/233252003 at 2023-09-02
+  - shakespeare-sass # failure in job https://hydra.nixos.org/build/233195432 at 2023-09-02
+  - shared-buffer # failure in job https://hydra.nixos.org/build/233242275 at 2023-09-02
+  - shared-fields # failure in job https://hydra.nixos.org/build/233228500 at 2023-09-02
+  - sha-streams # failure in job https://hydra.nixos.org/build/233257983 at 2023-09-02
+  - she # failure in job https://hydra.nixos.org/build/233214251 at 2023-09-02
+  - Shellac # failure in job https://hydra.nixos.org/build/233214058 at 2023-09-02
+  - shellish # failure in job https://hydra.nixos.org/build/233217316 at 2023-09-02
+  - shellmate # failure in job https://hydra.nixos.org/build/233217636 at 2023-09-02
+  - shell-pipe # failure in job https://hydra.nixos.org/build/233226605 at 2023-09-02
+  - shikensu # failure in job https://hydra.nixos.org/build/233230883 at 2023-09-02
+  - shimmer # failure in job https://hydra.nixos.org/build/233192737 at 2023-09-02
+  - shine-examples # failure in job https://hydra.nixos.org/build/233192871 at 2023-09-02
+  - shivers-cfg # failure in job https://hydra.nixos.org/build/233218516 at 2023-09-02
+  - shoap # failure in job https://hydra.nixos.org/build/233207909 at 2023-09-02
+  - shopify # failure in job https://hydra.nixos.org/build/233221330 at 2023-09-02
+  - shortbytestring # failure in job https://hydra.nixos.org/build/233216026 at 2023-09-02
+  - shortcut-links # failure in job https://hydra.nixos.org/build/233217442 at 2023-09-02
+  - shorten-strings # failure in job https://hydra.nixos.org/build/233247947 at 2023-09-02
+  - show-prettyprint # failure in job https://hydra.nixos.org/build/233213552 at 2023-09-02
+  - show-type # failure in job https://hydra.nixos.org/build/233225756 at 2023-09-02
+  - Shpadoinkle-console # failure in job https://hydra.nixos.org/build/233228559 at 2023-09-02
+  - Shpadoinkle-debug # failure in job https://hydra.nixos.org/build/233194479 at 2023-09-02
+  - Shpadoinkle-isreal # failure in job https://hydra.nixos.org/build/233200051 at 2023-09-02
+  - shwifty # failure in job https://hydra.nixos.org/build/233249022 at 2023-09-02
+  - sifflet # failure in job https://hydra.nixos.org/build/233210515 at 2023-09-02
+  - sifflet-lib # failure in job https://hydra.nixos.org/build/233222675 at 2023-09-02
+  - sigmacord # failure in job https://hydra.nixos.org/build/233194491 at 2023-09-02
+  - simd # failure in job https://hydra.nixos.org/build/233206642 at 2023-09-02
+  - simfin # failure in job https://hydra.nixos.org/build/233226776 at 2023-09-02
+  - simple-actors # failure in job https://hydra.nixos.org/build/233239183 at 2023-09-02
+  - simpleargs # failure in job https://hydra.nixos.org/build/233202182 at 2023-09-02
+  - simple-atom # failure in job https://hydra.nixos.org/build/233226957 at 2023-09-02
+  - simple-bluetooth # failure in job https://hydra.nixos.org/build/233199623 at 2023-09-02
+  - simple-conduit # failure in job https://hydra.nixos.org/build/233214502 at 2023-09-02
+  - simpleconfig # failure in job https://hydra.nixos.org/build/233195905 at 2023-09-02
+  - simple-config # failure in job https://hydra.nixos.org/build/233258957 at 2023-09-02
+  - simple-css # failure in job https://hydra.nixos.org/build/233244675 at 2023-09-02
+  - simple-download # failure in job https://hydra.nixos.org/build/233227569 at 2023-09-02
+  - simple-effects # failure in job https://hydra.nixos.org/build/233246128 at 2023-09-02
+  - simple-eval # failure in job https://hydra.nixos.org/build/233227793 at 2023-09-02
+  - simple-form # failure in job https://hydra.nixos.org/build/233243669 at 2023-09-02
+  - simple-genetic-algorithm # failure in job https://hydra.nixos.org/build/233200097 at 2023-09-02
+  - SimpleH # failure in job https://hydra.nixos.org/build/233212326 at 2023-09-02
+  - simple-index # failure in job https://hydra.nixos.org/build/233208598 at 2023-09-02
+  - simpleirc # failure in job https://hydra.nixos.org/build/233211073 at 2023-09-02
+  - simple-log # failure in job https://hydra.nixos.org/build/233253013 at 2023-09-02
+  - simple-media-timestamp-formatting # failure in job https://hydra.nixos.org/build/233228535 at 2023-09-02
+  - simple-money # failure in job https://hydra.nixos.org/build/233240744 at 2023-09-02
+  - simple-neural-networks # failure in job https://hydra.nixos.org/build/233226975 at 2023-09-02
+  - simplenote # failure in job https://hydra.nixos.org/build/233225953 at 2023-09-02
+  - simple-parser # failure in job https://hydra.nixos.org/build/233218275 at 2023-09-02
+  - simple-pipe # failure in job https://hydra.nixos.org/build/233251483 at 2023-09-02
+  - simpleprelude # failure in job https://hydra.nixos.org/build/233259585 at 2023-09-02
+  - simple-rope # failure in job https://hydra.nixos.org/build/233239446 at 2023-09-02
+  - simple-server # failure in job https://hydra.nixos.org/build/233242498 at 2023-09-02
+  - simplesmtpclient # failure in job https://hydra.nixos.org/build/233235261 at 2023-09-02
+  - simple-sql-parser # failure in job https://hydra.nixos.org/build/233203075 at 2023-09-02
+  - simple-stacked-vm # failure in job https://hydra.nixos.org/build/233206051 at 2023-09-02
+  - simplest-sqlite # failure in job https://hydra.nixos.org/build/233248487 at 2023-09-02
+  - simple-tabular # failure in job https://hydra.nixos.org/build/233233368 at 2023-09-02
+  - simple-tar # failure in job https://hydra.nixos.org/build/233206675 at 2023-09-02
+  - simple-ui # failure in job https://hydra.nixos.org/build/233248287 at 2023-09-02
+  - simple-units # failure in job https://hydra.nixos.org/build/233215127 at 2023-09-02
+  - simplexmq # failure in job https://hydra.nixos.org/build/233223717 at 2023-09-02
+  - simple-zipper # failure in job https://hydra.nixos.org/build/233210316 at 2023-09-02
+  - simplistic-generics # failure in job https://hydra.nixos.org/build/233217412 at 2023-09-02
+  - singlethongs # failure in job https://hydra.nixos.org/build/233202756 at 2023-09-02
+  - singleton-dict # failure in job https://hydra.nixos.org/build/233245405 at 2023-09-02
+  - singleton-typelits # failure in job https://hydra.nixos.org/build/233250877 at 2023-09-02
+  - single-tuple # failure in job https://hydra.nixos.org/build/233204418 at 2023-09-02
+  - singnal # failure in job https://hydra.nixos.org/build/233214111 at 2023-09-02
+  - singular-factory # failure in job https://hydra.nixos.org/build/233250779 at 2023-09-02
+  - sink # failure in job https://hydra.nixos.org/build/233240005 at 2023-09-02
+  - sint # failure in job https://hydra.nixos.org/build/233238431 at 2023-09-02
+  - siphash # failure in job https://hydra.nixos.org/build/233199344 at 2023-09-02
+  - sitepipe # failure in job https://hydra.nixos.org/build/233201989 at 2023-09-02
+  - sixfiguregroup # failure in job https://hydra.nixos.org/build/233252141 at 2023-09-02
+  - sized-grid # failure in job https://hydra.nixos.org/build/233239056 at 2023-09-02
+  - sized-types # failure in job https://hydra.nixos.org/build/233244977 at 2023-09-02
+  - sized-vector # failure in job https://hydra.nixos.org/build/233227779 at 2023-09-02
+  - sizes # failure in job https://hydra.nixos.org/build/233247070 at 2023-09-02
+  - sjsp # failure in job https://hydra.nixos.org/build/233225141 at 2023-09-02
+  - SJW # failure in job https://hydra.nixos.org/build/233209689 at 2023-09-02
+  - skeletal-set # failure in job https://hydra.nixos.org/build/233254711 at 2023-09-02
+  - skell # failure in job https://hydra.nixos.org/build/233245484 at 2023-09-02
+  - skemmtun # failure in job https://hydra.nixos.org/build/233223893 at 2023-09-02
+  - skopedate # failure in job https://hydra.nixos.org/build/233220634 at 2023-09-02
+  - skulk # failure in job https://hydra.nixos.org/build/233258672 at 2023-09-02
+  - skylighting-extensions # failure in job https://hydra.nixos.org/build/233221387 at 2023-09-02
+  - skype4hs # failure in job https://hydra.nixos.org/build/233221058 at 2023-09-02
+  - slack-api # failure in job https://hydra.nixos.org/build/233215701 at 2023-09-02
+  - slack # failure in job https://hydra.nixos.org/build/233221065 at 2023-09-02
+  - slack-notify-haskell # failure in job https://hydra.nixos.org/build/233249025 at 2023-09-02
+  - slack-verify # failure in job https://hydra.nixos.org/build/233206026 at 2023-09-02
+  - sliceofpy # failure in job https://hydra.nixos.org/build/233224418 at 2023-09-02
+  - slidemews # failure in job https://hydra.nixos.org/build/233205910 at 2023-09-02
+  - Slides # failure in job https://hydra.nixos.org/build/233201684 at 2023-09-02
+  - slim # failure in job https://hydra.nixos.org/build/233211282 at 2023-09-02
+  - sloane # failure in job https://hydra.nixos.org/build/233235255 at 2023-09-02
+  - sloth # failure in job https://hydra.nixos.org/build/233203718 at 2023-09-02
+  - slot-lambda # failure in job https://hydra.nixos.org/build/233252290 at 2023-09-02
+  - slug # failure in job https://hydra.nixos.org/build/233259687 at 2023-09-02
+  - slugify # failure in job https://hydra.nixos.org/build/233222023 at 2023-09-02
+  - smallarray # failure in job https://hydra.nixos.org/build/233256816 at 2023-09-02
+  - small-bytearray-builder # failure in job https://hydra.nixos.org/build/233248483 at 2023-09-02
+  - smallcaps # failure in job https://hydra.nixos.org/build/233201384 at 2023-09-02
+  - smallcheck-kind-generics # failure in job https://hydra.nixos.org/build/233230424 at 2023-09-02
+  - smallcheck-series # failure in job https://hydra.nixos.org/build/233213618 at 2023-09-02
+  - smallpt-hs # failure in job https://hydra.nixos.org/build/233250553 at 2023-09-02
+  - smap # failure in job https://hydra.nixos.org/build/233208052 at 2023-09-02
+  - smartcheck # failure in job https://hydra.nixos.org/build/233241864 at 2023-09-02
+  - smartconstructor # failure in job https://hydra.nixos.org/build/233256663 at 2023-09-02
+  - smartGroup # failure in job https://hydra.nixos.org/build/233200155 at 2023-09-02
+  - smash # failure in job https://hydra.nixos.org/build/233191239 at 2023-09-02
+  - smawk # failure in job https://hydra.nixos.org/build/233258699 at 2023-09-02
+  - sme # failure in job https://hydra.nixos.org/build/233208306 at 2023-09-02
+  - smerdyakov # failure in job https://hydra.nixos.org/build/233238735 at 2023-09-02
+  - smiles # failure in job https://hydra.nixos.org/build/233197831 at 2023-09-02
+  - SmithNormalForm # failure in job https://hydra.nixos.org/build/233253620 at 2023-09-02
+  - smoothie # failure in job https://hydra.nixos.org/build/233250042 at 2023-09-02
+  - smsaero # failure in job https://hydra.nixos.org/build/233215880 at 2023-09-02
+  - smtlib2 # failure in job https://hydra.nixos.org/build/233251831 at 2023-09-02
+  - smtlib-backends-process # failure in job https://hydra.nixos.org/build/233209223 at 2023-09-02
+  - smt-lib # failure in job https://hydra.nixos.org/build/233208443 at 2023-09-02
+  - SmtLib # failure in job https://hydra.nixos.org/build/233213271 at 2023-09-02
+  - SMTPClient # failure in job https://hydra.nixos.org/build/233247599 at 2023-09-02
+  - smtp-mail-ng # failure in job https://hydra.nixos.org/build/233220094 at 2023-09-02
+  - smtps-gmail # failure in job https://hydra.nixos.org/build/233191933 at 2023-09-02
+  - smuggler2 # failure in job https://hydra.nixos.org/build/233233932 at 2023-09-02
+  - smuggler # failure in job https://hydra.nixos.org/build/233199288 at 2023-09-02
+  - snake # failure in job https://hydra.nixos.org/build/233242029 at 2023-09-02
+  - snake-game # failure in job https://hydra.nixos.org/build/234441416 at 2023-09-13
+  - snap-accept # failure in job https://hydra.nixos.org/build/233254776 at 2023-09-02
+  - snap-blaze-clay # failure in job https://hydra.nixos.org/build/233204686 at 2023-09-02
+  - snap-configuration-utilities # failure in job https://hydra.nixos.org/build/233202496 at 2023-09-02
+  - snap-language # failure in job https://hydra.nixos.org/build/233257003 at 2023-09-02
+  - snap-loader-dynamic # failure in job https://hydra.nixos.org/build/233197376 at 2023-09-02
+  - snap-predicates # failure in job https://hydra.nixos.org/build/233244904 at 2023-09-02
+  - snappy-conduit # failure in job https://hydra.nixos.org/build/233196865 at 2023-09-02
+  - snap-stream # failure in job https://hydra.nixos.org/build/233237969 at 2023-09-02
+  - SNet # failure in job https://hydra.nixos.org/build/233225638 at 2023-09-02
+  - snipcheck # failure in job https://hydra.nixos.org/build/233214417 at 2023-09-02
+  - snorkels # failure in job https://hydra.nixos.org/build/233229705 at 2023-09-02
+  - snowchecked # failure in job https://hydra.nixos.org/build/233258191 at 2023-09-02
+  - snowtify # failure in job https://hydra.nixos.org/build/233215099 at 2023-09-02
+  - socket-activation # failure in job https://hydra.nixos.org/build/233258011 at 2023-09-02
+  - socketed # failure in job https://hydra.nixos.org/build/233210087 at 2023-09-02
+  - socketio # failure in job https://hydra.nixos.org/build/233214659 at 2023-09-02
+  - socket-sctp # failure in job https://hydra.nixos.org/build/233228125 at 2023-09-02
+  - socket-unix # failure in job https://hydra.nixos.org/build/233238226 at 2023-09-02
+  - sodium # failure in job https://hydra.nixos.org/build/233213989 at 2023-09-02
+  - soegtk # failure in job https://hydra.nixos.org/build/233198991 at 2023-09-02
+  - softfloat-hs # failure in job https://hydra.nixos.org/build/233205242 at 2023-09-02
+  - solar # failure in job https://hydra.nixos.org/build/233217024 at 2023-09-02
+  - solga # failure in job https://hydra.nixos.org/build/233214770 at 2023-09-02
+  - som # failure in job https://hydra.nixos.org/build/233193912 at 2023-09-02
+  - sonic-visualiser # failure in job https://hydra.nixos.org/build/233257956 at 2023-09-02
+  - Sonnex # failure in job https://hydra.nixos.org/build/233229367 at 2023-09-02
+  - SoOSiM # failure in job https://hydra.nixos.org/build/233224114 at 2023-09-02
+  - sorted # failure in job https://hydra.nixos.org/build/233222633 at 2023-09-02
+  - sorting # failure in job https://hydra.nixos.org/build/233214204 at 2023-09-02
+  - sorty # failure in job https://hydra.nixos.org/build/233211118 at 2023-09-02
+  - souffle-haskell # failure in job https://hydra.nixos.org/build/233229472 at 2023-09-02
+  - source-constraints # failure in job https://hydra.nixos.org/build/233254750 at 2023-09-02
+  - sousit # failure in job https://hydra.nixos.org/build/233204067 at 2023-09-02
+  - soyuz # failure in job https://hydra.nixos.org/build/233196903 at 2023-09-02
+  - SpaceInvaders # failure in job https://hydra.nixos.org/build/233205063 at 2023-09-02
+  - spacepart # failure in job https://hydra.nixos.org/build/233190848 at 2023-09-02
+  - spake2 # failure in job https://hydra.nixos.org/build/233209098 at 2023-09-02
+  - spanout # failure in job https://hydra.nixos.org/build/234462954 at 2023-09-13
+  - sparsecheck # failure in job https://hydra.nixos.org/build/233253454 at 2023-09-02
+  - sparse # failure in job https://hydra.nixos.org/build/233222289 at 2023-09-02
+  - sparse-lin-alg # failure in job https://hydra.nixos.org/build/233206178 at 2023-09-02
+  - sparse-linear-algebra # failure in job https://hydra.nixos.org/build/233214075 at 2023-09-02
+  - sparse-merkle-trees # failure in job https://hydra.nixos.org/build/233251228 at 2023-09-02
+  - sparse-tensor # failure in job https://hydra.nixos.org/build/233224869 at 2023-09-02
+  - spars # failure in job https://hydra.nixos.org/build/233221560 at 2023-09-02
+  - special-functors # failure in job https://hydra.nixos.org/build/233215268 at 2023-09-02
+  - special-keys # failure in job https://hydra.nixos.org/build/233191988 at 2023-09-02
+  - spectacle # failure in job https://hydra.nixos.org/build/233207488 at 2023-09-02
+  - speculation # failure in job https://hydra.nixos.org/build/233211559 at 2023-09-02
+  - sphinxesc # failure in job https://hydra.nixos.org/build/233194825 at 2023-09-02
+  - sphinx # failure in job https://hydra.nixos.org/build/233247449 at 2023-09-02
+  - Spintax # failure in job https://hydra.nixos.org/build/233224001 at 2023-09-02
+  - spiros # failure in job https://hydra.nixos.org/build/233249615 at 2023-09-02
+  - spir-v # failure in job https://hydra.nixos.org/build/233191427 at 2023-09-02
+  - splay # failure in job https://hydra.nixos.org/build/233217055 at 2023-09-02
+  - splaytree # failure in job https://hydra.nixos.org/build/233231273 at 2023-09-02
+  - splint # failure in job https://hydra.nixos.org/build/233202156 at 2023-09-02
+  - split-morphism # failure in job https://hydra.nixos.org/build/233257735 at 2023-09-02
+  - splitter # failure in job https://hydra.nixos.org/build/233204684 at 2023-09-02
+  - Spock-api-ghcjs # failure in job https://hydra.nixos.org/build/233246163 at 2023-09-02
+  - Spock-auth # failure in job https://hydra.nixos.org/build/233212125 at 2023-09-02
+  - spoonutil # failure in job https://hydra.nixos.org/build/233257645 at 2023-09-02
+  - spotify # failure in job https://hydra.nixos.org/build/233254990 at 2023-09-02
+  - spoty # failure in job https://hydra.nixos.org/build/233233863 at 2023-09-02
+  - Sprig # failure in job https://hydra.nixos.org/build/233223144 at 2023-09-02
+  - spritz # failure in job https://hydra.nixos.org/build/233230733 at 2023-09-02
+  - spsa # failure in job https://hydra.nixos.org/build/233221021 at 2023-09-02
+  - spy # failure in job https://hydra.nixos.org/build/233208095 at 2023-09-02
+  - sqel # failure in job https://hydra.nixos.org/build/233256622 at 2023-09-02
+  - sqids # failure in job https://hydra.nixos.org/build/233213849 at 2023-09-02
+  - sqlcipher # failure in job https://hydra.nixos.org/build/233259217 at 2023-09-02
+  - sqlite # failure in job https://hydra.nixos.org/build/233215839 at 2023-09-02
+  - sqlite-simple-errors # failure in job https://hydra.nixos.org/build/233232977 at 2023-09-02
+  - sql-simple # failure in job https://hydra.nixos.org/build/233252834 at 2023-09-02
+  - sqlvalue-list # failure in job https://hydra.nixos.org/build/233197313 at 2023-09-02
+  - srcinst # failure in job https://hydra.nixos.org/build/233221356 at 2023-09-02
+  - srt-attoparsec # failure in job https://hydra.nixos.org/build/233248456 at 2023-09-02
+  - sscan # failure in job https://hydra.nixos.org/build/233248144 at 2023-09-02
+  - ssh # failure in job https://hydra.nixos.org/build/233215512 at 2023-09-02
+  - ssh-tunnel # failure in job https://hydra.nixos.org/build/233245203 at 2023-09-02
+  - SSTG # failure in job https://hydra.nixos.org/build/233250677 at 2023-09-02
+  - st2 # failure in job https://hydra.nixos.org/build/233256469 at 2023-09-02
+  - stable-maps # failure in job https://hydra.nixos.org/build/233229084 at 2023-09-02
+  - stack2cabal # failure in job https://hydra.nixos.org/build/233663091 at 2023-09-02
+  - stack2nix # failure in job https://hydra.nixos.org/build/233662912 at 2023-09-02
+  - stackage-cli # failure in job https://hydra.nixos.org/build/233213721 at 2023-09-02
+  - stackage-metadata # failure in job https://hydra.nixos.org/build/233197359 at 2023-09-02
+  - stackage-to-hackage # failure in job https://hydra.nixos.org/build/233233948 at 2023-09-02
+  - stackage-types # failure in job https://hydra.nixos.org/build/233239995 at 2023-09-02
+  - stack-bump # failure in job https://hydra.nixos.org/build/233257783 at 2023-09-02
+  - stackcollapse-ghc # failure in job https://hydra.nixos.org/build/233250775 at 2023-09-02
+  - stack-fix # failure in job https://hydra.nixos.org/build/233253628 at 2023-09-02
+  - stack-lib # failure in job https://hydra.nixos.org/build/233662933 at 2023-09-02
+  - stack-prism # failure in job https://hydra.nixos.org/build/233216902 at 2023-09-02
+  - stack-run # failure in job https://hydra.nixos.org/build/233213318 at 2023-09-02
+  - stack-type # failure in job https://hydra.nixos.org/build/233208961 at 2023-09-02
+  - stack-wrapper # failure in job https://hydra.nixos.org/build/233259663 at 2023-09-02
+  - staged-gg # failure in job https://hydra.nixos.org/build/233252183 at 2023-09-02
+  - standalone-derive-topdown # failure in job https://hydra.nixos.org/build/233252467 at 2023-09-02
+  - standalone-haddock # failure in job https://hydra.nixos.org/build/233254339 at 2023-09-02
+  - stan # failure in job https://hydra.nixos.org/build/233200000 at 2023-09-02
+  - starling # failure in job https://hydra.nixos.org/build/233255468 at 2023-09-02
+  - starter # failure in job https://hydra.nixos.org/build/233208799 at 2023-09-02
+  - stash # failure in job https://hydra.nixos.org/build/233193110 at 2023-09-02
+  - Stasis # failure in job https://hydra.nixos.org/build/233209365 at 2023-09-02
+  - state-bag # failure in job https://hydra.nixos.org/build/233222753 at 2023-09-02
+  - state # failure in job https://hydra.nixos.org/build/233215872 at 2023-09-02
+  - state-plus # failure in job https://hydra.nixos.org/build/233243653 at 2023-09-02
+  - state-record # failure in job https://hydra.nixos.org/build/233222199 at 2023-09-02
+  - static # failure in job https://hydra.nixos.org/build/233217136 at 2023-09-02
+  - static-ls # failure in job https://hydra.nixos.org/build/233199876 at 2023-09-02
+  - static-tensor # failure in job https://hydra.nixos.org/build/233217705 at 2023-09-02
+  - statistics-fusion # failure in job https://hydra.nixos.org/build/233229681 at 2023-09-02
+  - statistics-hypergeometric-genvar # failure in job https://hydra.nixos.org/build/233193257 at 2023-09-02
+  - statistics-skinny # failure in job https://hydra.nixos.org/build/233233994 at 2023-09-02
+  - statsd # failure in job https://hydra.nixos.org/build/233235428 at 2023-09-02
+  - stats # failure in job https://hydra.nixos.org/build/233255737 at 2023-09-02
+  - statvfs # failure in job https://hydra.nixos.org/build/233220845 at 2023-09-02
+  - stb-image-redux # failure in job https://hydra.nixos.org/build/233202153 at 2023-09-02
+  - stc-lang # failure in job https://hydra.nixos.org/build/233241234 at 2023-09-02
+  - stdata # failure in job https://hydra.nixos.org/build/233255940 at 2023-09-02
+  - stdf # failure in job https://hydra.nixos.org/build/233229554 at 2023-09-02
+  - stdio # failure in job https://hydra.nixos.org/build/233212474 at 2023-09-02
+  - steambrowser # failure in job https://hydra.nixos.org/build/233234382 at 2023-09-02
+  - stego-uuid # failure in job https://hydra.nixos.org/build/233206943 at 2023-09-02
+  - stemmer # failure in job https://hydra.nixos.org/build/233193774 at 2023-09-02
+  - stemmer-german # failure in job https://hydra.nixos.org/build/233212893 at 2023-09-02
+  - stepwise # failure in job https://hydra.nixos.org/build/233238388 at 2023-09-02
+  - stgi # failure in job https://hydra.nixos.org/build/233233567 at 2023-09-02
+  - STL # failure in job https://hydra.nixos.org/build/233231485 at 2023-09-02
+  - stm-chunked-queues # failure in job https://hydra.nixos.org/build/233227966 at 2023-09-02
+  - stm-firehose # failure in job https://hydra.nixos.org/build/233220943 at 2023-09-02
+  - stm-promise # failure in job https://hydra.nixos.org/build/233204293 at 2023-09-02
+  - stm-stats # failure in job https://hydra.nixos.org/build/233214914 at 2023-09-02
+  - stochastic # failure in job https://hydra.nixos.org/build/233242019 at 2023-09-02
+  - Stomp # failure in job https://hydra.nixos.org/build/233252583 at 2023-09-02
+  - stooq-api # failure in job https://hydra.nixos.org/build/233200858 at 2023-09-02
+  - storable # failure in job https://hydra.nixos.org/build/233228880 at 2023-09-02
+  - storable-offset # failure in job https://hydra.nixos.org/build/233242993 at 2023-09-02
+  - storable-static-array # failure in job https://hydra.nixos.org/build/233222724 at 2023-09-02
+  - stp # failure in job https://hydra.nixos.org/build/233204519 at 2023-09-02
+  - Strafunski-ATermLib # failure in job https://hydra.nixos.org/build/233229490 at 2023-09-02
+  - Strafunski-StrategyLib # failure in job https://hydra.nixos.org/build/233245449 at 2023-09-02
+  - StrappedTemplates # failure in job https://hydra.nixos.org/build/233193696 at 2023-09-02
+  - StrategyLib # failure in job https://hydra.nixos.org/build/233214584 at 2023-09-02
+  - stratux-types # failure in job https://hydra.nixos.org/build/233232808 at 2023-09-02
+  - streamdeck # failure in job https://hydra.nixos.org/build/233226165 at 2023-09-02
+  - streamed # failure in job https://hydra.nixos.org/build/233203079 at 2023-09-02
+  - stream # failure in job https://hydra.nixos.org/build/233226470 at 2023-09-02
+  - stream-fusion # failure in job https://hydra.nixos.org/build/233225947 at 2023-09-02
+  - streaming-benchmarks # failure in job https://hydra.nixos.org/build/233216756 at 2023-09-02
+  - streaming-brotli # failure in job https://hydra.nixos.org/build/233245393 at 2023-09-02
+  - streaming-cassava # failure in job https://hydra.nixos.org/build/233208371 at 2023-09-02
+  - streaming-conduit # failure in job https://hydra.nixos.org/build/233259762 at 2023-09-02
+  - streaming-events # failure in job https://hydra.nixos.org/build/233198216 at 2023-09-02
+  - streaming-lzma # failure in job https://hydra.nixos.org/build/233239635 at 2023-09-02
+  - streaming-osm # failure in job https://hydra.nixos.org/build/233229467 at 2023-09-02
+  - streaming-png # failure in job https://hydra.nixos.org/build/233236752 at 2023-09-02
+  - streaming-postgresql-simple # failure in job https://hydra.nixos.org/build/233212839 at 2023-09-02
+  - streaming-with # failure in job https://hydra.nixos.org/build/233191184 at 2023-09-02
+  - streamly-binary # failure in job https://hydra.nixos.org/build/233240602 at 2023-09-02
+  - streamly-cassava # failure in job https://hydra.nixos.org/build/233237843 at 2023-09-02
+  - streamly-fsnotify # failure in job https://hydra.nixos.org/build/233220038 at 2023-09-02
+  - streamly-lz4 # failure in job https://hydra.nixos.org/build/233219321 at 2023-09-02
+  - streamly-posix # failure in job https://hydra.nixos.org/build/233194023 at 2023-09-02
+  - stream-monad # failure in job https://hydra.nixos.org/build/233222592 at 2023-09-02
+  - streamproc # failure in job https://hydra.nixos.org/build/233196179 at 2023-09-02
+  - strelka-core # failure in job https://hydra.nixos.org/build/233218594 at 2023-09-02
+  - str # failure in job https://hydra.nixos.org/build/233227698 at 2023-09-02
+  - StrictBench # failure in job https://hydra.nixos.org/build/233259575 at 2023-09-02
+  - StrictCheck # failure in job https://hydra.nixos.org/build/233214649 at 2023-09-02
+  - strict-containers # failure in job https://hydra.nixos.org/build/233215090 at 2023-09-02
+  - strict-ghc-plugin # failure in job https://hydra.nixos.org/build/233246830 at 2023-09-02
+  - strictly # failure in job https://hydra.nixos.org/build/233197142 at 2023-09-02
+  - strict-tuple-lens # failure in job https://hydra.nixos.org/build/233194548 at 2023-09-02
+  - string-class # failure in job https://hydra.nixos.org/build/233230041 at 2023-09-02
+  - string-conv-tests # failure in job https://hydra.nixos.org/build/233242710 at 2023-09-02
+  - string-fromto # failure in job https://hydra.nixos.org/build/233223157 at 2023-09-02
+  - string-isos # failure in job https://hydra.nixos.org/build/233252917 at 2023-09-02
+  - stringlike # failure in job https://hydra.nixos.org/build/233258750 at 2023-09-02
+  - string-quote # failure in job https://hydra.nixos.org/build/233259595 at 2023-09-02
+  - stringtable-atom # failure in job https://hydra.nixos.org/build/233235085 at 2023-09-02
+  - stripe-core # failure in job https://hydra.nixos.org/build/233215702 at 2023-09-02
+  - stripe # failure in job https://hydra.nixos.org/build/233248173 at 2023-09-02
+  - stripe-hs # failure in job https://hydra.nixos.org/build/233203500 at 2023-09-02
+  - strong-path # failure in job https://hydra.nixos.org/build/233225171 at 2023-09-02
+  - structural-traversal # failure in job https://hydra.nixos.org/build/233235730 at 2023-09-02
+  - structures # failure in job https://hydra.nixos.org/build/233206488 at 2023-09-02
+  - stt # failure in job https://hydra.nixos.org/build/233233101 at 2023-09-02
+  - stunclient # failure in job https://hydra.nixos.org/build/233251136 at 2023-09-02
+  - stylish-cabal # failure in job https://hydra.nixos.org/build/233202801 at 2023-09-02
+  - stylist # failure in job https://hydra.nixos.org/build/233223662 at 2023-09-02
+  - stylized # failure in job https://hydra.nixos.org/build/233211499 at 2023-09-02
+  - subG-instances # failure in job https://hydra.nixos.org/build/233216227 at 2023-09-02
+  - subleq-toolchain # failure in job https://hydra.nixos.org/build/233239415 at 2023-09-02
+  - submark # failure in job https://hydra.nixos.org/build/233231701 at 2023-09-02
+  - subsample # failure in job https://hydra.nixos.org/build/233201324 at 2023-09-02
+  - sub-state # failure in job https://hydra.nixos.org/build/233202687 at 2023-09-02
+  - subwordgraph # failure in job https://hydra.nixos.org/build/233229131 at 2023-09-02
+  - suffix-array # failure in job https://hydra.nixos.org/build/233247630 at 2023-09-02
+  - suffixarray # failure in job https://hydra.nixos.org/build/233256495 at 2023-09-02
+  - SuffixStructures # failure in job https://hydra.nixos.org/build/233245541 at 2023-09-02
+  - sugar # failure in job https://hydra.nixos.org/build/233202489 at 2023-09-02
+  - sugarhaskell # failure in job https://hydra.nixos.org/build/233199879 at 2023-09-02
+  - suitable # failure in job https://hydra.nixos.org/build/233225075 at 2023-09-02
+  - summoner # failure in job https://hydra.nixos.org/build/233232530 at 2023-09-02
+  - sum-type-boilerplate # failure in job https://hydra.nixos.org/build/233251040 at 2023-09-02
+  - sunlight # failure in job https://hydra.nixos.org/build/233212375 at 2023-09-02
+  - sunroof-compiler # failure in job https://hydra.nixos.org/build/233228734 at 2023-09-02
+  - superbubbles # failure in job https://hydra.nixos.org/build/233243148 at 2023-09-02
+  - superevent # failure in job https://hydra.nixos.org/build/233251723 at 2023-09-02
+  - supermonad # failure in job https://hydra.nixos.org/build/233203124 at 2023-09-02
+  - supero # failure in job https://hydra.nixos.org/build/233191836 at 2023-09-02
+  - superrecord # failure in job https://hydra.nixos.org/build/233249988 at 2023-09-02
+  - super-user-spark # failure in job https://hydra.nixos.org/build/233253403 at 2023-09-02
+  - supervisor # failure in job https://hydra.nixos.org/build/233226414 at 2023-09-02
+  - supervisors # failure in job https://hydra.nixos.org/build/233238299 at 2023-09-02
+  - supplemented # failure in job https://hydra.nixos.org/build/233237397 at 2023-09-02
+  - surjective # failure in job https://hydra.nixos.org/build/233242908 at 2023-09-02
+  - sv2v # failure in job https://hydra.nixos.org/build/233190750 at 2023-09-02
+  - sv-core # failure in job https://hydra.nixos.org/build/233217245 at 2023-09-02
+  - SVD2HS # failure in job https://hydra.nixos.org/build/233248575 at 2023-09-02
+  - svfactor # failure in job https://hydra.nixos.org/build/233256743 at 2023-09-02
+  - svg-builder-fork # failure in job https://hydra.nixos.org/build/233224461 at 2023-09-02
+  - svgsym # failure in job https://hydra.nixos.org/build/233255287 at 2023-09-02
+  - svgutils # failure in job https://hydra.nixos.org/build/233193438 at 2023-09-02
+  - svm-light-utils # failure in job https://hydra.nixos.org/build/233219138 at 2023-09-02
+  - svm-simple # failure in job https://hydra.nixos.org/build/233235871 at 2023-09-02
+  - svndump # failure in job https://hydra.nixos.org/build/233229122 at 2023-09-02
+  - swagger # failure in job https://hydra.nixos.org/build/233198161 at 2023-09-02
+  - swagger-petstore # failure in job https://hydra.nixos.org/build/233205797 at 2023-09-02
+  - swagger-test # failure in job https://hydra.nixos.org/build/233231958 at 2023-09-02
+  - swarm # failure in job https://hydra.nixos.org/build/233201687 at 2023-09-02
+  - swearjure # failure in job https://hydra.nixos.org/build/233231407 at 2023-09-02
+  - swf # failure in job https://hydra.nixos.org/build/233191062 at 2023-09-02
+  - swift-lda # failure in job https://hydra.nixos.org/build/233252608 at 2023-09-02
+  - swiss-ephemeris # failure in job https://hydra.nixos.org/build/233250845 at 2023-09-02
+  - swiss # failure in job https://hydra.nixos.org/build/233251942 at 2023-09-02
+  - sws # failure in job https://hydra.nixos.org/build/233246954 at 2023-09-02
+  - syb-extras # failure in job https://hydra.nixos.org/build/233206431 at 2023-09-02
+  - syb-with-class # failure in job https://hydra.nixos.org/build/233222818 at 2023-09-02
+  - sydtest-hedis # failure in job https://hydra.nixos.org/build/233207856 at 2023-09-02
+  - sydtest-hspec # failure in job https://hydra.nixos.org/build/233228638 at 2023-09-02
+  - sydtest-mongo # failure in job https://hydra.nixos.org/build/233249700 at 2023-09-02
+  - sydtest-persistent-postgresql # failure in job https://hydra.nixos.org/build/233214331 at 2023-09-02
+  - sydtest-persistent-sqlite # failure in job https://hydra.nixos.org/build/233229399 at 2023-09-02
+  - sydtest-rabbitmq # failure in job https://hydra.nixos.org/build/233260128 at 2023-09-02
+  - sydtest-webdriver # failure in job https://hydra.nixos.org/build/233245448 at 2023-09-02
+  - syfco # failure in job https://hydra.nixos.org/build/233225199 at 2023-09-02
+  - symantic-cli # failure in job https://hydra.nixos.org/build/233225149 at 2023-09-02
+  - symantic # failure in job https://hydra.nixos.org/build/233230940 at 2023-09-02
+  - symantic-http-client # failure in job https://hydra.nixos.org/build/233222353 at 2023-09-02
+  - symantic-parser # failure in job https://hydra.nixos.org/build/233197879 at 2023-09-02
+  - symantic-xml # failure in job https://hydra.nixos.org/build/233230860 at 2023-09-02
+  - symbolic-link # failure in job https://hydra.nixos.org/build/233255331 at 2023-09-02
+  - symengine # failure in job https://hydra.nixos.org/build/233203977 at 2023-09-02
+  - sync # failure in job https://hydra.nixos.org/build/233254114 at 2023-09-02
+  - sync-mht # failure in job https://hydra.nixos.org/build/233236022 at 2023-09-02
+  - syntactic # failure in job https://hydra.nixos.org/build/233210123 at 2023-09-02
+  - syntax-trees # failure in job https://hydra.nixos.org/build/233209576 at 2023-09-02
+  - syntax-trees-fork-bairyn # failure in job https://hydra.nixos.org/build/233216989 at 2023-09-02
+  - synthesizer # failure in job https://hydra.nixos.org/build/233259139 at 2023-09-02
+  - Sysmon # failure in job https://hydra.nixos.org/build/233224152 at 2023-09-02
+  - system-canonicalpath # failure in job https://hydra.nixos.org/build/233254297 at 2023-09-02
+  - system-command # failure in job https://hydra.nixos.org/build/233239356 at 2023-09-02
+  - system-extra # failure in job https://hydra.nixos.org/build/233203137 at 2023-09-02
+  - system-inotify # failure in job https://hydra.nixos.org/build/233206871 at 2023-09-02
+  - system-lifted # failure in job https://hydra.nixos.org/build/233236013 at 2023-09-02
+  - system-linux-proc # failure in job https://hydra.nixos.org/build/233209447 at 2023-09-02
+  - system-locale # failure in job https://hydra.nixos.org/build/233201789 at 2023-09-02
+  - system-random-effect # failure in job https://hydra.nixos.org/build/233232067 at 2023-09-02
+  - system-test # failure in job https://hydra.nixos.org/build/233240318 at 2023-09-02
+  - t3-server # failure in job https://hydra.nixos.org/build/233220511 at 2023-09-02
+  - tableaux # failure in job https://hydra.nixos.org/build/233230428 at 2023-09-02
+  - table # failure in job https://hydra.nixos.org/build/233223186 at 2023-09-02
+  - Tables # failure in job https://hydra.nixos.org/build/233195704 at 2023-09-02
+  - tables # failure in job https://hydra.nixos.org/build/233224632 at 2023-09-02
+  - tablestorage # failure in job https://hydra.nixos.org/build/233195223 at 2023-09-02
+  - table-tennis # failure in job https://hydra.nixos.org/build/233225503 at 2023-09-02
+  - Tablify # failure in job https://hydra.nixos.org/build/233219427 at 2023-09-02
+  - tabloid # failure in job https://hydra.nixos.org/build/233244751 at 2023-09-02
+  - tabs # failure in job https://hydra.nixos.org/build/233227179 at 2023-09-02
+  - tag-bits # failure in job https://hydra.nixos.org/build/233245196 at 2023-09-02
+  - tagged-exception-core # failure in job https://hydra.nixos.org/build/233227946 at 2023-09-02
+  - tagged-timers # failure in job https://hydra.nixos.org/build/233238738 at 2023-09-02
+  - taggy-lens # failure in job https://hydra.nixos.org/build/233253920 at 2023-09-02
+  - taglib-api # failure in job https://hydra.nixos.org/build/233259216 at 2023-09-02
+  - tagsoup-ht # failure in job https://hydra.nixos.org/build/233233672 at 2023-09-02
+  - tagsoup-megaparsec # failure in job https://hydra.nixos.org/build/233205700 at 2023-09-02
+  - tagsoup-parsec # failure in job https://hydra.nixos.org/build/233200887 at 2023-09-02
+  - tagsoup-selection # failure in job https://hydra.nixos.org/build/233228969 at 2023-09-02
+  - tagtree # failure in job https://hydra.nixos.org/build/233209409 at 2023-09-02
+  - tahoe-capabilities # failure in job https://hydra.nixos.org/build/233253813 at 2023-09-02
+  - tai64 # failure in job https://hydra.nixos.org/build/233257422 at 2023-09-02
+  - tai # failure in job https://hydra.nixos.org/build/233210483 at 2023-09-02
+  - tailwind # failure in job https://hydra.nixos.org/build/233238757 at 2023-09-02
+  - tak # failure in job https://hydra.nixos.org/build/233191188 at 2023-09-02
+  - Takusen # failure in job https://hydra.nixos.org/build/233230088 at 2023-09-02
+  - takusen-oracle # failure in job https://hydra.nixos.org/build/233197944 at 2023-09-02
+  - tamarin-prover-utils # failure in job https://hydra.nixos.org/build/233235417 at 2023-09-02
+  - Tape # failure in job https://hydra.nixos.org/build/233191662 at 2023-09-02
+  - tapioca # failure in job https://hydra.nixos.org/build/233207781 at 2023-09-02
+  - TaskMonad # failure in job https://hydra.nixos.org/build/233219257 at 2023-09-02
+  - tasty-autocollect # failure in job https://hydra.nixos.org/build/233256957 at 2023-09-02
+  - tasty-auto # failure in job https://hydra.nixos.org/build/233220008 at 2023-09-02
+  - tasty-fail-fast # failure in job https://hydra.nixos.org/build/233200040 at 2023-09-02
+  - tasty-hedgehog-coverage # failure in job https://hydra.nixos.org/build/233231332 at 2023-09-02
+  - tasty-mgolden # failure in job https://hydra.nixos.org/build/233248196 at 2023-09-02
+  - tasty-stats # failure in job https://hydra.nixos.org/build/233228752 at 2023-09-02
+  - tasty-test-reporter # failure in job https://hydra.nixos.org/build/233208181 at 2023-09-02
+  - tasty-test-vector # failure in job https://hydra.nixos.org/build/233231957 at 2023-09-02
+  - TBC # failure in job https://hydra.nixos.org/build/233217773 at 2023-09-02
+  - TBit # failure in job https://hydra.nixos.org/build/233232991 at 2023-09-02
+  - tcache-AWS # failure in job https://hydra.nixos.org/build/233250577 at 2023-09-02
+  - tcp # failure in job https://hydra.nixos.org/build/233249662 at 2023-09-02
+  - tcp-streams-openssl # failure in job https://hydra.nixos.org/build/233258076 at 2023-09-02
+  - tdigest-Chart # failure in job https://hydra.nixos.org/build/233244784 at 2023-09-02
+  - tdoc # failure in job https://hydra.nixos.org/build/233250532 at 2023-09-02
+  - tds # failure in job https://hydra.nixos.org/build/233201528 at 2023-09-02
+  - teams # failure in job https://hydra.nixos.org/build/233228277 at 2023-09-02
+  - technique # failure in job https://hydra.nixos.org/build/233196740 at 2023-09-02
+  - teeth # failure in job https://hydra.nixos.org/build/233238279 at 2023-09-02
+  - tehepero # failure in job https://hydra.nixos.org/build/233245967 at 2023-09-02
+  - telega # failure in job https://hydra.nixos.org/build/233239016 at 2023-09-02
+  - telegram-api # failure in job https://hydra.nixos.org/build/233255927 at 2023-09-02
+  - telegram # failure in job https://hydra.nixos.org/build/233203974 at 2023-09-02
+  - telegram-types # failure in job https://hydra.nixos.org/build/233598183 at 2023-09-02
+  - telegraph # failure in job https://hydra.nixos.org/build/233213772 at 2023-09-02
+  - teleport # failure in job https://hydra.nixos.org/build/233194305 at 2023-09-02
+  - teleshell # failure in job https://hydra.nixos.org/build/233225954 at 2023-09-02
+  - tellbot # failure in job https://hydra.nixos.org/build/233200225 at 2023-09-02
+  - template-default # failure in job https://hydra.nixos.org/build/233238125 at 2023-09-02
+  - template # failure in job https://hydra.nixos.org/build/233242058 at 2023-09-02
+  - template-haskell-optics # failure in job https://hydra.nixos.org/build/233203627 at 2023-09-02
+  - template-haskell-util # failure in job https://hydra.nixos.org/build/233198104 at 2023-09-02
+  - template-hsml # failure in job https://hydra.nixos.org/build/233203243 at 2023-09-02
+  - templateify # failure in job https://hydra.nixos.org/build/233234863 at 2023-09-02
+  - templatepg # failure in job https://hydra.nixos.org/build/233250442 at 2023-09-02
+  - template-toolkit # failure in job https://hydra.nixos.org/build/233195990 at 2023-09-02
+  - template-yj # failure in job https://hydra.nixos.org/build/233236245 at 2023-09-02
+  - tempodb # failure in job https://hydra.nixos.org/build/233205994 at 2023-09-02
+  - tempus # failure in job https://hydra.nixos.org/build/233245670 at 2023-09-02
+  - ten # failure in job https://hydra.nixos.org/build/233216705 at 2023-09-02
+  - tensor # failure in job https://hydra.nixos.org/build/233233707 at 2023-09-02
+  - tensorflow-core-ops # failure building python tensorflow dependency 2023-09-09
+  - tensorflow # failure building python tensorflow dependency 2023-09-09
+  - tensorflow-logging # failure building python tensorflow dependency 2023-09-09
+  - tensorflow-ops # failure building python tensorflow dependency 2023-09-09
+  - tensor-safe # failure in job https://hydra.nixos.org/build/233239719 at 2023-09-02
+  - termbox-bindings # failure in job https://hydra.nixos.org/build/233257579 at 2023-09-02
+  - termination-combinators # failure in job https://hydra.nixos.org/build/233202329 at 2023-09-02
+  - termplot # failure in job https://hydra.nixos.org/build/233245692 at 2023-09-02
+  - terntup # failure in job https://hydra.nixos.org/build/233203746 at 2023-09-02
+  - tersmu # failure in job https://hydra.nixos.org/build/233253842 at 2023-09-02
+  - testCom # failure in job https://hydra.nixos.org/build/233210118 at 2023-09-02
+  - testcontainers # failure in job https://hydra.nixos.org/build/233226596 at 2023-09-02
+  - TestExplode # failure in job https://hydra.nixos.org/build/233207327 at 2023-09-02
+  - test-fixture # failure in job https://hydra.nixos.org/build/233203103 at 2023-09-02
+  - test-framework-doctest # failure in job https://hydra.nixos.org/build/233256232 at 2023-09-02
+  - test-framework-quickcheck # failure in job https://hydra.nixos.org/build/233199583 at 2023-09-02
+  - test-framework-skip # failure in job https://hydra.nixos.org/build/233248465 at 2023-09-02
+  - test-framework-testing-feat # failure in job https://hydra.nixos.org/build/233227290 at 2023-09-02
+  - test-framework-th-prime # failure in job https://hydra.nixos.org/build/233241423 at 2023-09-02
+  - test-lib # failure in job https://hydra.nixos.org/build/233195296 at 2023-09-02
+  - testloop # failure in job https://hydra.nixos.org/build/233206527 at 2023-09-02
+  - testpack # failure in job https://hydra.nixos.org/build/233194859 at 2023-09-02
+  - testpattern # failure in job https://hydra.nixos.org/build/233225860 at 2023-09-02
+  - testPkg # failure in job https://hydra.nixos.org/build/233221832 at 2023-09-02
+  - test-pkg # failure in job https://hydra.nixos.org/build/233242918 at 2023-09-02
+  - testrunner # failure in job https://hydra.nixos.org/build/233243675 at 2023-09-02
+  - test-shouldbe # failure in job https://hydra.nixos.org/build/233209475 at 2023-09-02
+  - tex2txt # failure in job https://hydra.nixos.org/build/233253484 at 2023-09-02
+  - texbuilder # failure in job https://hydra.nixos.org/build/233190830 at 2023-09-02
+  - tex-join-bib # failure in job https://hydra.nixos.org/build/233220994 at 2023-09-02
+  - TeX-my-math # failure in job https://hydra.nixos.org/build/233243992 at 2023-09-02
+  - text1 # failure in job https://hydra.nixos.org/build/233252861 at 2023-09-02
+  - text-all # failure in job https://hydra.nixos.org/build/233229321 at 2023-09-02
+  - text-and-plots # failure in job https://hydra.nixos.org/build/233205250 at 2023-09-02
+  - text-ascii # failure in job https://hydra.nixos.org/build/233247653 at 2023-09-02
+  - text-compression # failure in job https://hydra.nixos.org/build/233202733 at 2023-09-02
+  - text-containers # failure in job https://hydra.nixos.org/build/233253948 at 2023-09-02
+  - text-format-heavy # failure in job https://hydra.nixos.org/build/233213729 at 2023-09-02
+  - text-generic-pretty # failure in job https://hydra.nixos.org/build/233223672 at 2023-09-02
+  - text-icu-normalized # failure in job https://hydra.nixos.org/build/233234496 at 2023-09-02
+  - text-icu-translit # failure in job https://hydra.nixos.org/build/233255876 at 2023-09-02
+  - text-lens # failure in job https://hydra.nixos.org/build/233227419 at 2023-09-02
+  - text-markup # failure in job https://hydra.nixos.org/build/233233739 at 2023-09-02
+  - text-normal # failure in job https://hydra.nixos.org/build/233198509 at 2023-09-02
+  - textocat-api # failure in job https://hydra.nixos.org/build/233252736 at 2023-09-02
+  - text-offset # failure in job https://hydra.nixos.org/build/233250030 at 2023-09-02
+  - text-position # failure in job https://hydra.nixos.org/build/233241860 at 2023-09-02
+  - text-register-machine # failure in job https://hydra.nixos.org/build/233239758 at 2023-09-02
+  - text-stream-decode # failure in job https://hydra.nixos.org/build/233237533 at 2023-09-02
+  - text-trie # failure in job https://hydra.nixos.org/build/233231841 at 2023-09-02
+  - textual # failure in job https://hydra.nixos.org/build/233254230 at 2023-09-02
+  - text-utf7 # failure in job https://hydra.nixos.org/build/233254420 at 2023-09-02
+  - text-utf8 # failure in job https://hydra.nixos.org/build/233198812 at 2023-09-02
+  - text-xml-qq # failure in job https://hydra.nixos.org/build/233240984 at 2023-09-02
+  - text-zipper-monad # failure in job https://hydra.nixos.org/build/233207310 at 2023-09-02
+  - tfp-th # failure in job https://hydra.nixos.org/build/233238914 at 2023-09-02
+  - tftp # failure in job https://hydra.nixos.org/build/233199412 at 2023-09-02
+  - tga # failure in job https://hydra.nixos.org/build/233198921 at 2023-09-02
+  - thank-you-stars # failure in job https://hydra.nixos.org/build/233219923 at 2023-09-02
+  - th-build # failure in job https://hydra.nixos.org/build/233224794 at 2023-09-02
+  - th-dict-discovery # failure in job https://hydra.nixos.org/build/233204140 at 2023-09-02
+  - THEff # failure in job https://hydra.nixos.org/build/233221239 at 2023-09-02
+  - themoviedb # failure in job https://hydra.nixos.org/build/233233008 at 2023-09-02
+  - thentos-cookie-session # failure in job https://hydra.nixos.org/build/233234700 at 2023-09-02
+  - Theora # failure in job https://hydra.nixos.org/build/233232413 at 2023-09-02
+  - theoremquest # failure in job https://hydra.nixos.org/build/233248330 at 2023-09-02
+  - th-fold # failure in job https://hydra.nixos.org/build/233196363 at 2023-09-02
+  - th-format # failure in job https://hydra.nixos.org/build/233226394 at 2023-09-02
+  - thih # failure in job https://hydra.nixos.org/build/233245123 at 2023-09-02
+  - Thingie # failure in job https://hydra.nixos.org/build/233251760 at 2023-09-02
+  - th-inline-io-action # failure in job https://hydra.nixos.org/build/233207225 at 2023-09-02
+  - th-instance-reification # failure in job https://hydra.nixos.org/build/233227028 at 2023-09-02
+  - th-kinds # failure in job https://hydra.nixos.org/build/233237247 at 2023-09-02
+  - th-kinds-fork # failure in job https://hydra.nixos.org/build/233248565 at 2023-09-02
+  - thock # failure in job https://hydra.nixos.org/build/233256198 at 2023-09-02
+  - thorn # failure in job https://hydra.nixos.org/build/233242024 at 2023-09-02
+  - th-pprint # failure in job https://hydra.nixos.org/build/233200791 at 2023-09-02
+  - threadmanager # failure in job https://hydra.nixos.org/build/233230492 at 2023-09-02
+  - threepenny-editors # failure in job https://hydra.nixos.org/build/233248820 at 2023-09-02
+  - threepenny-gui-contextmenu # failure in job https://hydra.nixos.org/build/233242035 at 2023-09-02
+  - threepenny-gui-flexbox # failure in job https://hydra.nixos.org/build/233213545 at 2023-09-02
+  - thrift # failure in job https://hydra.nixos.org/build/233194283 at 2023-09-02
+  - Thrift # failure in job https://hydra.nixos.org/build/233221585 at 2023-09-02
+  - throttled-io-loop # failure in job https://hydra.nixos.org/build/233221912 at 2023-09-02
+  - throttle-io-stream # failure in job https://hydra.nixos.org/build/233228060 at 2023-09-02
+  - through-text # failure in job https://hydra.nixos.org/build/233217175 at 2023-09-02
+  - throwable-exceptions # failure in job https://hydra.nixos.org/build/233206169 at 2023-09-02
+  - th-sccs # failure in job https://hydra.nixos.org/build/233228878 at 2023-09-02
+  - th-tc # failure in job https://hydra.nixos.org/build/233243402 at 2023-09-02
+  - th-to-exp # failure in job https://hydra.nixos.org/build/233198437 at 2023-09-02
+  - th-traced # failure in job https://hydra.nixos.org/build/233247762 at 2023-09-02
+  - thumbnail # failure in job https://hydra.nixos.org/build/233257110 at 2023-09-02
+  - thumbnail-plus # failure in job https://hydra.nixos.org/build/233255464 at 2023-09-02
+  - tianbar # failure in job https://hydra.nixos.org/build/233195811 at 2023-09-02
+  - ticket-management # failure in job https://hydra.nixos.org/build/233247134 at 2023-09-02
+  - tictactoe3d # failure in job https://hydra.nixos.org/build/233193080 at 2023-09-02
+  - TicTacToe # failure in job https://hydra.nixos.org/build/233256784 at 2023-09-02
+  - tidal-midi # failure in job https://hydra.nixos.org/build/233194389 at 2023-09-02
+  - tidal-vis # failure in job https://hydra.nixos.org/build/234465445 at 2023-09-13
+  - tie-knot # failure in job https://hydra.nixos.org/build/233201321 at 2023-09-02
+  - tiempo # failure in job https://hydra.nixos.org/build/233250728 at 2023-09-02
+  - tiger # failure in job https://hydra.nixos.org/build/233249333 at 2023-09-02
+  - TigerHash # failure in job https://hydra.nixos.org/build/233208162 at 2023-09-02
+  - tightrope # failure in job https://hydra.nixos.org/build/233215237 at 2023-09-02
+  - tikzsd # failure in job https://hydra.nixos.org/build/233224431 at 2023-09-02
+  - timecalc # failure in job https://hydra.nixos.org/build/233207970 at 2023-09-02
+  - time-extras # failure in job https://hydra.nixos.org/build/233204030 at 2023-09-02
+  - time-machine # failure in job https://hydra.nixos.org/build/233192743 at 2023-09-02
+  - timemap # failure in job https://hydra.nixos.org/build/233250038 at 2023-09-02
+  - timeout # failure in job https://hydra.nixos.org/build/233193307 at 2023-09-02
+  - timeout-with-results # failure in job https://hydra.nixos.org/build/233212129 at 2023-09-02
+  - timeparsers # failure in job https://hydra.nixos.org/build/233250789 at 2023-09-02
+  - TimePiece # failure in job https://hydra.nixos.org/build/233213400 at 2023-09-02
+  - timeplot # failure in job https://hydra.nixos.org/build/233207049 at 2023-09-02
+  - time-qq # failure in job https://hydra.nixos.org/build/233218378 at 2023-09-02
+  - time-quote # failure in job https://hydra.nixos.org/build/233209453 at 2023-09-02
+  - time-recurrence # failure in job https://hydra.nixos.org/build/233221759 at 2023-09-02
+  - timeseries # failure in job https://hydra.nixos.org/build/233216686 at 2023-09-02
+  - time-series # failure in job https://hydra.nixos.org/build/233231491 at 2023-09-02
+  - time-series-lib # failure in job https://hydra.nixos.org/build/233247465 at 2023-09-02
+  - timeutils # failure in job https://hydra.nixos.org/build/233230513 at 2023-09-02
+  - time-w3c # failure in job https://hydra.nixos.org/build/233225902 at 2023-09-02
+  - timezone-detect # failure in job https://hydra.nixos.org/build/233205213 at 2023-09-02
+  - tinyid # failure in job https://hydra.nixos.org/build/233249999 at 2023-09-02
+  - TinyLaunchbury # failure in job https://hydra.nixos.org/build/233233671 at 2023-09-02
+  - tinylog # failure in job https://hydra.nixos.org/build/233198434 at 2023-09-02
+  - tiny-scheduler # failure in job https://hydra.nixos.org/build/233224849 at 2023-09-02
+  - tinytemplate # failure in job https://hydra.nixos.org/build/233208032 at 2023-09-02
+  - TinyURL # failure in job https://hydra.nixos.org/build/233200716 at 2023-09-02
+  - tinyXml # failure in job https://hydra.nixos.org/build/233226725 at 2023-09-02
+  - tiphys # failure in job https://hydra.nixos.org/build/233199377 at 2023-09-02
+  - titan-debug-yampa # failure in job https://hydra.nixos.org/build/233258714 at 2023-09-02
+  - titan-record-yampa # failure in job https://hydra.nixos.org/build/233204913 at 2023-09-02
+  - Titim # failure in job https://hydra.nixos.org/build/233196143 at 2023-09-02
+  - tkhs # failure in job https://hydra.nixos.org/build/233216589 at 2023-09-02
+  - tkyprof # failure in job https://hydra.nixos.org/build/233205547 at 2023-09-02
+  - tls-debug # failure in job https://hydra.nixos.org/build/233228426 at 2023-09-02
+  - TLT # failure in job https://hydra.nixos.org/build/233193495 at 2023-09-02
+  - tmp-proc-example # failure in job https://hydra.nixos.org/build/233223028 at 2023-09-02
+  - tmp-proc-zipkin # failure in job https://hydra.nixos.org/build/233210220 at 2023-09-02
+  - tofromxml # failure in job https://hydra.nixos.org/build/233257072 at 2023-09-02
+  - to-haskell # failure in job https://hydra.nixos.org/build/233195321 at 2023-09-02
+  - toilet # failure in job https://hydra.nixos.org/build/233229543 at 2023-09-02
+  - tokenify # failure in job https://hydra.nixos.org/build/233249392 at 2023-09-02
+  - tokenizer # failure in job https://hydra.nixos.org/build/233259112 at 2023-09-02
+  - tokenizer-streaming # failure in job https://hydra.nixos.org/build/233232725 at 2023-09-02
+  - token-limiter # failure in job https://hydra.nixos.org/build/233255093 at 2023-09-02
+  - token-search # failure in job https://hydra.nixos.org/build/233212111 at 2023-09-02
+  - tokyocabinet-haskell # failure in job https://hydra.nixos.org/build/233193492 at 2023-09-02
+  - tokyotyrant-haskell # failure in job https://hydra.nixos.org/build/233256228 at 2023-09-02
+  - toml # failure in job https://hydra.nixos.org/build/233223844 at 2023-09-02
+  - tonalude # failure in job https://hydra.nixos.org/build/233204874 at 2023-09-02
+  - tonaparser # failure in job https://hydra.nixos.org/build/233224261 at 2023-09-02
+  - toodles # failure in job https://hydra.nixos.org/build/233245612 at 2023-09-02
+  - Top # failure in job https://hydra.nixos.org/build/233234827 at 2023-09-02
+  - topkata # failure in job https://hydra.nixos.org/build/233231937 at 2023-09-02
+  - torch # failure in job https://hydra.nixos.org/build/233222854 at 2023-09-02
+  - TORCS # failure in job https://hydra.nixos.org/build/233192054 at 2023-09-02
+  - to-string-class # failure in job https://hydra.nixos.org/build/233244336 at 2023-09-02
+  - TotalMap # failure in job https://hydra.nixos.org/build/233194327 at 2023-09-02
+  - total-maps # failure in job https://hydra.nixos.org/build/233242562 at 2023-09-02
+  - touched # failure in job https://hydra.nixos.org/build/233199113 at 2023-09-02
+  - Tournament # failure in job https://hydra.nixos.org/build/233239014 at 2023-09-02
+  - toxiproxy-haskell # failure in job https://hydra.nixos.org/build/233222810 at 2023-09-02
+  - tptp # failure in job https://hydra.nixos.org/build/233195607 at 2023-09-02
+  - trace-call # failure in job https://hydra.nixos.org/build/233250575 at 2023-09-02
+  - traced # failure in job https://hydra.nixos.org/build/233229953 at 2023-09-02
+  - trace # failure in job https://hydra.nixos.org/build/233196655 at 2023-09-02
+  - trace-function-call # failure in job https://hydra.nixos.org/build/233243062 at 2023-09-02
+  - tracetree # failure in job https://hydra.nixos.org/build/233213937 at 2023-09-02
+  - tracked-files # failure in job https://hydra.nixos.org/build/233256779 at 2023-09-02
+  - tracker # failure in job https://hydra.nixos.org/build/233226925 at 2023-09-02
+  - trackit # failure in job https://hydra.nixos.org/build/233243891 at 2023-09-02
+  - traction # failure in job https://hydra.nixos.org/build/233193894 at 2023-09-02
+  - tracy # failure in job https://hydra.nixos.org/build/233210215 at 2023-09-02
+  - traildb # failure in job https://hydra.nixos.org/build/233223153 at 2023-09-02
+  - transactional-events # failure in job https://hydra.nixos.org/build/233205740 at 2023-09-02
+  - transf # failure in job https://hydra.nixos.org/build/233202251 at 2023-09-02
+  - TransformeR # failure in job https://hydra.nixos.org/build/233255786 at 2023-09-02
+  - transformers-bifunctors # failure in job https://hydra.nixos.org/build/233258007 at 2023-09-02
+  - transformers-compose # failure in job https://hydra.nixos.org/build/233212861 at 2023-09-02
+  - transformers-lift # failure in job https://hydra.nixos.org/build/233223136 at 2023-09-02
+  - transformers-runnable # failure in job https://hydra.nixos.org/build/233209164 at 2023-09-02
+  - TransformersStepByStep # failure in job https://hydra.nixos.org/build/233243582 at 2023-09-02
+  - trans-fx-core # failure in job https://hydra.nixos.org/build/233219543 at 2023-09-02
+  - transient # failure in job https://hydra.nixos.org/build/233221557 at 2023-09-02
+  - translatable-intset # failure in job https://hydra.nixos.org/build/233252531 at 2023-09-02
+  - translate # failure in job https://hydra.nixos.org/build/233239029 at 2023-09-02
+  - traverse-code # failure in job https://hydra.nixos.org/build/233236749 at 2023-09-02
+  - travis # failure in job https://hydra.nixos.org/build/233230706 at 2023-09-02
+  - travis-meta-yaml # failure in job https://hydra.nixos.org/build/233251064 at 2023-09-02
+  - trawl # failure in job https://hydra.nixos.org/build/233255726 at 2023-09-02
+  - traypoweroff # failure in job https://hydra.nixos.org/build/233236313 at 2023-09-02
+  - treap # failure in job https://hydra.nixos.org/build/233248089 at 2023-09-02
+  - treemap # failure in job https://hydra.nixos.org/build/233207063 at 2023-09-02
+  - treemap-html # failure in job https://hydra.nixos.org/build/233248494 at 2023-09-02
+  - tree-monad # failure in job https://hydra.nixos.org/build/233212246 at 2023-09-02
+  - tree-render-text # failure in job https://hydra.nixos.org/build/233240817 at 2023-09-02
+  - TreeStructures # failure in job https://hydra.nixos.org/build/233213685 at 2023-09-02
+  - tree-traversals # failure in job https://hydra.nixos.org/build/233206118 at 2023-09-02
+  - t-regex # failure in job https://hydra.nixos.org/build/233254486 at 2023-09-02
+  - tremulous-query # failure in job https://hydra.nixos.org/build/233200947 at 2023-09-02
+  - TrendGraph # failure in job https://hydra.nixos.org/build/233258651 at 2023-09-02
+  - trhsx # failure in job https://hydra.nixos.org/build/233231297 at 2023-09-02
+  - trim # failure in job https://hydra.nixos.org/build/233195034 at 2023-09-02
+  - tripLL # failure in job https://hydra.nixos.org/build/233217806 at 2023-09-02
+  - trivia # failure in job https://hydra.nixos.org/build/233234176 at 2023-09-02
+  - tropical # failure in job https://hydra.nixos.org/build/233212835 at 2023-09-02
+  - tropical-geometry # failure in job https://hydra.nixos.org/build/234465815 at 2023-09-13
+  - trust-chain # failure in job https://hydra.nixos.org/build/233252622 at 2023-09-02
+  - tsession # failure in job https://hydra.nixos.org/build/233259005 at 2023-09-02
+  - tslib # failure in job https://hydra.nixos.org/build/233225813 at 2023-09-02
+  - tsparse # failure in job https://hydra.nixos.org/build/233195941 at 2023-09-02
+  - tsp-viz # failure in job https://hydra.nixos.org/build/234446818 at 2023-09-13
+  - tsuntsun # failure in job https://hydra.nixos.org/build/233259481 at 2023-09-02
+  - tsvsql # failure in job https://hydra.nixos.org/build/233230566 at 2023-09-02
+  - ttask # failure in job https://hydra.nixos.org/build/233227241 at 2023-09-02
+  - ttl-hashtables # failure in job https://hydra.nixos.org/build/233251418 at 2023-09-02
+  - ttn-client # failure in job https://hydra.nixos.org/build/233226059 at 2023-09-02
+  - tttool # failure in job https://hydra.nixos.org/build/233234046 at 2023-09-02
+  - tubes # failure in job https://hydra.nixos.org/build/233245507 at 2023-09-02
+  - tuntap # failure in job https://hydra.nixos.org/build/233199575 at 2023-09-02
+  - tuple-append-instances # failure in job https://hydra.nixos.org/build/233256201 at 2023-09-02
+  - tupleinstances # failure in job https://hydra.nixos.org/build/233208004 at 2023-09-02
+  - tuple-lenses # failure in job https://hydra.nixos.org/build/233239309 at 2023-09-02
+  - turing-machines # failure in job https://hydra.nixos.org/build/233195604 at 2023-09-02
+  - turing-music # failure in job https://hydra.nixos.org/build/233203435 at 2023-09-02
+  - turtle-options # failure in job https://hydra.nixos.org/build/233255831 at 2023-09-02
+  - tweak # failure in job https://hydra.nixos.org/build/233211020 at 2023-09-02
+  - twentefp-websockets # failure in job https://hydra.nixos.org/build/233207022 at 2023-09-02
+  - twhs # failure in job https://hydra.nixos.org/build/233201182 at 2023-09-02
+  - twilio # failure in job https://hydra.nixos.org/build/233199959 at 2023-09-02
+  - twiml # failure in job https://hydra.nixos.org/build/233219327 at 2023-09-02
+  - twine # failure in job https://hydra.nixos.org/build/233191924 at 2023-09-02
+  - twisty # failure in job https://hydra.nixos.org/build/233212390 at 2023-09-02
+  - twitchapi # failure in job https://hydra.nixos.org/build/233245126 at 2023-09-02
+  - twitch # failure in job https://hydra.nixos.org/build/233198940 at 2023-09-02
+  - twitter # failure in job https://hydra.nixos.org/build/233244055 at 2023-09-02
+  - twitter-feed # failure in job https://hydra.nixos.org/build/233251565 at 2023-09-02
+  - tx # failure in job https://hydra.nixos.org/build/233223988 at 2023-09-02
+  - txtblk # failure in job https://hydra.nixos.org/build/233219915 at 2023-09-02
+  - TYB # failure in job https://hydra.nixos.org/build/233246075 at 2023-09-02
+  - tyfam-witnesses # failure in job https://hydra.nixos.org/build/233191033 at 2023-09-02
+  - typalyze # failure in job https://hydra.nixos.org/build/233246228 at 2023-09-02
+  - typeable-th # failure in job https://hydra.nixos.org/build/233234377 at 2023-09-02
+  - type-combinators # failure in job https://hydra.nixos.org/build/233230024 at 2023-09-02
+  - type-compare # failure in job https://hydra.nixos.org/build/233207530 at 2023-09-02
+  - TypeCompose # failure in job https://hydra.nixos.org/build/233212999 at 2023-09-02
+  - typed-digits # failure in job https://hydra.nixos.org/build/233198266 at 2023-09-02
+  - typed-encoding # failure in job https://hydra.nixos.org/build/233208093 at 2023-09-02
+  - typedquery # failure in job https://hydra.nixos.org/build/233215307 at 2023-09-02
+  - typed-spreadsheet # failure in job https://hydra.nixos.org/build/233248967 at 2023-09-02
+  - typed-time # failure in job https://hydra.nixos.org/build/233246930 at 2023-09-02
+  - typed-wire # failure in job https://hydra.nixos.org/build/233237626 at 2023-09-02
+  - type-eq # failure in job https://hydra.nixos.org/build/233214388 at 2023-09-02
+  - type-errors-pretty # failure in job https://hydra.nixos.org/build/233238808 at 2023-09-02
+  - typehash # failure in job https://hydra.nixos.org/build/233207184 at 2023-09-02
+  - type-indexed-queues # failure in job https://hydra.nixos.org/build/233197833 at 2023-09-02
+  - type-interpreter # failure in job https://hydra.nixos.org/build/233192182 at 2023-09-02
+  - type-int # failure in job https://hydra.nixos.org/build/233245978 at 2023-09-02
+  - type-level-bst # failure in job https://hydra.nixos.org/build/233202030 at 2023-09-02
+  - type-level-natural-number-induction # failure in job https://hydra.nixos.org/build/233259499 at 2023-09-02
+  - type-level-natural-number-operations # failure in job https://hydra.nixos.org/build/233198314 at 2023-09-02
+  - typelevel-rewrite-rules # failure in job https://hydra.nixos.org/build/233243365 at 2023-09-02
+  - type-level-sets # failure in job https://hydra.nixos.org/build/233197419 at 2023-09-02
+  - typelevel-tensor # failure in job https://hydra.nixos.org/build/233190827 at 2023-09-02
+  - type-list # failure in job https://hydra.nixos.org/build/233234789 at 2023-09-02
+  - typelits-witnesses # failure in job https://hydra.nixos.org/build/233224289 at 2023-09-02
+  - type-of-html-static # failure in job https://hydra.nixos.org/build/233226924 at 2023-09-02
+  - type-operators # failure in job https://hydra.nixos.org/build/233232802 at 2023-09-02
+  - typeparams # failure in job https://hydra.nixos.org/build/233192078 at 2023-09-02
+  - type-prelude # failure in job https://hydra.nixos.org/build/233221195 at 2023-09-02
+  - typerep-map # failure in job https://hydra.nixos.org/build/233202720 at 2023-09-02
+  - type-safe-avl # failure in job https://hydra.nixos.org/build/233203946 at 2023-09-02
+  - types-compat # failure in job https://hydra.nixos.org/build/233249850 at 2023-09-02
+  - type-settheory # failure in job https://hydra.nixos.org/build/233209513 at 2023-09-02
+  - type-spine # failure in job https://hydra.nixos.org/build/233230265 at 2023-09-02
+  - type-tree # failure in job https://hydra.nixos.org/build/233246842 at 2023-09-02
+  - type-unary # failure in job https://hydra.nixos.org/build/233251718 at 2023-09-02
+  - typograffiti # failure in job https://hydra.nixos.org/build/233195076 at 2023-09-02
+  - typson-core # failure in job https://hydra.nixos.org/build/233257835 at 2023-09-02
+  - tyro # failure in job https://hydra.nixos.org/build/233200171 at 2023-09-02
+  - uAgda # failure in job https://hydra.nixos.org/build/233252487 at 2023-09-02
+  - uberlast # failure in job https://hydra.nixos.org/build/233233074 at 2023-09-02
+  - ucam-webauth-types # failure in job https://hydra.nixos.org/build/233260145 at 2023-09-02
+  - ucl # failure in job https://hydra.nixos.org/build/233246651 at 2023-09-02
+  - uconv # failure in job https://hydra.nixos.org/build/233215580 at 2023-09-02
+  - udbus # failure in job https://hydra.nixos.org/build/233237275 at 2023-09-02
+  - udp-conduit # failure in job https://hydra.nixos.org/build/233252067 at 2023-09-02
+  - udp-streaming # failure in job https://hydra.nixos.org/build/233217795 at 2023-09-02
+  - ueberzug # failure in job https://hydra.nixos.org/build/233205559 at 2023-09-02
+  - uhexdump # failure in job https://hydra.nixos.org/build/233209647 at 2023-09-02
+  - uhttpc # failure in job https://hydra.nixos.org/build/233232481 at 2023-09-02
+  - ui-command # failure in job https://hydra.nixos.org/build/233223762 at 2023-09-02
+  - ukrainian-phonetics-basic-array-bytestring # failure in job https://hydra.nixos.org/build/233228787 at 2023-09-02
+  - unamb-custom # failure in job https://hydra.nixos.org/build/233197458 at 2023-09-02
+  - unbeliever # failure in job https://hydra.nixos.org/build/233221256 at 2023-09-02
+  - unbounded-delays-units # failure in job https://hydra.nixos.org/build/233200989 at 2023-09-02
+  - unboxed-containers # failure in job https://hydra.nixos.org/build/233200384 at 2023-09-02
+  - unboxed # failure in job https://hydra.nixos.org/build/233219555 at 2023-09-02
+  - unboxed-references # failure in job https://hydra.nixos.org/build/233192713 at 2023-09-02
+  - unbreak # failure in job https://hydra.nixos.org/build/233242560 at 2023-09-02
+  - unfix-binders # failure in job https://hydra.nixos.org/build/233259262 at 2023-09-02
+  - unicode-general-category # failure in job https://hydra.nixos.org/build/233250572 at 2023-09-02
+  - unicode-prelude # failure in job https://hydra.nixos.org/build/233241723 at 2023-09-02
+  - unicode-symbols # failure in job https://hydra.nixos.org/build/233241639 at 2023-09-02
+  - unicode-tricks # failure in job https://hydra.nixos.org/build/233258238 at 2023-09-02
+  - union-find # failure in job https://hydra.nixos.org/build/233245476 at 2023-09-02
+  - union-map # failure in job https://hydra.nixos.org/build/233222765 at 2023-09-02
+  - uniprot-kb # failure in job https://hydra.nixos.org/build/233209692 at 2023-09-02
+  - uniqueid # failure in job https://hydra.nixos.org/build/233251447 at 2023-09-02
+  - uniquely-represented-sets # failure in job https://hydra.nixos.org/build/233242429 at 2023-09-02
+  - uniqueness-periods-general # failure in job https://hydra.nixos.org/build/233208045 at 2023-09-02
+  - uniqueness-periods-vector-common # failure in job https://hydra.nixos.org/build/233210018 at 2023-09-02
+  - uniqueness-periods-vector # failure in job https://hydra.nixos.org/build/233243213 at 2023-09-02
+  - units-attoparsec # failure in job https://hydra.nixos.org/build/233196308 at 2023-09-02
+  - unittyped # failure in job https://hydra.nixos.org/build/233215159 at 2023-09-02
+  - unitym # failure in job https://hydra.nixos.org/build/233246346 at 2023-09-02
+  - uni-util # failure in job https://hydra.nixos.org/build/233219676 at 2023-09-02
+  - universal-binary # failure in job https://hydra.nixos.org/build/233240583 at 2023-09-02
+  - universe-instances-base # failure in job https://hydra.nixos.org/build/233197845 at 2023-09-02
+  - universe-instances-trans # failure in job https://hydra.nixos.org/build/233235623 at 2023-09-02
+  - universe-some # failure in job https://hydra.nixos.org/build/233254356 at 2023-09-02
+  - unix-handle # failure in job https://hydra.nixos.org/build/233233273 at 2023-09-02
+  - unix-process-conduit # failure in job https://hydra.nixos.org/build/233191509 at 2023-09-02
+  - unix-recursive # failure in job https://hydra.nixos.org/build/233194742 at 2023-09-02
+  - unlifted-list # failure in job https://hydra.nixos.org/build/233205239 at 2023-09-02
+  - unlift # failure in job https://hydra.nixos.org/build/233217875 at 2023-09-02
+  - unliftio-messagebox # failure in job https://hydra.nixos.org/build/233200633 at 2023-09-02
+  - unlift-stm # failure in job https://hydra.nixos.org/build/233202388 at 2023-09-02
+  - unm-hip # failure in job https://hydra.nixos.org/build/233232865 at 2023-09-02
+  - unordered-containers-rematch # failure in job https://hydra.nixos.org/build/233220800 at 2023-09-02
+  - unordered-graphs # failure in job https://hydra.nixos.org/build/233190879 at 2023-09-02
+  - unordered-intmap # failure in job https://hydra.nixos.org/build/233194954 at 2023-09-02
+  - unpacked-either # failure in job https://hydra.nixos.org/build/233207731 at 2023-09-02
+  - unpacked-maybe # failure in job https://hydra.nixos.org/build/233197926 at 2023-09-02
+  - unpacked-maybe-numeric # failure in job https://hydra.nixos.org/build/233250596 at 2023-09-02
+  - unpack-funcs # failure in job https://hydra.nixos.org/build/233196365 at 2023-09-02
+  - unroll-ghc-plugin # failure in job https://hydra.nixos.org/build/233212728 at 2023-09-02
+  - unsafely # failure in job https://hydra.nixos.org/build/233238669 at 2023-09-02
+  - unsatisfiable # failure in job https://hydra.nixos.org/build/233228680 at 2023-09-02
+  - unsequential # failure in job https://hydra.nixos.org/build/233244400 at 2023-09-02
+  - unused # failure in job https://hydra.nixos.org/build/233243602 at 2023-09-02
+  - uom-plugin # failure in job https://hydra.nixos.org/build/233228019 at 2023-09-02
+  - Updater # failure in job https://hydra.nixos.org/build/233215373 at 2023-09-02
+  - uploadcare # failure in job https://hydra.nixos.org/build/233197403 at 2023-09-02
+  - upskirt # failure in job https://hydra.nixos.org/build/233226983 at 2023-09-02
+  - urbit-hob # failure in job https://hydra.nixos.org/build/233209231 at 2023-09-02
+  - uri-conduit # failure in job https://hydra.nixos.org/build/233252949 at 2023-09-02
+  - uri-encoder # failure in job https://hydra.nixos.org/build/233228287 at 2023-09-02
+  - uri # failure in job https://hydra.nixos.org/build/233229150 at 2023-09-02
+  - uri-parse # failure in job https://hydra.nixos.org/build/233258573 at 2023-09-02
+  - uri-template # failure in job https://hydra.nixos.org/build/233243696 at 2023-09-02
+  - uri-templater # failure in job https://hydra.nixos.org/build/233231885 at 2023-09-02
+  - URLb # failure in job https://hydra.nixos.org/build/233226766 at 2023-09-02
+  - url-bytes # failure in job https://hydra.nixos.org/build/233226116 at 2023-09-02
+  - urlcheck # failure in job https://hydra.nixos.org/build/233211869 at 2023-09-02
+  - urldecode # failure in job https://hydra.nixos.org/build/233258501 at 2023-09-02
+  - url-decoders # failure in job https://hydra.nixos.org/build/233245312 at 2023-09-02
+  - urldisp-happstack # failure in job https://hydra.nixos.org/build/233194536 at 2023-09-02
+  - urlencoded # failure in job https://hydra.nixos.org/build/233205629 at 2023-09-02
+  - url-generic # failure in job https://hydra.nixos.org/build/233221641 at 2023-09-02
+  - urn # failure in job https://hydra.nixos.org/build/233228949 at 2023-09-02
+  - urn-random # failure in job https://hydra.nixos.org/build/233243986 at 2023-09-02
+  - urxml # failure in job https://hydra.nixos.org/build/233195104 at 2023-09-02
+  - useragents # failure in job https://hydra.nixos.org/build/233203723 at 2023-09-02
+  - userid # failure in job https://hydra.nixos.org/build/233227019 at 2023-09-02
+  - users-persistent # failure in job https://hydra.nixos.org/build/233258182 at 2023-09-02
+  - utc # failure in job https://hydra.nixos.org/build/233218307 at 2023-09-02
+  - utf8-conversions # failure in job https://hydra.nixos.org/build/233245725 at 2023-09-02
+  - utf8-prelude # failure in job https://hydra.nixos.org/build/233240100 at 2023-09-02
+  - utf8-validator # failure in job https://hydra.nixos.org/build/233211712 at 2023-09-02
+  - util # failure in job https://hydra.nixos.org/build/233234741 at 2023-09-02
+  - util-logict # failure in job https://hydra.nixos.org/build/233215338 at 2023-09-02
+  - util-plus # failure in job https://hydra.nixos.org/build/233231591 at 2023-09-02
+  - util-primitive # failure in job https://hydra.nixos.org/build/233258861 at 2023-09-02
+  - uuagc-bootstrap # failure in job https://hydra.nixos.org/build/233254123 at 2023-09-02
+  - uuagc-diagrams # failure in job https://hydra.nixos.org/build/233247645 at 2023-09-02
+  - uu-cco # failure in job https://hydra.nixos.org/build/233259027 at 2023-09-02
+  - uuid-aeson # failure in job https://hydra.nixos.org/build/233219695 at 2023-09-02
+  - uusi # failure in job https://hydra.nixos.org/build/233201662 at 2023-09-02
+  - uvector # failure in job https://hydra.nixos.org/build/233224782 at 2023-09-02
+  - uxadt # failure in job https://hydra.nixos.org/build/233254972 at 2023-09-02
+  - vabal-lib # failure in job https://hydra.nixos.org/build/233198776 at 2023-09-02
+  - vacuum # failure in job https://hydra.nixos.org/build/233238529 at 2023-09-02
+  - vado # failure in job https://hydra.nixos.org/build/233202865 at 2023-09-02
+  - validated-types # failure in job https://hydra.nixos.org/build/233258079 at 2023-09-02
+  - Validation # failure in job https://hydra.nixos.org/build/233253977 at 2023-09-02
+  - validations # failure in job https://hydra.nixos.org/build/233208976 at 2023-09-02
+  - validators # failure in job https://hydra.nixos.org/build/233235532 at 2023-09-02
+  - validity-network-uri # failure in job https://hydra.nixos.org/build/233240551 at 2023-09-02
+  - valid-names # failure in job https://hydra.nixos.org/build/233213115 at 2023-09-02
+  - value-supply # failure in job https://hydra.nixos.org/build/233190936 at 2023-09-02
+  - vampire # failure in job https://hydra.nixos.org/build/233216179 at 2023-09-02
+  - varan # failure in job https://hydra.nixos.org/build/233232057 at 2023-09-02
+  - var # failure in job https://hydra.nixos.org/build/233240303 at 2023-09-02
+  - variable-media-field # failure in job https://hydra.nixos.org/build/233231573 at 2023-09-02
+  - variables # failure in job https://hydra.nixos.org/build/233237682 at 2023-09-02
+  - variadic # failure in job https://hydra.nixos.org/build/233209743 at 2023-09-02
+  - variation # failure in job https://hydra.nixos.org/build/233240549 at 2023-09-02
+  - vault-tool # failure in job https://hydra.nixos.org/build/233217613 at 2023-09-02
+  - vcache # failure in job https://hydra.nixos.org/build/233250925 at 2023-09-02
+  - vcatt # failure in job https://hydra.nixos.org/build/233236976 at 2023-09-02
+  - vcf # failure in job https://hydra.nixos.org/build/233246613 at 2023-09-02
+  - vcswrapper # failure in job https://hydra.nixos.org/build/233228400 at 2023-09-02
+  - Vec-Boolean # failure in job https://hydra.nixos.org/build/233218305 at 2023-09-02
+  - Vec-OpenGLRaw # failure in job https://hydra.nixos.org/build/233230560 at 2023-09-02
+  - vect-floating # failure in job https://hydra.nixos.org/build/233196146 at 2023-09-02
+  - vect-opengl # failure in job https://hydra.nixos.org/build/233230142 at 2023-09-02
+  - vector-bytestring # failure in job https://hydra.nixos.org/build/233209167 at 2023-09-02
+  - vector-circular # failure in job https://hydra.nixos.org/build/233230058 at 2023-09-02
+  - vector-clock # failure in job https://hydra.nixos.org/build/233203491 at 2023-09-02
+  - vector-conduit # failure in job https://hydra.nixos.org/build/233237284 at 2023-09-02
+  - vector-doublezip # failure in job https://hydra.nixos.org/build/233252979 at 2023-09-02
+  - vector-endian # failure in job https://hydra.nixos.org/build/233237355 at 2023-09-02
+  - vector-fftw # failure in job https://hydra.nixos.org/build/233221978 at 2023-09-02
+  - vector-functorlazy # failure in job https://hydra.nixos.org/build/233201658 at 2023-09-02
+  - vector-heterogenous # failure in job https://hydra.nixos.org/build/233221627 at 2023-09-02
+  - vector-random # failure in job https://hydra.nixos.org/build/233254910 at 2023-09-02
+  - vector-read-instances # failure in job https://hydra.nixos.org/build/233220057 at 2023-09-02
+  - vector-shuffling # failure in job https://hydra.nixos.org/build/233245999 at 2023-09-02
+  - vector-space-map # failure in job https://hydra.nixos.org/build/233235784 at 2023-09-02
+  - vector-space-opengl # failure in job https://hydra.nixos.org/build/233206443 at 2023-09-02
+  - vector-space-points # failure in job https://hydra.nixos.org/build/233230506 at 2023-09-02
+  - vector-static # failure in job https://hydra.nixos.org/build/233236346 at 2023-09-02
+  - vega-view # failure in job https://hydra.nixos.org/build/233224980 at 2023-09-02
+  - velma # failure in job https://hydra.nixos.org/build/233252875 at 2023-09-02
+  - Verba # failure in job https://hydra.nixos.org/build/233237824 at 2023-09-02
+  - verbalexpressions # failure in job https://hydra.nixos.org/build/233247870 at 2023-09-02
+  - verdict # failure in job https://hydra.nixos.org/build/233238835 at 2023-09-02
+  - verify # failure in job https://hydra.nixos.org/build/233239874 at 2023-09-02
+  - verilog # failure in job https://hydra.nixos.org/build/233211999 at 2023-09-02
+  - versioning # failure in job https://hydra.nixos.org/build/233205892 at 2023-09-02
+  - vformat # failure in job https://hydra.nixos.org/build/233222840 at 2023-09-02
+  - vgrep # failure in job https://hydra.nixos.org/build/233210982 at 2023-09-02
+  - vhd # failure in job https://hydra.nixos.org/build/233230229 at 2023-09-02
+  - vhdl # failure in job https://hydra.nixos.org/build/233244814 at 2023-09-02
+  - vicinity # failure in job https://hydra.nixos.org/build/233240251 at 2023-09-02
+  - viewprof # failure in job https://hydra.nixos.org/build/233257842 at 2023-09-02
+  - views # failure in job https://hydra.nixos.org/build/233203371 at 2023-09-02
+  - Villefort # failure in job https://hydra.nixos.org/build/233224994 at 2023-09-02
+  - vimus # failure in job https://hydra.nixos.org/build/233227980 at 2023-09-02
+  - vintage-basic # failure in job https://hydra.nixos.org/build/233241073 at 2023-09-02
+  - vinyl-json # failure in job https://hydra.nixos.org/build/233207036 at 2023-09-02
+  - vinyl-named-sugar # failure in job https://hydra.nixos.org/build/233205326 at 2023-09-02
+  - vinyl-plus # failure in job https://hydra.nixos.org/build/233237873 at 2023-09-02
+  - vinyl-utils # failure in job https://hydra.nixos.org/build/233209198 at 2023-09-02
+  - vinyl-vectors # failure in job https://hydra.nixos.org/build/233209137 at 2023-09-02
+  - virthualenv # failure in job https://hydra.nixos.org/build/233216281 at 2023-09-02
+  - visibility # failure in job https://hydra.nixos.org/build/233206672 at 2023-09-02
+  - visual-prof # failure in job https://hydra.nixos.org/build/233250080 at 2023-09-02
+  - vitrea # failure in job https://hydra.nixos.org/build/233252038 at 2023-09-02
+  - vk-aws-route53 # failure in job https://hydra.nixos.org/build/233250126 at 2023-09-02
+  - VKHS # failure in job https://hydra.nixos.org/build/233246557 at 2023-09-02
+  - vowpal-utils # failure in job https://hydra.nixos.org/build/233251505 at 2023-09-02
+  - voyeur # failure in job https://hydra.nixos.org/build/233234792 at 2023-09-02
+  - VRML # failure in job https://hydra.nixos.org/build/233256643 at 2023-09-02
+  - vte # failure in job https://hydra.nixos.org/build/233234429 at 2023-09-02
+  - vtegtk3 # failure in job https://hydra.nixos.org/build/233226713 at 2023-09-02
+  - vt-utils # failure in job https://hydra.nixos.org/build/233244619 at 2023-09-02
+  - vty-examples # failure in job https://hydra.nixos.org/build/233235872 at 2023-09-02
+  - vty-menu # failure in job https://hydra.nixos.org/build/233232391 at 2023-09-02
+  - vty-ui # failure in job https://hydra.nixos.org/build/233200900 at 2023-09-02
+  - wacom-daemon # failure in job https://hydra.nixos.org/build/233213077 at 2023-09-02
+  - waddle # failure in job https://hydra.nixos.org/build/233239973 at 2023-09-02
+  - wai-git-http # failure in job https://hydra.nixos.org/build/233191513 at 2023-09-02
+  - wai-graceful # failure in job https://hydra.nixos.org/build/233243180 at 2023-09-02
+  - wai-handler-devel # failure in job https://hydra.nixos.org/build/233226033 at 2023-09-02
+  - wai-handler-fastcgi # failure in job https://hydra.nixos.org/build/233221946 at 2023-09-02
+  - wai-handler-scgi # failure in job https://hydra.nixos.org/build/233246939 at 2023-09-02
+  - wai-handler-webkit # failure in job https://hydra.nixos.org/build/233236556 at 2023-09-02
+  - wai-hmac-auth # failure in job https://hydra.nixos.org/build/233210044 at 2023-09-02
+  - wai-lens # failure in job https://hydra.nixos.org/build/233225852 at 2023-09-02
+  - wai-lite # failure in job https://hydra.nixos.org/build/233234657 at 2023-09-02
+  - wai-logger-buffered # failure in job https://hydra.nixos.org/build/233196102 at 2023-09-02
+  - wai-logger-prefork # failure in job https://hydra.nixos.org/build/233202495 at 2023-09-02
+  - wai-middleware-auth # failure in job https://hydra.nixos.org/build/233199447 at 2023-09-02
+  - wai-middleware-catch # failure in job https://hydra.nixos.org/build/233222782 at 2023-09-02
+  - wai-middleware-crowd # failure in job https://hydra.nixos.org/build/233237853 at 2023-09-02
+  - wai-middleware-delegate # failure in job https://hydra.nixos.org/build/233197338 at 2023-09-02
+  - wai-middleware-etag # failure in job https://hydra.nixos.org/build/233212107 at 2023-09-02
+  - wai-middleware-headers # failure in job https://hydra.nixos.org/build/233229927 at 2023-09-02
+  - wai-middleware-hmac-client # failure in job https://hydra.nixos.org/build/233249856 at 2023-09-02
+  - wai-middleware-preprocessor # failure in job https://hydra.nixos.org/build/233227365 at 2023-09-02
+  - wai-middleware-static-caching # failure in job https://hydra.nixos.org/build/233208386 at 2023-09-02
+  - wai-middleware-travisci # failure in job https://hydra.nixos.org/build/233215805 at 2023-09-02
+  - wai-problem-details # failure in job https://hydra.nixos.org/build/233227727 at 2023-09-02
+  - wai-rate-limit-postgres # failure in job https://hydra.nixos.org/build/233244097 at 2023-09-02
+  - wai-rate-limit-redis # failure in job https://hydra.nixos.org/build/233207860 at 2023-09-02
+  - wai-request-spec # failure in job https://hydra.nixos.org/build/233252640 at 2023-09-02
+  - wai-responsible # failure in job https://hydra.nixos.org/build/233248119 at 2023-09-02
+  - wai-router # failure in job https://hydra.nixos.org/build/233253691 at 2023-09-02
+  - wai-routes # failure in job https://hydra.nixos.org/build/233243854 at 2023-09-02
+  - wai-saml2 # failure in job https://hydra.nixos.org/build/233197938 at 2023-09-02
+  - wai-secure-cookies # failure in job https://hydra.nixos.org/build/233216416 at 2023-09-02
+  - wai-session-mysql # failure in job https://hydra.nixos.org/build/233206451 at 2023-09-02
+  - wai-session-postgresql # failure in job https://hydra.nixos.org/build/233229871 at 2023-09-02
+  - wai-session-redis # failure in job https://hydra.nixos.org/build/233218737 at 2023-09-02
+  - wai-static-cache # failure in job https://hydra.nixos.org/build/233228597 at 2023-09-02
+  - waitfree # failure in job https://hydra.nixos.org/build/233222583 at 2023-09-02
+  - wai-throttler # failure in job https://hydra.nixos.org/build/233231002 at 2023-09-02
+  - waitra # failure in job https://hydra.nixos.org/build/233222291 at 2023-09-02
+  - wakame # failure in job https://hydra.nixos.org/build/233254673 at 2023-09-02
+  - wallpaper # failure in job https://hydra.nixos.org/build/233219027 at 2023-09-02
+  - warc # failure in job https://hydra.nixos.org/build/233215734 at 2023-09-02
+  - warp-dynamic # failure in job https://hydra.nixos.org/build/233220479 at 2023-09-02
+  - warp-static # failure in job https://hydra.nixos.org/build/233239581 at 2023-09-02
+  - warp-systemd # failure in job https://hydra.nixos.org/build/233215956 at 2023-09-02
+  - wasm # failure in job https://hydra.nixos.org/build/233249877 at 2023-09-02
+  - watcher # failure in job https://hydra.nixos.org/build/233245056 at 2023-09-02
+  - watchit # failure in job https://hydra.nixos.org/build/233199573 at 2023-09-02
+  - wavefront # failure in job https://hydra.nixos.org/build/233248071 at 2023-09-02
+  - wavefront-obj # failure in job https://hydra.nixos.org/build/233200951 at 2023-09-02
+  - weak-bag # failure in job https://hydra.nixos.org/build/233198097 at 2023-09-02
+  - WeakSets # failure in job https://hydra.nixos.org/build/233199611 at 2023-09-02
+  - weather-api # failure in job https://hydra.nixos.org/build/233202108 at 2023-09-02
+  - Weather # failure in job https://hydra.nixos.org/build/233197934 at 2023-09-02
+  - web3-ipfs # failure in job https://hydra.nixos.org/build/233235342 at 2023-09-02
+  - webapi # failure in job https://hydra.nixos.org/build/233243522 at 2023-09-02
+  - webapp # failure in job https://hydra.nixos.org/build/233201743 at 2023-09-02
+  - webauthn # failure in job https://hydra.nixos.org/build/233255527 at 2023-09-02
+  - WebBits # failure in job https://hydra.nixos.org/build/233244872 at 2023-09-02
+  - webby # failure in job https://hydra.nixos.org/build/233221764 at 2023-09-02
+  - webcloud # failure in job https://hydra.nixos.org/build/233239317 at 2023-09-02
+  - webcrank-dispatch # failure in job https://hydra.nixos.org/build/233209191 at 2023-09-02
+  - webcrank # failure in job https://hydra.nixos.org/build/233212229 at 2023-09-02
+  - web-css # failure in job https://hydra.nixos.org/build/233195455 at 2023-09-02
+  - webdriver-angular # failure in job https://hydra.nixos.org/build/233212981 at 2023-09-02
+  - webdriver-snoy # failure in job https://hydra.nixos.org/build/233251068 at 2023-09-02
+  - web-encodings # failure in job https://hydra.nixos.org/build/233199718 at 2023-09-02
+  - WeberLogic # failure in job https://hydra.nixos.org/build/233209283 at 2023-09-02
+  - webfinger-client # failure in job https://hydra.nixos.org/build/233252528 at 2023-09-02
+  - webkitgtk3 # failure in job https://hydra.nixos.org/build/233215712 at 2023-09-02
+  - webkit-javascriptcore # failure in job https://hydra.nixos.org/build/233208424 at 2023-09-02
+  - webmention # failure in job https://hydra.nixos.org/build/233208899 at 2023-09-02
+  - web-output # failure in job https://hydra.nixos.org/build/233191936 at 2023-09-02
+  - web-page # failure in job https://hydra.nixos.org/build/233243334 at 2023-09-02
+  - web-plugins # failure in job https://hydra.nixos.org/build/233207596 at 2023-09-02
+  - web-push # failure in job https://hydra.nixos.org/build/233206721 at 2023-09-02
+  - Webrexp # failure in job https://hydra.nixos.org/build/233212376 at 2023-09-02
+  - web-routes-quasi # failure in job https://hydra.nixos.org/build/233222454 at 2023-09-02
+  - web-routes-transformers # failure in job https://hydra.nixos.org/build/233256428 at 2023-09-02
+  - webshow # failure in job https://hydra.nixos.org/build/233243842 at 2023-09-02
+  - webwire # failure in job https://hydra.nixos.org/build/233233892 at 2023-09-02
+  - WEditor # failure in job https://hydra.nixos.org/build/233215233 at 2023-09-02
+  - weighted-regexp # failure in job https://hydra.nixos.org/build/233243077 at 2023-09-02
+  - welshy # failure in job https://hydra.nixos.org/build/233224249 at 2023-09-02
+  - werewolf # failure in job https://hydra.nixos.org/build/233250937 at 2023-09-02
+  - wgpu-raw-hs # failure in job https://hydra.nixos.org/build/233221814 at 2023-09-02
+  - Wheb # failure in job https://hydra.nixos.org/build/233258281 at 2023-09-02
+  - while-lang-parser # failure in job https://hydra.nixos.org/build/233237507 at 2023-09-02
+  - whim # failure in job https://hydra.nixos.org/build/234465317 at 2023-09-13
+  - whiskers # failure in job https://hydra.nixos.org/build/233258941 at 2023-09-02
+  - whois # failure in job https://hydra.nixos.org/build/233250022 at 2023-09-02
+  - why3 # failure in job https://hydra.nixos.org/build/233235892 at 2023-09-02
+  - wide-word-instances # failure in job https://hydra.nixos.org/build/233253084 at 2023-09-02
+  - wikicfp-scraper # failure in job https://hydra.nixos.org/build/233198432 at 2023-09-02
+  - WikimediaParser # failure in job https://hydra.nixos.org/build/233242393 at 2023-09-02
+  - wild-bind # failure in job https://hydra.nixos.org/build/233200102 at 2023-09-02
+  - willow # failure in job https://hydra.nixos.org/build/233215807 at 2023-09-02
+  - windns # failure in job https://hydra.nixos.org/build/233242724 at 2023-09-02
+  - window-utils # failure in job https://hydra.nixos.org/build/233238667 at 2023-09-02
+  - winerror # failure in job https://hydra.nixos.org/build/233196100 at 2023-09-02
+  - wireguard-hs # failure in job https://hydra.nixos.org/build/233218722 at 2023-09-02
+  - wires # failure in job https://hydra.nixos.org/build/233192321 at 2023-09-02
+  - wiring # failure in job https://hydra.nixos.org/build/233191683 at 2023-09-02
+  - witty # failure in job https://hydra.nixos.org/build/233194976 at 2023-09-02
+  - wkt # failure in job https://hydra.nixos.org/build/233220848 at 2023-09-02
+  - wkt-geom # failure in job https://hydra.nixos.org/build/233199774 at 2023-09-02
+  - WL500gPLib # failure in job https://hydra.nixos.org/build/233203811 at 2023-09-02
+  - wl-pprint-console # failure in job https://hydra.nixos.org/build/233204682 at 2023-09-02
+  - wl-pprint-extras # failure in job https://hydra.nixos.org/build/233233369 at 2023-09-02
+  - WMSigner # failure in job https://hydra.nixos.org/build/233199780 at 2023-09-02
+  - woe # failure in job https://hydra.nixos.org/build/233222792 at 2023-09-02
+  - woffex # failure in job https://hydra.nixos.org/build/233210566 at 2023-09-02
+  - wol # failure in job https://hydra.nixos.org/build/233237896 at 2023-09-02
+  - word24 # failure in job https://hydra.nixos.org/build/233259494 at 2023-09-02
+  - word2vec-model # failure in job https://hydra.nixos.org/build/233209500 at 2023-09-02
+  - word8set # failure in job https://hydra.nixos.org/build/233246039 at 2023-09-02
+  - wordify # failure in job https://hydra.nixos.org/build/233229102 at 2023-09-02
+  - Wordlint # failure in job https://hydra.nixos.org/build/233233123 at 2023-09-02
+  - wordlist # failure in job https://hydra.nixos.org/build/233199456 at 2023-09-02
+  - WordNet # failure in job https://hydra.nixos.org/build/233201604 at 2023-09-02
+  - WordNet-ghc74 # failure in job https://hydra.nixos.org/build/233192586 at 2023-09-02
+  - wordn # failure in job https://hydra.nixos.org/build/233238840 at 2023-09-02
+  - wordpass # failure in job https://hydra.nixos.org/build/233202954 at 2023-09-02
+  - wordsearch # failure in job https://hydra.nixos.org/build/233203803 at 2023-09-02
+  - workdays # failure in job https://hydra.nixos.org/build/233209994 at 2023-09-02
+  - Workflow # failure in job https://hydra.nixos.org/build/233203463 at 2023-09-02
+  - workflow-osx # failure in job https://hydra.nixos.org/build/233235315 at 2023-09-02
+  - workflow-windows # failure in job https://hydra.nixos.org/build/233257774 at 2023-09-02
+  - work-time # failure in job https://hydra.nixos.org/build/233245304 at 2023-09-02
+  - worldturtle # failure in job https://hydra.nixos.org/build/234448293 at 2023-09-13
+  - wp-archivebot # failure in job https://hydra.nixos.org/build/233195749 at 2023-09-02
+  - wreq-helper # failure in job https://hydra.nixos.org/build/233228914 at 2023-09-02
+  - wreq-patchable # failure in job https://hydra.nixos.org/build/233237832 at 2023-09-02
+  - wreq-sb # failure in job https://hydra.nixos.org/build/233259269 at 2023-09-02
+  - writer-cps-lens # failure in job https://hydra.nixos.org/build/233238466 at 2023-09-02
+  - writer-cps-monads-tf # failure in job https://hydra.nixos.org/build/233218245 at 2023-09-02
+  - writer-cps-morph # failure in job https://hydra.nixos.org/build/233241891 at 2023-09-02
+  - wsdl # failure in job https://hydra.nixos.org/build/233208187 at 2023-09-02
+  - wsedit # failure in job https://hydra.nixos.org/build/233232333 at 2023-09-02
+  - wtk # failure in job https://hydra.nixos.org/build/233220668 at 2023-09-02
+  - wumpus-core # failure in job https://hydra.nixos.org/build/233244405 at 2023-09-02
+  - wxdirect # failure in job https://hydra.nixos.org/build/233255519 at 2023-09-02
+  - X11-extras # failure in job https://hydra.nixos.org/build/233226031 at 2023-09-02
+  - X11-rm # failure in job https://hydra.nixos.org/build/233242806 at 2023-09-02
+  - X11-xdamage # failure in job https://hydra.nixos.org/build/233194342 at 2023-09-02
+  - X11-xfixes # failure in job https://hydra.nixos.org/build/233256494 at 2023-09-02
+  - xchat-plugin # failure in job https://hydra.nixos.org/build/233238679 at 2023-09-02
+  - xcp # failure in job https://hydra.nixos.org/build/233208926 at 2023-09-02
+  - x-dsp # failure in job https://hydra.nixos.org/build/233218091 at 2023-09-02
+  - Xec # failure in job https://hydra.nixos.org/build/233191564 at 2023-09-02
+  - xenstore # failure in job https://hydra.nixos.org/build/233234469 at 2023-09-02
+  - X # failure in job https://hydra.nixos.org/build/233217783 at 2023-09-02
+  - xfconf # failure in job https://hydra.nixos.org/build/233234800 at 2023-09-02
+  - xformat # failure in job https://hydra.nixos.org/build/233211918 at 2023-09-02
+  - xhaskell-library # failure in job https://hydra.nixos.org/build/233221178 at 2023-09-02
+  - xhb # failure in job https://hydra.nixos.org/build/233204853 at 2023-09-02
+  - xilinx-lava # failure in job https://hydra.nixos.org/build/233247659 at 2023-09-02
+  - xine # failure in job https://hydra.nixos.org/build/233255620 at 2023-09-02
+  - xing-api # failure in job https://hydra.nixos.org/build/233220080 at 2023-09-02
+  - xkbcommon # failure in job https://hydra.nixos.org/build/233237797 at 2023-09-02
+  - xkcd # failure in job https://hydra.nixos.org/build/233211690 at 2023-09-02
+  - xleb # failure in job https://hydra.nixos.org/build/233232785 at 2023-09-02
+  - xls # failure in job https://hydra.nixos.org/build/233201430 at 2023-09-02
+  - xlsior # failure in job https://hydra.nixos.org/build/233199562 at 2023-09-02
+  - xlsx-tabular # failure in job https://hydra.nixos.org/build/233199137 at 2023-09-02
+  - xlsx-templater # failure in job https://hydra.nixos.org/build/233245940 at 2023-09-02
+  - xml2json # failure in job https://hydra.nixos.org/build/233254605 at 2023-09-02
+  - xml-conduit-decode # failure in job https://hydra.nixos.org/build/233191276 at 2023-09-02
+  - xml-conduit-parse # failure in job https://hydra.nixos.org/build/233200360 at 2023-09-02
+  - xml-conduit-selectors # failure in job https://hydra.nixos.org/build/233223331 at 2023-09-02
+  - xml-conduit-stylist # failure in job https://hydra.nixos.org/build/233226507 at 2023-09-02
+  - xml-html-conduit-lens # failure in job https://hydra.nixos.org/build/233238471 at 2023-09-02
+  - XmlHtmlWriter # failure in job https://hydra.nixos.org/build/233213597 at 2023-09-02
+  - xml-parsec # failure in job https://hydra.nixos.org/build/233208461 at 2023-09-02
+  - xml-prettify # failure in job https://hydra.nixos.org/build/233225974 at 2023-09-02
+  - xml-prettify-text # failure in job https://hydra.nixos.org/build/233202586 at 2023-09-02
+  - xml-query # failure in job https://hydra.nixos.org/build/233194795 at 2023-09-02
+  - xml-syntax # failure in job https://hydra.nixos.org/build/233245678 at 2023-09-02
+  - xml-to-json # failure in job https://hydra.nixos.org/build/233197489 at 2023-09-02
+  - xml-tydom-core # failure in job https://hydra.nixos.org/build/233206253 at 2023-09-02
+  - xml-verify # failure in job https://hydra.nixos.org/build/233237302 at 2023-09-02
+  - XMMS # failure in job https://hydra.nixos.org/build/233196853 at 2023-09-02
+  - xmonad-bluetilebranch # failure in job https://hydra.nixos.org/build/233221580 at 2023-09-02
+  - xmonad-contrib-gpl # failure in job https://hydra.nixos.org/build/233251722 at 2023-09-02
+  - xmonad-entryhelper # failure in job https://hydra.nixos.org/build/233249530 at 2023-09-02
+  - xmonad-eval # failure in job https://hydra.nixos.org/build/233248519 at 2023-09-02
+  - xmonad-screenshot # failure in job https://hydra.nixos.org/build/233233742 at 2023-09-02
+  - xmonad-vanessa # failure in job https://hydra.nixos.org/build/233214303 at 2023-09-02
+  - xmonad-wallpaper # failure in job https://hydra.nixos.org/build/233217165 at 2023-09-02
+  - xmonad-windownames # failure in job https://hydra.nixos.org/build/233258043 at 2023-09-02
+  - Xorshift128Plus # failure in job https://hydra.nixos.org/build/233225679 at 2023-09-02
+  - xorshift-plus # failure in job https://hydra.nixos.org/build/233255176 at 2023-09-02
+  - xsact # failure in job https://hydra.nixos.org/build/233221821 at 2023-09-02
+  - xsd # failure in job https://hydra.nixos.org/build/233209021 at 2023-09-02
+  - xsha1 # failure in job https://hydra.nixos.org/build/233257136 at 2023-09-02
+  - xslt # failure in job https://hydra.nixos.org/build/233225636 at 2023-09-02
+  - xxhash # failure in job https://hydra.nixos.org/build/233240335 at 2023-09-02
+  - y0l0bot # failure in job https://hydra.nixos.org/build/233212722 at 2023-09-02
+  - yabi-muno # failure in job https://hydra.nixos.org/build/233246871 at 2023-09-02
+  - yackage # failure in job https://hydra.nixos.org/build/233213393 at 2023-09-02
+  - YACPong # failure in job https://hydra.nixos.org/build/233203317 at 2023-09-02
+  - yahoo-finance-api # failure in job https://hydra.nixos.org/build/233248439 at 2023-09-02
+  - yahoo-finance-conduit # failure in job https://hydra.nixos.org/build/233235625 at 2023-09-02
+  - yahoo-prices # failure in job https://hydra.nixos.org/build/233211650 at 2023-09-02
+  - yahoo-web-search # failure in job https://hydra.nixos.org/build/233201427 at 2023-09-02
+  - yajl # failure in job https://hydra.nixos.org/build/233242185 at 2023-09-02
+  - yak # failure in job https://hydra.nixos.org/build/233207129 at 2023-09-02
+  - yall # failure in job https://hydra.nixos.org/build/233254805 at 2023-09-02
+  - yam-app # failure in job https://hydra.nixos.org/build/233250535 at 2023-09-02
+  - yam-config # failure in job https://hydra.nixos.org/build/233194454 at 2023-09-02
+  - yaml-combinators # failure in job https://hydra.nixos.org/build/233225265 at 2023-09-02
+  - yaml-config # failure in job https://hydra.nixos.org/build/233242910 at 2023-09-02
+  - yamlkeysdiff # failure in job https://hydra.nixos.org/build/233234710 at 2023-09-02
+  - yaml-light-lens # failure in job https://hydra.nixos.org/build/233251688 at 2023-09-02
+  - yaml-pretty-extras # failure in job https://hydra.nixos.org/build/233219040 at 2023-09-02
+  - YamlReference # failure in job https://hydra.nixos.org/build/233222700 at 2023-09-02
+  - yaml-rpc # failure in job https://hydra.nixos.org/build/233192097 at 2023-09-02
+  - yaml-union # failure in job https://hydra.nixos.org/build/233253896 at 2023-09-02
+  - yampa2048 # failure in job https://hydra.nixos.org/build/234450231 at 2023-09-13
+  - yampa-glfw # failure in job https://hydra.nixos.org/build/233215695 at 2023-09-02
+  - yampa-glut # failure in job https://hydra.nixos.org/build/234458324 at 2023-09-13
+  - yampa-sdl2 # failure in job https://hydra.nixos.org/build/233246927 at 2023-09-02
+  - YampaSynth # failure in job https://hydra.nixos.org/build/233226486 at 2023-09-02
+  - yandex-translate # failure in job https://hydra.nixos.org/build/233225152 at 2023-09-02
+  - yaop # failure in job https://hydra.nixos.org/build/233215867 at 2023-09-02
+  - yapb # failure in job https://hydra.nixos.org/build/233246177 at 2023-09-02
+  - yarn2nix # failure in job https://hydra.nixos.org/build/233216079 at 2023-09-02
+  - yarr # failure in job https://hydra.nixos.org/build/233209487 at 2023-09-02
+  - yate # failure in job https://hydra.nixos.org/build/233231754 at 2023-09-02
+  - yaya-test # failure in job https://hydra.nixos.org/build/233254306 at 2023-09-02
+  - yaya-unsafe-test # failure in job https://hydra.nixos.org/build/233194827 at 2023-09-02
+  - yeller # failure in job https://hydra.nixos.org/build/233240270 at 2023-09-02
+  - yeshql-hdbc # failure in job https://hydra.nixos.org/build/233245733 at 2023-09-02
+  - yeshql-postgresql-simple # failure in job https://hydra.nixos.org/build/233238128 at 2023-09-02
+  - yesod-angular # failure in job https://hydra.nixos.org/build/233237689 at 2023-09-02
+  - yesod-angular-ui # failure in job https://hydra.nixos.org/build/233233873 at 2023-09-02
+  - yesod-auth-account # failure in job https://hydra.nixos.org/build/233252535 at 2023-09-02
+  - yesod-auth-account-fork # failure in job https://hydra.nixos.org/build/233251662 at 2023-09-02
+  - yesod-auth-bcryptdb # failure in job https://hydra.nixos.org/build/233209630 at 2023-09-02
+  - yesod-auth-bcrypt # failure in job https://hydra.nixos.org/build/233210341 at 2023-09-02
+  - yesod-auth-deskcom # failure in job https://hydra.nixos.org/build/233230640 at 2023-09-02
+  - yesod-auth-fb # failure in job https://hydra.nixos.org/build/233224172 at 2023-09-02
+  - yesod-auth-hmac-keccak # failure in job https://hydra.nixos.org/build/233224778 at 2023-09-02
+  - yesod-auth-kerberos # failure in job https://hydra.nixos.org/build/233245920 at 2023-09-02
+  - yesod-auth-ldap-mediocre # failure in job https://hydra.nixos.org/build/233195322 at 2023-09-02
+  - yesod-auth-ldap-native # failure in job https://hydra.nixos.org/build/233218681 at 2023-09-02
+  - yesod-auth-nopassword # failure in job https://hydra.nixos.org/build/233197722 at 2023-09-02
+  - yesod-auth-pam # failure in job https://hydra.nixos.org/build/233207688 at 2023-09-02
+  - yesod-auth-smbclient # failure in job https://hydra.nixos.org/build/233234879 at 2023-09-02
+  - yesod-auth-zendesk # failure in job https://hydra.nixos.org/build/233212653 at 2023-09-02
+  - yesod-bootstrap # failure in job https://hydra.nixos.org/build/233205201 at 2023-09-02
+  - yesod-comments # failure in job https://hydra.nixos.org/build/233252703 at 2023-09-02
+  - yesod-content-pdf # failure in job https://hydra.nixos.org/build/233210723 at 2023-09-02
+  - yesod-crud # failure in job https://hydra.nixos.org/build/233218383 at 2023-09-02
+  - yesod-crud-persist # failure in job https://hydra.nixos.org/build/233245131 at 2023-09-02
+  - yesod-csp # failure in job https://hydra.nixos.org/build/233207134 at 2023-09-02
+  - yesod-datatables # failure in job https://hydra.nixos.org/build/233197763 at 2023-09-02
+  - yesod-dsl # failure in job https://hydra.nixos.org/build/233210879 at 2023-09-02
+  - yesod-fast-devel # failure in job https://hydra.nixos.org/build/233209381 at 2023-09-02
+  - yesod-filter # failure in job https://hydra.nixos.org/build/233252569 at 2023-09-02
+  - yesod-form-json # failure in job https://hydra.nixos.org/build/233210866 at 2023-09-02
+  - yesod-form-richtext # failure in job https://hydra.nixos.org/build/233201156 at 2023-09-02
+  - yesod-gitrev # failure in job https://hydra.nixos.org/build/233197294 at 2023-09-02
+  - yesod-goodies # failure in job https://hydra.nixos.org/build/233223782 at 2023-09-02
+  - yesod-ip # failure in job https://hydra.nixos.org/build/233254277 at 2023-09-02
+  - yesod-job-queue # failure in job https://hydra.nixos.org/build/233259258 at 2023-09-02
+  - yesod-katip # failure in job https://hydra.nixos.org/build/233236143 at 2023-09-02
+  - yesod-links # failure in job https://hydra.nixos.org/build/233257763 at 2023-09-02
+  - yesod-lucid # failure in job https://hydra.nixos.org/build/233231687 at 2023-09-02
+  - yesod-paginate # failure in job https://hydra.nixos.org/build/233218563 at 2023-09-02
+  - yesod-pagination # failure in job https://hydra.nixos.org/build/233204022 at 2023-09-02
+  - yesod-pnotify # failure in job https://hydra.nixos.org/build/233258047 at 2023-09-02
+  - yesod-pure # failure in job https://hydra.nixos.org/build/233192121 at 2023-09-02
+  - yesod-raml # failure in job https://hydra.nixos.org/build/233230699 at 2023-09-02
+  - yesod-recaptcha # failure in job https://hydra.nixos.org/build/233235972 at 2023-09-02
+  - yesod-routes # failure in job https://hydra.nixos.org/build/233233323 at 2023-09-02
+  - yesod-rst # failure in job https://hydra.nixos.org/build/233201863 at 2023-09-02
+  - yesod-s3 # failure in job https://hydra.nixos.org/build/233224000 at 2023-09-02
+  - yesod-sass # failure in job https://hydra.nixos.org/build/233240621 at 2023-09-02
+  - yesod-static-angular # failure in job https://hydra.nixos.org/build/233249261 at 2023-09-02
+  - yesod-static-remote # failure in job https://hydra.nixos.org/build/233218340 at 2023-09-02
+  - yesod-static-streamly # failure in job https://hydra.nixos.org/build/233224664 at 2023-09-02
+  - yesod-test-json # failure in job https://hydra.nixos.org/build/233227876 at 2023-09-02
+  - yesod-text-markdown # failure in job https://hydra.nixos.org/build/233192278 at 2023-09-02
+  - yesod-tls # failure in job https://hydra.nixos.org/build/233251484 at 2023-09-02
+  - yesod-transloadit # failure in job https://hydra.nixos.org/build/233202132 at 2023-09-02
+  - yesod-vend # failure in job https://hydra.nixos.org/build/233227545 at 2023-09-02
+  - YFrob # failure in job https://hydra.nixos.org/build/233197612 at 2023-09-02
+  - yggdrasil # failure in job https://hydra.nixos.org/build/233229923 at 2023-09-02
+  - yhccore # failure in job https://hydra.nixos.org/build/233199669 at 2023-09-02
+  - yhseq # failure in job https://hydra.nixos.org/build/233191724 at 2023-09-02
+  - yices # failure in job https://hydra.nixos.org/build/233242137 at 2023-09-02
+  - yi-language # failure in job https://hydra.nixos.org/build/233217570 at 2023-09-02
+  - yoctoparsec # failure in job https://hydra.nixos.org/build/233192019 at 2023-09-02
+  - yoda # failure in job https://hydra.nixos.org/build/233200530 at 2023-09-02
+  - Yogurt # failure in job https://hydra.nixos.org/build/233212103 at 2023-09-02
+  - yu-core # failure in job https://hydra.nixos.org/build/233202551 at 2023-09-02
+  - yuiGrid # failure in job https://hydra.nixos.org/build/233223402 at 2023-09-02
+  - yu-tool # failure in job https://hydra.nixos.org/build/233216535 at 2023-09-02
+  - yxdb-utils # failure in job https://hydra.nixos.org/build/233210232 at 2023-09-02
+  - z3-encoding # failure in job https://hydra.nixos.org/build/233254155 at 2023-09-02
+  - z85 # failure in job https://hydra.nixos.org/build/233235083 at 2023-09-02
+  - zabt # failure in job https://hydra.nixos.org/build/233249170 at 2023-09-02
+  - zampolit # failure in job https://hydra.nixos.org/build/233223270 at 2023-09-02
+  - zbar # failure in job https://hydra.nixos.org/build/233598222 at 2023-09-02
+  - Z-Data # failure in job https://hydra.nixos.org/build/233256080 at 2023-09-02
+  - ZEBEDDE # failure in job https://hydra.nixos.org/build/233217131 at 2023-09-02
+  - zendesk-api # failure in job https://hydra.nixos.org/build/233257269 at 2023-09-02
+  - zeno # failure in job https://hydra.nixos.org/build/233218338 at 2023-09-02
+  - zeolite-lang # failure in job https://hydra.nixos.org/build/233217146 at 2023-09-02
+  - zero # failure in job https://hydra.nixos.org/build/233209286 at 2023-09-02
+  - zeromq3-haskell # failure in job https://hydra.nixos.org/build/233215557 at 2023-09-02
+  - zeromq4-conduit # failure in job https://hydra.nixos.org/build/233198244 at 2023-09-02
+  - zeromq-haskell # failure in job https://hydra.nixos.org/build/233196050 at 2023-09-02
+  - zettelkast # failure in job https://hydra.nixos.org/build/233211485 at 2023-09-02
+  - ZFS # failure in job https://hydra.nixos.org/build/233257824 at 2023-09-02
+  - zifter # failure in job https://hydra.nixos.org/build/233196342 at 2023-09-02
+  - zigbee-znet25 # failure in job https://hydra.nixos.org/build/233235729 at 2023-09-02
+  - zip-conduit # failure in job https://hydra.nixos.org/build/233259721 at 2023-09-02
+  - zipedit # failure in job https://hydra.nixos.org/build/233218886 at 2023-09-02
+  - zipkin # failure in job https://hydra.nixos.org/build/233249243 at 2023-09-02
+  - ziptastic-core # failure in job https://hydra.nixos.org/build/233220608 at 2023-09-02
+  - zlib-bytes # failure in job https://hydra.nixos.org/build/233210142 at 2023-09-02
+  - zlib-lens # failure in job https://hydra.nixos.org/build/233197265 at 2023-09-02
+  - ZMachine # failure in job https://hydra.nixos.org/build/233244623 at 2023-09-02
+  - zmidi-score # failure in job https://hydra.nixos.org/build/233208041 at 2023-09-02
+  - zmqat # failure in job https://hydra.nixos.org/build/233236300 at 2023-09-02
+  - zoneinfo # failure in job https://hydra.nixos.org/build/233203677 at 2023-09-02
+  - zoom # failure in job https://hydra.nixos.org/build/233210779 at 2023-09-02
+  - zoom-refs # failure in job https://hydra.nixos.org/build/233247488 at 2023-09-02
+  - zsdd # failure in job https://hydra.nixos.org/build/233236944 at 2023-09-02
+  - zsh-battery # failure in job https://hydra.nixos.org/build/233206733 at 2023-09-02
+  - zsyntax # failure in job https://hydra.nixos.org/build/233233753 at 2023-09-02
+  - ztail # failure in job https://hydra.nixos.org/build/233228534 at 2023-09-02
+  - zuul # failure in job https://hydra.nixos.org/build/233204205 at 2023-09-02
+  - Zwaluw # failure in job https://hydra.nixos.org/build/233216701 at 2023-09-02
+  - zxcvbn-dvorak # failure in job https://hydra.nixos.org/build/233194326 at 2023-09-02
+  - zydiskell # failure in job https://hydra.nixos.org/build/233259592 at 2023-09-02
+  - zyre2 # failure in job https://hydra.nixos.org/build/233215215 at 2023-09-02
diff --git a/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml b/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml
index 9f32c9011113..030ed98a6406 100644
--- a/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml
+++ b/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml
@@ -41,11 +41,6 @@ default-package-overrides:
   - dhall-nixpkgs == 1.0.9
   - dhall-nix == 1.1.25
 
-  # 2023-06-24: HLS at large can't deal with lsp-2.0.0.0 yet
-  - lsp == 1.6.*
-  - lsp-types == 1.6.*
-  - lsp-test == 0.14.*
-
   # 2023-07-06: ghcide-2.0.0.1 explicitly needs implicit-hie < 0.1.3, because some sort of
   # breaking change was introduced in implicit-hie-0.1.3.0.
   # https://github.com/haskell/haskell-language-server/blob/feb596592de95f09cf4ee885f3e74178161919f1/ghcide/ghcide.cabal#L107-L111
@@ -112,6 +107,7 @@ extra-packages:
   - hspec-discover < 2.8                # 2022-04-07: Needed for tasty-hspec 1.1.6
   - hspec-meta < 2.8                    # 2022-12-07: Needed for elmPackages.elm / hspec-discover
   - hspec-golden == 0.1.*               # 2022-04-07: Needed for elm-format
+  - http2 < 3.3                         # 2023-08-24: Needed for twain <https://github.com/alexmingoia/twain/issues/5>
   - immortal == 0.2.2.1                 # required by Hasura 1.3.1, 2020-08-20
   - language-docker == 11.0.0           # required by hadolint 2.12.0, 2022-11-16
   - language-javascript == 0.7.0.0      # required by purescript
@@ -132,6 +128,7 @@ extra-packages:
   - sbv == 7.13                         # required for pkgs.petrinizer
   - stylish-haskell == 0.14.3.0         # 2022-09-19: needed for hls on ghc 8.8
   - tasty-hspec == 1.1.6                # 2022-04-07: Needed for elm-format
+  - th-abstraction < 0.6                # 2023-09-11: needed for aeson-2.2.0.0
   - vty == 5.35.1                       # 2022-07-08: needed for glirc-2.39.0.1
   - weeder == 2.2.*                     # 2022-02-21: preserve for GHC 8.10.7
   - weeder == 2.3.*                     # 2022-05-31: preserve for GHC 9.0.2
@@ -173,6 +170,7 @@ package-maintainers:
     - patat
     - svgcairo
   danielrolls:
+    - byte-count-reader
     - shellify
   domenkozar:
     - cachix
@@ -580,6 +578,8 @@ unsupported-platforms:
   bustle:                                       [ platforms.darwin ] # uses glibc-specific ptsname_r
   bytelog:                                      [ platforms.darwin ] # due to posix-api
   camfort:                                      [ aarch64-linux ]
+  chalkboard:                                   [ platforms.darwin ] # depends on Codec-Image-DevIL
+  chalkboard-viewer:                            [ platforms.darwin ] # depends on chalkboard
   charsetdetect:                                [ aarch64-linux ] # not supported by vendored lib / not configured properly https://github.com/batterseapower/libcharsetdetect/issues/3
   Codec-Image-DevIL:                            [ platforms.darwin ] # depends on mesa
   coinor-clp:                                   [ aarch64-linux ] # aarch64-linux is not supported by required system dependency clp
@@ -596,6 +596,7 @@ unsupported-platforms:
   gi-dbusmenugtk3:                              [ platforms.darwin ]
   gi-dbusmenu:                                  [ platforms.darwin ]
   gi-ggit:                                      [ platforms.darwin ]
+  gi-gtk-layer-shell:                           [ platforms.darwin ] # depends on gtk-layer-shell which is not supported on darwin
   gi-ibus:                                      [ platforms.darwin ]
   gi-javascriptcore:                            [ platforms.darwin ] # webkitgtk marked broken on darwin
   gi-ostree:                                    [ platforms.darwin ]
@@ -610,7 +611,6 @@ unsupported-platforms:
   gtk-sni-tray:                                 [ platforms.darwin ]
   h-raylib:                                     [ platforms.darwin ] # depends on mesa
   haskell-snake:                                [ platforms.darwin ]
-  hb3sum:                                       [ aarch64-linux ] # depends on blake3, which is not supported on aarch64-linux
   hcwiid:                                       [ platforms.darwin ]
   HDRUtils:                                     [ platforms.darwin ]
   hidapi:                                       [ platforms.darwin ]
@@ -664,6 +664,7 @@ unsupported-platforms:
   SDL-mpeg:                                     [ platforms.darwin ] # depends on mesa
   sdl2-mixer:                                   [ platforms.darwin ]
   sdl2-ttf:                                     [ platforms.darwin ]
+  sdr:                                          [ platforms.darwin ] # depends on rtlsdr
   sensei:                                       [ platforms.darwin ]
   spade:                                        [ platforms.darwin ] # depends on sdl2-mixer, which doesn't work on darwin
   synthesizer-alsa:                             [ platforms.darwin ]
@@ -711,12 +712,14 @@ supported-platforms:
   gtk3-mac-integration:                         [ platforms.darwin ]
   halide-haskell:                               [ platforms.linux ]
   halide-JuicyPixels:                           [ platforms.linux ]
+  hb3sum:                                       [ platforms.x86 ] # due to blake3
   hommage-ds:                                   [ platforms.windows ]
   hpapi:                                        [ platforms.linux ] # limited by pkgs.papi
   hsignal:                                      [ platforms.x86 ] # -msse2
   HFuse:                                        [ platforms.linux ]
   HQu:                                          [ platforms.x86 ] # vendored C++ library needs i686/x86_64
   hs-swisstable-hashtables-class:               [ platforms.x86_64 ] # depends on swisstable, which Needs AVX2
+  htune:                                        [ platforms.linux ] # depends on alsa-pcm
   hw-prim-bits:                                 [ platforms.x86 ] # x86 assembler
   inline-asm:                                   [ platforms.x86 ] # x86 assembler
   keid-core:                                    [ x86_64-linux ] # geomancy (only x86), vulkan (no i686, no darwin, …)
@@ -844,7 +847,9 @@ dont-distribute-packages:
 
   # Packages that (transitively) depend on insecure packages
   - distributed-process-zookeeper # depends on hzk
+  - HDRUtils # depends on pfstools, which depends on imagemagick
   - hzk # depends on zookeeper_mt, which depends on openssl-1.1
-  - persistent-zookeper # depends on hzk
+  - jobqueue # depends on hzk
+  - persistent-zookeeper # depends on hzk
   - pocket-dns # depends on persistent-zookeeper
   - zoovisitor # depends on zookeeper_mt, which depends on openssl-1.1
diff --git a/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml b/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml
index 120d09d88c05..aad7f3182909 100644
--- a/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml
+++ b/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml
@@ -1,4 +1,4 @@
-# Stackage LTS 21.3
+# Stackage LTS 21.7
 # This file is auto-generated by
 # maintainers/scripts/haskell/update-stackage.sh
 default-package-overrides:
@@ -8,7 +8,7 @@ default-package-overrides:
   - AC-Angle ==1.0
   - acc ==0.2.0.2
   - ace ==0.6
-  - acid-state ==0.16.1.2
+  - acid-state ==0.16.1.3
   - action-permutations ==0.0.0.1
   - active ==0.2.0.18
   - ad ==4.5.4
@@ -104,11 +104,12 @@ default-package-overrides:
   - atomic-primops ==0.8.4
   - atomic-write ==0.2.0.7
   - attoparsec ==0.14.4
+  - attoparsec-aeson ==2.1.0.0
   - attoparsec-base64 ==0.0.0
   - attoparsec-binary ==0.2
   - attoparsec-data ==1.0.5.3
   - attoparsec-expr ==0.1.1.2
-  - attoparsec-framer ==0.1.0.0
+  - attoparsec-framer ==0.1.0.1
   - attoparsec-iso8601 ==1.1.0.0
   - attoparsec-path ==0.0.0.1
   - attoparsec-run ==0.0.2.0
@@ -116,7 +117,7 @@ default-package-overrides:
   - audacity ==0.0.2.1
   - authenticate ==1.3.5.1
   - authenticate-oauth ==1.7
-  - autodocodec ==0.2.0.3
+  - autodocodec ==0.2.0.4
   - autodocodec-openapi3 ==0.2.1.1
   - autodocodec-schema ==0.1.0.3
   - autodocodec-yaml ==0.2.0.3
@@ -166,7 +167,7 @@ default-package-overrides:
   - benri-hspec ==0.1.0.1
   - between ==0.11.0.0
   - bhoogle ==0.1.4.2
-  - bibtex ==0.1.0.6
+  - bibtex ==0.1.0.7
   - bifunctor-classes-compat ==0.1
   - bifunctors ==5.5.15
   - bimap ==0.5.0
@@ -195,7 +196,7 @@ default-package-overrides:
   - bitset-word8 ==0.1.1.2
   - bits-extra ==0.0.2.3
   - bitvec ==1.1.4.0
-  - bitwise-enum ==1.0.1.0
+  - bitwise-enum ==1.0.1.2
   - blake2 ==0.3.0
   - Blammo ==1.1.2.1
   - blank-canvas ==0.7.3
@@ -215,7 +216,7 @@ default-package-overrides:
   - bm ==0.2.0.0
   - bmp ==1.2.6.3
   - bnb-staking-csvs ==0.2.1.0
-  - BNFC ==2.9.4.1
+  - BNFC ==2.9.5
   - BNFC-meta ==0.6.1
   - board-games ==0.4
   - bodhi ==0.1.0
@@ -226,11 +227,11 @@ default-package-overrides:
   - boots ==0.2.0.1
   - bordacount ==0.1.0.0
   - boring ==0.2.1
-  - bound ==2.0.6
+  - bound ==2.0.7
   - BoundedChan ==1.0.3.0
   - bounded-queue ==1.0.0
   - boundingboxes ==0.2.3
-  - box ==0.9.1
+  - box ==0.9.2.0
   - boxes ==0.1.5
   - breakpoint ==0.1.2.1
   - brick ==1.9
@@ -251,16 +252,16 @@ default-package-overrides:
   - burrito ==2.0.1.6
   - bv ==0.5
   - byteable ==0.1.1
-  - bytebuild ==0.3.13.0
+  - bytebuild ==0.3.14.0
   - byte-count-reader ==0.10.1.10
   - bytedump ==1.0
   - bytehash ==0.1.0.0
   - byte-order ==0.1.3.0
   - byteorder ==1.0.4
-  - bytes ==0.17.2
+  - bytes ==0.17.3
   - byteset ==0.1.1.0
-  - byteslice ==0.2.10.0
-  - bytesmith ==0.3.9.1
+  - byteslice ==0.2.11.1
+  - bytesmith ==0.3.10.0
   - bytestring-builder ==0.10.8.2.0
   - bytestring-lexing ==0.5.0.10
   - bytestring-mmap ==0.2.2
@@ -270,7 +271,7 @@ default-package-overrides:
   - bytestring-trie ==0.2.7.2
   - bz2 ==1.0.1.0
   - bzlib-conduit ==0.3.0.2
-  - c14n ==0.1.0.2
+  - c14n ==0.1.0.3
   - c2hs ==0.28.8
   - cabal2spec ==2.7.0
   - cabal-appimage ==0.4.0.1
@@ -278,7 +279,7 @@ default-package-overrides:
   - cabal-doctest ==1.0.9
   - cabal-file ==0.1.1
   - cabal-install-solver ==3.8.1.0
-  - cabal-rpm ==2.1.1
+  - cabal-rpm ==2.1.2
   - cache ==0.1.3.0
   - cached-json-file ==0.1.1
   - cacophony ==0.10.1
@@ -316,7 +317,7 @@ default-package-overrides:
   - cgi ==3001.5.0.1
   - chan ==0.0.4.1
   - character-cases ==0.1.0.6
-  - charset ==0.3.9
+  - charset ==0.3.10
   - charsetdetect-ae ==1.1.0.4
   - Chart ==1.9.4
   - Chart-diagrams ==1.9.4
@@ -336,13 +337,13 @@ default-package-overrides:
   - circle-packing ==0.1.0.6
   - circular ==0.4.0.3
   - citeproc ==0.8.1
-  - classy-prelude ==1.5.0.2
+  - classy-prelude ==1.5.0.3
   - classy-prelude-conduit ==1.5.0
   - classy-prelude-yesod ==1.5.0
   - cleff ==0.3.3.0
-  - clientsession ==0.9.1.2
+  - clientsession ==0.9.2.0
   - Clipboard ==2.3.2.0
-  - clock ==0.8.3
+  - clock ==0.8.4
   - closed ==0.2.0.2
   - clumpiness ==0.17.0.2
   - ClustalParser ==1.3.0
@@ -461,6 +462,7 @@ default-package-overrides:
   - cryptohash-sha256 ==0.11.102.1
   - cryptohash-sha512 ==0.11.102.0
   - crypton ==0.32
+  - crypton-conduit ==0.2.3
   - cryptonite ==0.30
   - cryptonite-conduit ==0.2.2
   - cryptonite-openssl ==0.7
@@ -519,7 +521,7 @@ default-package-overrides:
   - data-hash ==0.2.0.1
   - data-interval ==2.1.1
   - data-inttrie ==0.1.4
-  - data-lens-light ==0.1.2.3
+  - data-lens-light ==0.1.2.4
   - data-memocombinators ==0.5.1
   - data-msgpack ==0.0.13
   - data-msgpack-types ==0.0.3
@@ -555,7 +557,7 @@ default-package-overrides:
   - derive-storable ==0.3.1.0
   - derive-topdown ==0.0.3.0
   - deriving-aeson ==0.2.9
-  - deriving-compat ==0.6.3
+  - deriving-compat ==0.6.5
   - deriving-trans ==0.5.2.0
   - detour-via-sci ==1.0.0
   - df1 ==0.4.1
@@ -597,7 +599,7 @@ default-package-overrides:
   - distributive ==0.6.2.1
   - diversity ==0.8.1.0
   - djinn-lib ==0.0.1.4
-  - dl-fedora ==0.9.5
+  - dl-fedora ==0.9.5.1
   - dlist ==1.0
   - dlist-instances ==0.1.1.1
   - dlist-nonempty ==0.1.3
@@ -609,7 +611,7 @@ default-package-overrides:
   - doctest-discover ==0.2.0.0
   - doctest-driver-gen ==0.3.0.7
   - doctest-exitcode-stdio ==0.0
-  - doctest-extract ==0.1.1
+  - doctest-extract ==0.1.1.1
   - doctest-lib ==0.1
   - doctest-parallel ==0.3.0.1
   - doldol ==0.4.1.2
@@ -634,7 +636,7 @@ default-package-overrides:
   - dsp ==0.2.5.2
   - dual ==0.1.1.1
   - dual-tree ==0.2.3.1
-  - dublincore-xml-conduit ==0.1.0.2
+  - dublincore-xml-conduit ==0.1.0.3
   - dunai ==0.11.1
   - duration ==0.2.0.0
   - dvorak ==0.1.0.0
@@ -674,8 +676,8 @@ default-package-overrides:
   - elynx-tools ==0.7.2.1
   - elynx-tree ==0.7.2.2
   - emacs-module ==0.1.1.1
-  - email-validate ==2.3.2.18
-  - emojis ==0.1.2
+  - email-validate ==2.3.2.19
+  - emojis ==0.1.3
   - enclosed-exceptions ==1.0.3
   - ENIG ==0.0.1.0
   - entropy ==0.4.1.10
@@ -698,7 +700,7 @@ default-package-overrides:
   - errors ==2.3.0
   - errors-ext ==0.4.2
   - ersatz ==0.4.13
-  - esqueleto ==3.5.10.0
+  - esqueleto ==3.5.10.1
   - event-list ==0.1.2
   - eventstore ==1.4.2
   - every ==0.0.1
@@ -753,7 +755,7 @@ default-package-overrides:
   - fields-json ==0.4.0.0
   - file-embed ==0.0.15.0
   - file-embed-lzma ==0.0.1
-  - filelock ==0.1.1.6
+  - filelock ==0.1.1.7
   - filemanip ==0.3.6.3
   - file-modules ==0.1.2.4
   - filepath-bytestring ==1.4.2.1.13
@@ -838,7 +840,7 @@ default-package-overrides:
   - generic-constraints ==1.1.1.1
   - generic-data ==1.1.0.0
   - generic-data-surgery ==0.3.0.0
-  - generic-deriving ==1.14.4
+  - generic-deriving ==1.14.5
   - generic-functor ==1.1.0.0
   - generic-lens ==2.2.2.0
   - generic-lens-core ==2.2.1.0
@@ -892,8 +894,8 @@ default-package-overrides:
   - ghci-hexcalc ==0.1.1.0
   - ghcjs-codemirror ==0.0.0.2
   - ghcjs-perch ==0.3.3.3
-  - ghc-lib ==9.4.5.20230430
-  - ghc-lib-parser ==9.4.5.20230430
+  - ghc-lib ==9.4.6.20230808
+  - ghc-lib-parser ==9.4.6.20230808
   - ghc-lib-parser-ex ==9.4.0.0
   - ghc-paths ==0.1.0.12
   - ghc-prof ==1.4.1.12
@@ -999,7 +1001,7 @@ default-package-overrides:
   - harp ==0.4.3.6
   - HasBigDecimal ==0.2.0.0
   - hasbolt ==0.1.6.2
-  - hashable ==1.4.2.0
+  - hashable ==1.4.3.0
   - hashing ==0.1.1.0
   - hashmap ==1.3.3
   - hashtables ==1.3.1
@@ -1018,7 +1020,7 @@ default-package-overrides:
   - haskoin-node ==0.18.1
   - haskoin-store-data ==0.65.5
   - hasktags ==0.72.0
-  - hasql ==1.6.3
+  - hasql ==1.6.3.2
   - hasql-dynamic-statements ==0.3.1.2
   - hasql-implicits ==0.1.1
   - hasql-interpolate ==0.1.0.4
@@ -1054,7 +1056,7 @@ default-package-overrides:
   - hedis ==0.15.2
   - hedn ==0.3.0.4
   - heist ==1.1.1.1
-  - here ==1.2.13
+  - here ==1.2.14
   - heredoc ==0.2.0.0
   - heterocephalus ==1.0.5.7
   - hetzner ==0.2.1.1
@@ -1126,7 +1128,7 @@ default-package-overrides:
   - hset ==2.2.0
   - hs-GeoIP ==0.3
   - hsignal ==0.2.7.5
-  - hsini ==0.5.1.2
+  - hsini ==0.5.2.1
   - hsinstall ==2.8
   - HSlippyMap ==3.0.1
   - hslogger ==1.3.1.0
@@ -1156,7 +1158,7 @@ default-package-overrides:
   - hspec-core ==2.10.10
   - hspec-discover ==2.10.10
   - hspec-expectations ==0.8.2
-  - hspec-expectations-json ==1.0.0.7
+  - hspec-expectations-json ==1.0.2.0
   - hspec-expectations-lifted ==0.10.0
   - hspec-expectations-pretty-diff ==0.7.2.6
   - hspec-golden ==0.2.1.0
@@ -1256,7 +1258,7 @@ default-package-overrides:
   - hxt-regex-xmlschema ==9.2.0.7
   - hxt-tagsoup ==9.1.4
   - hxt-unicode ==9.0.2.4
-  - hybrid-vectors ==0.2.3
+  - hybrid-vectors ==0.2.4
   - hyper ==0.2.1.1
   - hyperloglog ==0.4.6
   - hyphenation ==0.8.2
@@ -1298,7 +1300,7 @@ default-package-overrides:
   - integer-roots ==1.0.2.0
   - integer-types ==0.1.4.0
   - integration ==0.2.1
-  - intern ==0.9.4
+  - intern ==0.9.5
   - interpolate ==0.2.1
   - interpolatedstring-perl6 ==1.0.2
   - interpolation ==0.1.1.2
@@ -1306,7 +1308,7 @@ default-package-overrides:
   - IntervalMap ==0.6.2.1
   - intervals ==0.9.2
   - intset-imperative ==0.1.0.0
-  - invariant ==0.6.1
+  - invariant ==0.6.2
   - invert ==1.0.0.4
   - invertible-grammar ==0.1.3.4
   - io-machine ==0.2.0.0
@@ -1366,7 +1368,7 @@ default-package-overrides:
   - kazura-queue ==0.1.0.4
   - kdt ==0.2.5
   - keep-alive ==0.2.1.0
-  - keter ==2.1.1
+  - keter ==2.1.2
   - keycode ==0.2.2
   - keyed-vals ==0.2.2.0
   - keyed-vals-hspec-tests ==0.2.2.0
@@ -1376,7 +1378,7 @@ default-package-overrides:
   - ki ==1.0.1.0
   - kind-apply ==0.4.0.0
   - kind-generics ==0.5.0.0
-  - kind-generics-th ==0.2.3.2
+  - kind-generics-th ==0.2.3.3
   - ki-unlifted ==1.0.0.1
   - kleene ==0.1
   - kmeans ==0.1.3
@@ -1428,11 +1430,11 @@ default-package-overrides:
   - lens-properties ==4.11.1
   - lens-regex ==0.1.3
   - lens-regex-pcre ==1.1.0.0
-  - lentil ==1.5.5.4
+  - lentil ==1.5.6.0
   - LetsBeRational ==1.0.0.0
   - leveldb-haskell ==0.6.5
   - lexer-applicative ==2.1.0.2
-  - libBF ==0.6.5.1
+  - libBF ==0.6.6
   - libffi ==0.2.1
   - libgit ==0.3.1
   - liboath-hs ==0.0.1.2
@@ -1570,7 +1572,7 @@ default-package-overrides:
   - misfortune ==0.1.2.1
   - missing-foreign ==0.1.1
   - MissingH ==1.6.0.0
-  - mixed-types-num ==0.5.11
+  - mixed-types-num ==0.5.12
   - mmap ==0.5.9
   - mmark ==0.0.7.6
   - mmark-cli ==0.0.5.1
@@ -1692,7 +1694,7 @@ default-package-overrides:
   - network-messagepack-rpc ==0.1.2.0
   - network-messagepack-rpc-websocket ==0.1.1.1
   - network-multicast ==0.3.2
-  - Network-NineP ==0.4.7.2
+  - Network-NineP ==0.4.7.3
   - network-run ==0.2.6
   - network-simple ==0.4.5
   - network-simple-tls ==0.4.1
@@ -1799,7 +1801,7 @@ default-package-overrides:
   - pandoc-plot ==1.7.0
   - pandoc-symreg ==0.2.0.0
   - pandoc-throw ==0.1.0.0
-  - pandoc-types ==1.23.0.1
+  - pandoc-types ==1.23.1
   - pango ==0.13.10.0
   - pantry ==0.8.3
   - parallel ==3.2.2.0
@@ -1966,7 +1968,7 @@ default-package-overrides:
   - profunctors ==5.6.2
   - projectroot ==0.2.0.1
   - project-template ==0.2.1.0
-  - prometheus-client ==1.1.0
+  - prometheus-client ==1.1.1
   - prometheus-metrics-ghc ==1.0.1.2
   - promises ==0.3
   - prompt ==0.1.1.2
@@ -2049,7 +2051,7 @@ default-package-overrides:
   - rawfilepath ==1.0.1
   - rawstring-qm ==0.2.3.0
   - raw-strings-qq ==1.1
-  - rcu ==0.2.6
+  - rcu ==0.2.7
   - rdf ==0.1.0.7
   - rdtsc ==1.3.0.1
   - re2 ==0.3
@@ -2090,7 +2092,7 @@ default-package-overrides:
   - regex-pcre-builtin ==0.95.2.3.8.44
   - regex-posix ==0.96.0.1
   - regex-posix-clib ==2.7
-  - regex-tdfa ==1.3.2.1
+  - regex-tdfa ==1.3.2.2
   - regex-with-pcre ==1.1.0.2
   - reinterpret-cast ==0.1.0
   - rel8 ==1.4.1.0
@@ -2170,7 +2172,7 @@ default-package-overrides:
   - sandwich-hedgehog ==0.1.3.0
   - sandwich-quickcheck ==0.1.0.7
   - sandwich-slack ==0.1.2.0
-  - sandwich-webdriver ==0.2.2.0
+  - sandwich-webdriver ==0.2.3.0
   - say ==0.1.0.1
   - sbp ==4.15.0
   - sbv ==10.2
@@ -2279,10 +2281,10 @@ default-package-overrides:
   - simple-cabal ==0.1.3.1
   - simple-cmd ==0.2.7
   - simple-cmd-args ==0.1.8
-  - simple-expr ==0.1.0.2
+  - simple-expr ==0.1.1.0
   - simple-media-timestamp ==0.2.1.0
   - simple-media-timestamp-attoparsec ==0.1.0.0
-  - simple-prompt ==0.2.0.1
+  - simple-prompt ==0.2.1
   - simple-reflect ==0.3.3
   - simple-sendfile ==0.2.32
   - simple-session ==2.0.0
@@ -2302,8 +2304,8 @@ default-package-overrides:
   - skein ==1.0.9.4
   - skews ==0.1.0.3
   - skip-var ==0.1.1.0
-  - skylighting ==0.13.4
-  - skylighting-core ==0.13.4
+  - skylighting ==0.13.4.1
+  - skylighting-core ==0.13.4.1
   - skylighting-format-ansi ==0.1
   - skylighting-format-blaze-html ==0.1.1
   - skylighting-format-context ==0.1.0.2
@@ -2408,7 +2410,7 @@ default-package-overrides:
   - strict-base-types ==0.8
   - strict-concurrency ==0.2.4.3
   - strict-lens ==0.4.0.3
-  - strict-list ==0.1.7.1
+  - strict-list ==0.1.7.2
   - strict-tuple ==0.1.5.2
   - strict-wrapper ==0.0.0.0
   - stringable ==0.1.3
@@ -2428,7 +2430,7 @@ default-package-overrides:
   - stripe-signature ==1.0.0.16
   - stripe-wreq ==1.0.1.16
   - strive ==6.0.0.9
-  - structs ==0.1.8
+  - structs ==0.1.9
   - structured ==0.1.1
   - structured-cli ==2.7.0.1
   - subcategories ==0.2.0.1
@@ -2439,8 +2441,8 @@ default-package-overrides:
   - svg-tree ==0.6.2.4
   - swagger2 ==2.8.7
   - swish ==0.10.4.0
-  - syb ==0.7.2.3
-  - sydtest ==0.15.0.0
+  - syb ==0.7.2.4
+  - sydtest ==0.15.1.0
   - sydtest-aeson ==0.1.0.0
   - sydtest-amqp ==0.1.0.0
   - sydtest-autodocodec ==0.0.0.0
@@ -2563,8 +2565,8 @@ default-package-overrides:
   - text-regex-replace ==0.1.1.5
   - text-rope ==0.2
   - text-short ==0.1.5
-  - text-show ==3.10.3
-  - text-show-instances ==3.9.5
+  - text-show ==3.10.4
+  - text-show-instances ==3.9.6
   - text-zipper ==0.13
   - tfp ==1.0.2
   - tf-random ==0.5
@@ -2581,7 +2583,7 @@ default-package-overrides:
   - these-skinny ==0.7.5
   - th-expand-syns ==0.4.11.0
   - th-lego ==0.3.0.2
-  - th-lift ==0.8.3
+  - th-lift ==0.8.4
   - th-lift-instances ==0.1.20
   - th-nowq ==0.1.0.5
   - th-orphans ==0.13.14
@@ -2632,7 +2634,7 @@ default-package-overrides:
   - token-bucket ==0.1.0.1
   - toml-reader ==0.2.1.0
   - toml-reader-parse ==0.1.1.1
-  - tophat ==1.0.5.1
+  - tophat ==1.0.6.0
   - topograph ==1.0.0.2
   - torrent ==10000.1.3
   - torsor ==0.1
@@ -2650,7 +2652,7 @@ default-package-overrides:
   - tree-fun ==0.8.1.0
   - tree-view ==0.5.1
   - trie-simple ==0.4.2
-  - trifecta ==2.1.2
+  - trifecta ==2.1.3
   - trimdent ==0.1.0.0
   - triplesec ==0.2.2.1
   - trivial-constraint ==0.7.0.0
@@ -2718,7 +2720,7 @@ default-package-overrides:
   - unique-logic ==0.4.0.1
   - unique-logic-tf ==0.5.1
   - unit-constraint ==0.0.0
-  - units-parser ==0.1.1.4
+  - units-parser ==0.1.1.5
   - universe ==1.2.2
   - universe-base ==1.1.3.1
   - universe-dependent-sum ==1.3
@@ -2861,7 +2863,7 @@ default-package-overrides:
   - within ==0.2.0.1
   - with-location ==0.1.0
   - with-utf8 ==1.0.2.4
-  - witness ==0.6.1
+  - witness ==0.6.2
   - wizards ==1.0.3
   - wl-pprint ==1.2.1
   - wl-pprint-annotated ==0.1.0.1
@@ -2873,7 +2875,7 @@ default-package-overrides:
   - word-wrap ==0.5
   - world-peace ==1.0.2.0
   - wrap ==0.0.0
-  - wreq ==0.5.4.0
+  - wreq ==0.5.4.1
   - wreq-stringless ==0.5.9.1
   - writer-cps-exceptions ==0.1.0.1
   - writer-cps-mtl ==0.1.1.6
@@ -2913,26 +2915,26 @@ default-package-overrides:
   - xml-types ==0.3.8
   - xmonad ==0.17.2
   - xmonad-contrib ==0.17.1
-  - xor ==0.0.1.1
+  - xor ==0.0.1.2
   - xss-sanitize ==0.3.7.2
   - xxhash-ffi ==0.2.0.0
   - yaml ==0.11.11.2
   - yaml-unscrambler ==0.1.0.17
-  - Yampa ==0.14.3
+  - Yampa ==0.14.4
   - yarn-lock ==0.6.5
   - yeshql-core ==4.2.0.0
   - yesod ==1.6.2.1
   - yesod-auth ==1.6.11.1
   - yesod-auth-basic ==0.1.0.3
   - yesod-auth-hashdb ==1.7.1.7
-  - yesod-auth-oauth2 ==0.7.1.0
+  - yesod-auth-oauth2 ==0.7.1.1
   - yesod-auth-oidc ==0.1.4
   - yesod-bin ==1.6.2.2
-  - yesod-core ==1.6.24.3
+  - yesod-core ==1.6.24.4
   - yesod-eventsource ==1.6.0.1
   - yesod-fb ==0.6.1
   - yesod-form ==1.7.4
-  - yesod-form-bootstrap4 ==3.0.1
+  - yesod-form-bootstrap4 ==3.0.1.1
   - yesod-gitrepo ==0.3.0
   - yesod-gitrev ==0.2.2
   - yesod-markdown ==0.12.6.13
@@ -2941,7 +2943,7 @@ default-package-overrides:
   - yesod-page-cursor ==2.0.1.0
   - yesod-paginator ==1.1.2.2
   - yesod-persistent ==1.6.0.8
-  - yesod-recaptcha2 ==1.0.2
+  - yesod-recaptcha2 ==1.0.2.1
   - yesod-routes-flow ==3.0.0.2
   - yesod-sitemap ==1.6.0
   - yesod-static ==1.6.1.0
diff --git a/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml b/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml
index 10340d5afe6c..92800986c971 100644
--- a/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml
+++ b/nixpkgs/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml
@@ -30,6 +30,7 @@ dont-distribute-packages:
  - AutoForms
  - AvlTree
  - BASIC
+ - BPS
  - Barracuda
  - BerlekampAlgorithm
  - BioHMM
@@ -63,7 +64,6 @@ dont-distribute-packages:
  - CSPM-Interpreter
  - CSPM-ToProlog
  - CSPM-cspm
- - Capabilities
  - CarneadesIntoDung
  - Chart-fltkhs
  - ClustalParser
@@ -104,7 +104,6 @@ dont-distribute-packages:
  - Eternal10Seconds
  - Etherbunny
  - EventSocket
- - Extra
  - FComp
  - FM-SBLEX
  - FTPLine
@@ -113,6 +112,7 @@ dont-distribute-packages:
  - FieldTrip
  - Fin
  - Finance-Treasury
+ - FiniteCategories
  - FiniteMap
  - FirstOrderTheory
  - Flippi
@@ -201,6 +201,7 @@ dont-distribute-packages:
  - HStringTemplateHelpers
  - HTab
  - HXMPP
+ - HaMinitel
  - HaRe
  - HaTeX-meta
  - HaTeX-qq
@@ -211,6 +212,7 @@ dont-distribute-packages:
  - HasGP
  - Haschoo
  - Hashell
+ - HaskRel
  - Hate
  - Hawk
  - Hayoo
@@ -222,7 +224,6 @@ dont-distribute-packages:
  - Hoed
  - Holumbus-Distribution
  - Holumbus-MapReduce
- - Holumbus-Searchengine
  - Holumbus-Storage
  - HongoDB
  - Hs2lib
@@ -269,7 +270,6 @@ dont-distribute-packages:
  - MFlow
  - MIP-glpk
  - MSQueue
- - MagicHaskeller
  - MailchimpSimple
  - Map
  - MetaObject
@@ -288,9 +288,11 @@ dont-distribute-packages:
  - MuCheck-Hspec
  - MuCheck-QuickCheck
  - MuCheck-SmallCheck
+ - Munkres-simple
  - MutationOrder
  - NGLess
  - NTRU
+ - NXT
  - NaperianNetCDF
  - NaturalLanguageAlphabets
  - NearContextAlgebra
@@ -325,7 +327,9 @@ dont-distribute-packages:
  - Pup-Events
  - Pup-Events-Demo
  - Quelea
+ - QuickPlot
  - RESTng
+ - RJson
  - RMP
  - RNAFold
  - RNAFoldProgs
@@ -335,7 +339,7 @@ dont-distribute-packages:
  - RNAwolf
  - Raincat
  - Ranka
- - ReplaceUmlaut
+ - Rlang-QQ
  - RollingDirectory
  - S3
  - SBench
@@ -375,7 +379,6 @@ dont-distribute-packages:
  - SimpleServer
  - Smooth
  - Snusmumrik
- - SoOSiM
  - SoccerFun
  - SoccerFunGL
  - SourceGraph
@@ -386,9 +389,9 @@ dont-distribute-packages:
  - SybWidget
  - SyntaxMacros
  - TV
+ - TastyTLT
  - Taxonomy
  - TaxonomyTools
- - TeX-my-math
  - TeaHS
  - TreeCounter
  - Treiber
@@ -412,7 +415,6 @@ dont-distribute-packages:
  - WebCont
  - Wired
  - WordAlignment
- - Workflow
  - WxGeneric
  - XML
  - XMPP
@@ -454,9 +456,7 @@ dont-distribute-packages:
  - adhoc-network
  - adict
  - adp-multi-monadiccp
- - aeson-extra_0_5_1_3
  - aeson-native
- - aeson-pretty_0_8_10
  - affine
  - afv
  - agda-server
@@ -470,7 +470,9 @@ dont-distribute-packages:
  - algebra-sql
  - algebraic
  - algolia
+ - algorithmic-composition-additional
  - algorithmic-composition-basic
+ - algorithmic-composition-complex
  - algorithmic-composition-frequency-shift
  - algorithmic-composition-overtones
  - alms
@@ -480,151 +482,15 @@ dont-distribute-packages:
  - alsa-seq-tests
  - alto
  - amazon-emailer-client-snap
- - amazonka
- - amazonka-alexa-business
- - amazonka-apigateway
- - amazonka-application-autoscaling
- - amazonka-appstream
- - amazonka-appsync
- - amazonka-athena
- - amazonka-autoscaling
- - amazonka-autoscaling-plans
- - amazonka-batch
- - amazonka-budgets
- - amazonka-certificatemanager
- - amazonka-certificatemanager-pca
- - amazonka-cloud9
- - amazonka-clouddirectory
- - amazonka-cloudformation
- - amazonka-cloudfront
- - amazonka-cloudhsm
- - amazonka-cloudhsmv2
- - amazonka-cloudsearch
- - amazonka-cloudsearch-domains
- - amazonka-cloudtrail
- - amazonka-cloudwatch
- - amazonka-cloudwatch-events
- - amazonka-cloudwatch-logs
- - amazonka-codebuild
- - amazonka-codecommit
- - amazonka-codedeploy
- - amazonka-codepipeline
- - amazonka-codestar
- - amazonka-cognito-identity
- - amazonka-cognito-idp
- - amazonka-cognito-sync
- - amazonka-comprehend
- - amazonka-config
- - amazonka-connect
  - amazonka-contrib-rds-utils
- - amazonka-cost-explorer
- - amazonka-cur
- - amazonka-datapipeline
- - amazonka-devicefarm
- - amazonka-directconnect
- - amazonka-discovery
- - amazonka-dms
- - amazonka-ds
- - amazonka-dynamodb
- - amazonka-dynamodb-dax
- - amazonka-dynamodb-streams
- - amazonka-ec2
- - amazonka-ecr
- - amazonka-ecs
- - amazonka-efs
- - amazonka-elasticache
- - amazonka-elasticbeanstalk
- - amazonka-elasticsearch
- - amazonka-elastictranscoder
- - amazonka-elb
- - amazonka-elbv2
- - amazonka-emr
- - amazonka-fms
- - amazonka-gamelift
- - amazonka-glacier
- - amazonka-glue
- - amazonka-greengrass
- - amazonka-guardduty
- - amazonka-health
- - amazonka-iam
- - amazonka-importexport
- - amazonka-inspector
- - amazonka-iot
- - amazonka-iot-analytics
- - amazonka-iot-dataplane
- - amazonka-iot-jobs-dataplane
- - amazonka-kinesis
- - amazonka-kinesis-analytics
- - amazonka-kinesis-firehose
- - amazonka-kinesis-video
- - amazonka-kinesis-video-archived-media
- - amazonka-kinesis-video-media
- - amazonka-kms
- - amazonka-lambda
- - amazonka-lex-models
- - amazonka-lex-runtime
- - amazonka-lightsail
- - amazonka-marketplace-analytics
- - amazonka-marketplace-entitlement
- - amazonka-marketplace-metering
- - amazonka-mechanicalturk
- - amazonka-mediaconvert
- - amazonka-medialive
- - amazonka-mediapackage
- - amazonka-mediastore
- - amazonka-mediastore-dataplane
- - amazonka-migrationhub
- - amazonka-ml
- - amazonka-mobile
- - amazonka-mq
- - amazonka-opsworks
- - amazonka-opsworks-cm
- - amazonka-organizations
- - amazonka-pinpoint
- - amazonka-polly
- - amazonka-pricing
- - amazonka-rds
- - amazonka-redshift
- - amazonka-rekognition
- - amazonka-resourcegroups
- - amazonka-resourcegroupstagging
- - amazonka-route53
- - amazonka-route53-autonaming
- - amazonka-route53-domains
- - amazonka-s3
+ - amazonka-s3-encryption
  - amazonka-s3-streaming
- - amazonka-sagemaker
- - amazonka-sagemaker-runtime
- - amazonka-sdb
- - amazonka-secretsmanager
- - amazonka-serverlessrepo
- - amazonka-servicecatalog
- - amazonka-ses
- - amazonka-shield
- - amazonka-sms
- - amazonka-snowball
- - amazonka-sns
- - amazonka-sqs
- - amazonka-ssm
- - amazonka-stepfunctions
- - amazonka-storagegateway
- - amazonka-sts
- - amazonka-support
- - amazonka-swf
- - amazonka-test
- - amazonka-transcribe
- - amazonka-translate
- - amazonka-waf
- - amazonka-waf-regional
- - amazonka-workdocs
- - amazonka-workmail
- - amazonka-workspaces
- - amazonka-xray
  - amby
  - ampersand
  - amqp-streamly
  - amqp-utils_0_6_4_0
  - amqp_0_22_2
+ - analyze-client
  - anatomy
  - animate-example
  - animate-frames
@@ -645,7 +511,6 @@ dont-distribute-packages:
  - antiope-shell
  - antiope-sns
  - antiope-sqs
- - antiope-swf
  - antlrc
  - apecs-gloss
  - apecs-physics-gloss
@@ -672,7 +537,6 @@ dont-distribute-packages:
  - apotiki
  - approx-rand-test
  - arbor-monad-metric-datadog
- - archive-libarchive
  - archive-tar-bytestring
  - archlinux-web
  - arduino-copilot
@@ -684,13 +548,11 @@ dont-distribute-packages:
  - arithmetic-circuits
  - array-forth
  - arraylist
- - ascii
  - ascii-cows
- - ascii-numbers
- - ascii-superset
  - ascii-table
- - ascii-th
  - asic
+ - assert4hs
+ - assert4hs-core
  - assert4hs-hspec
  - assert4hs-tasty
  - assimp
@@ -710,7 +572,6 @@ dont-distribute-packages:
  - aura
  - authoring
  - autodocodec-openapi3
- - autodocodec-servant-multipart
  - automata
  - autonix-deps-kf5
  - avers
@@ -732,7 +593,6 @@ dont-distribute-packages:
  - aws-kinesis-client
  - aws-kinesis-reshard
  - aws-lambda
- - aws-lambda-haskell-runtime-wai
  - aws-mfa-credentials
  - aws-sdk
  - aws-sdk-xml-unordered
@@ -740,16 +600,17 @@ dont-distribute-packages:
  - aws-sign4
  - aws-simple
  - aws-sns
+ - axel
  - axiom
  - azimuth-hs
  - azure-functions-worker
  - azure-service-api
  - azure-servicebus
  - b-tree
+ - b9
  - babylon
  - backblaze-b2-hs
  - backdropper
- - balkon
  - ballast
  - bamboo
  - bamboo-launcher
@@ -786,7 +647,6 @@ dont-distribute-packages:
  - belka
  - bff
  - bglib
- - bidirectionalization-combined
  - bifunctor
  - billboard-parser
  - billeksah-forms
@@ -816,6 +676,7 @@ dont-distribute-packages:
  - bird
  - bisc
  - biscuit-servant
+ - bishbosh
  - bit-array
  - bitcoin-address
  - bitcoin-api
@@ -833,12 +694,9 @@ dont-distribute-packages:
  - blatex
  - blaze-builder-enumerator
  - blaze-colonnade
- - blaze-html-contrib
  - ble
  - blink1
  - blip
- - blockfrost-client
- - blockfrost-client-core
  - blogination
  - bloodhound-amazonka-auth
  - bloxorz
@@ -846,13 +704,10 @@ dont-distribute-packages:
  - bluetile
  - blunt
  - bno055-haskell
- - board-games
  - bogre-banana
- - boilerplate
  - bond
  - bond-haskell
  - bond-haskell-compiler
- - bookhound-format
  - bookkeeper
  - bookkeeper-permissions
  - bookkeeping-jp
@@ -862,9 +717,6 @@ dont-distribute-packages:
  - boots-web
  - borel
  - both
- - bowntz
- - box-csv
- - box-socket
  - breakout
  - bricks
  - bricks-internal-test
@@ -882,11 +734,10 @@ dont-distribute-packages:
  - bulletproofs
  - bulmex
  - burnt-explorer
+ - bus-pirate
  - buster-gtk
  - buster-network
  - butterflies
- - bv-sized
- - bv-sized-lens
  - bytable
  - bytehash
  - bytelog
@@ -898,6 +749,8 @@ dont-distribute-packages:
  - cabal-cache
  - cabal-cargs
  - cabal-flatpak
+ - cabal-helper
+ - cabal-plan-bounds
  - cabal-query
  - cabal-test
  - cabal2arch
@@ -920,6 +773,7 @@ dont-distribute-packages:
  - cao
  - cap
  - capnp
+ - caps
  - captcha-2captcha
  - captcha-capmonster
  - captcha-core
@@ -960,9 +814,8 @@ dont-distribute-packages:
  - cfipu
  - cflp
  - cfopu
- - cgi-undecidable
- - cgi-utils
  - chainweb-mining-client
+ - chakra
  - chalkboard-viewer
  - chapelure
  - charade
@@ -970,7 +823,6 @@ dont-distribute-packages:
  - chart-svg
  - chart-svg-various
  - chart-unit
- - chassis
  - cheapskate-highlight
  - cheapskate-lucid
  - cheapskate-terminal
@@ -990,6 +842,7 @@ dont-distribute-packages:
  - chu2
  - chuchu
  - chunks
+ - circle
  - citation-resolve
  - citeproc-hs-pandoc-filter
  - clac
@@ -1013,14 +866,20 @@ dont-distribute-packages:
  - clckwrks
  - clckwrks-cli
  - clckwrks-dot-com
+ - clckwrks-plugin-bugs
  - clckwrks-plugin-ircbot
+ - clckwrks-plugin-mailinglist
  - clckwrks-plugin-media
  - clckwrks-plugin-page
  - clckwrks-plugin-redirect
  - clckwrks-theme-bootstrap
+ - clckwrks-theme-clckwrks
+ - clckwrks-theme-geo-bootstrap
  - cleff-plugin
  - cless
  - cleveland
+ - cli-git
+ - cli-nix
  - click-clack
  - clickhouse-haskell
  - clifford
@@ -1030,7 +889,9 @@ dont-distribute-packages:
  - cloud-seeder
  - cloudyfs
  - clr-bindings
+ - clr-inline
  - clua
+ - clustering
  - clustertools
  - clutterhs
  - cmathml3
@@ -1061,6 +922,7 @@ dont-distribute-packages:
  - columbia
  - columnar
  - comark
+ - combinat-diagrams
  - commsec
  - commsec-keyexchange
  - comonad-random
@@ -1068,51 +930,27 @@ dont-distribute-packages:
  - compact-mutable
  - compact-mutable-vector
  - compact-socket
- - compdata-automata
- - compdata-dags
- - compdata-param
- - compdoc
- - compdoc-dhall-decoder
  - complexity
- - composite-aeson
- - composite-aeson-cofree-list
- - composite-aeson-throw
- - composite-aeson-writeonly
- - composite-binary
- - composite-dhall
- - composite-ekg
- - composite-hashable
- - composite-ix
- - composite-lens-extra
- - composite-opaleye
- - composite-swagger
- - composite-tuple
- - composite-xml
- - composite-xstep
  - comprehensions-ghc
- - compstrat
- - comptrans
  - computational-algebra
  - concraft
  - concraft-hr
  - concraft-pl
  - concrete-haskell
  - concrete-haskell-autogen
+ - concurrency-benchmarks
  - condor
  - conductive-hsc3
  - conductive-song
  - conduit-throttle
  - conduit-vfs-zip
  - confcrypt
- - conferer-aeson
- - conferer-hedis
  - conferer-provider-dhall
  - conferer-provider-yaml
  - conferer-source-dhall
  - conferer-source-yaml
- - conferer-warp
- - conferer-yaml
  - conffmt
+ - confide
  - config-select
  - configifier
  - configurator-ng
@@ -1133,6 +971,7 @@ dont-distribute-packages:
  - control-monad-attempt
  - conversions
  - convert
+ - convert-annotation
  - convertible-ascii
  - convertible-text
  - coordinate
@@ -1143,6 +982,7 @@ dont-distribute-packages:
  - copilot-libraries
  - copilot-sbv
  - copilot-theorem
+ - corenlp-parser
  - coroutine-enumerator
  - coroutine-iteratee
  - couch-simple
@@ -1170,17 +1010,18 @@ dont-distribute-packages:
  - crf-chain2-generic
  - crf-chain2-tiers
  - criu-rpc
+ - criu-rpc-types
  - cron-compat
  - crypto-classical
  - crypto-conduit
  - crypto-pubkey
- - crypto-sodium
  - cryptocipher
  - cryptoids
  - cryptoids-class
  - cryptol
  - cryptonite-cd
  - crystalfontz
+ - csg
  - csound-catalog
  - csound-controllers
  - csound-expression
@@ -1191,6 +1032,7 @@ dont-distribute-packages:
  - csv-enumerator
  - ctpl
  - cube
+ - curryer-rpc
  - cv-combinators
  - cypher
  - daino
@@ -1206,8 +1048,8 @@ dont-distribute-packages:
  - data-basic
  - data-cycle
  - data-default-extra
- - data-diverse-lens
  - data-layer
+ - data-lens-ixset
  - data-object-json
  - data-object-yaml
  - data-result
@@ -1243,7 +1085,6 @@ dont-distribute-packages:
  - debug
  - decidable
  - decimal-arithmetic
- - declarative
  - dedukti
  - deeplearning-hs
  - deepzoom
@@ -1261,6 +1102,8 @@ dont-distribute-packages:
  - delta
  - delta-h
  - dep-t-advice
+ - dep-t-dynamic
+ - dep-t-value
  - dependent-literals
  - dependent-literals-plugin
  - dependent-state
@@ -1270,22 +1113,22 @@ dont-distribute-packages:
  - deptrack-dot
  - dequeue
  - derive-IG
+ - deriving-openapi3
  - descript-lang
  - detour-via-uom
  - devtools
  - dewdrop
  - dfinity-radix-tree
- - dhall-recursive-adt
  - dhall-secret
  - dia-functions
- - diagrams-haddock
- - diagrams-html5
- - diagrams-pandoc
  - diagrams-reflex
  - diagrams-wx
  - dialog
  - diff
  - difference-monoid
+ - differential
+ - digestive-foundation-lucid
+ - digestive-functors-heist
  - digestive-functors-hsp
  - dimensional-tf
  - dimensions
@@ -1299,8 +1142,8 @@ dont-distribute-packages:
  - discogs-haskell
  - discord-gateway
  - discord-hs
+ - discord-register
  - discord-rest
- - disposable
  - distributed-fork
  - distributed-fork-aws-lambda
  - distributed-process
@@ -1325,7 +1168,6 @@ dont-distribute-packages:
  - distribution-plot
  - dixi
  - dl-fedora
- - dl-fedora_0_9_5_1
  - dmenu-pkill
  - dmenu-pmount
  - dmenu-search
@@ -1337,11 +1179,10 @@ dont-distribute-packages:
  - dobutokO3
  - dobutokO4
  - doc-review
- - domain
- - domain-aeson
- - domain-cereal
+ - doi
  - domaindriven
  - dormouse-client
+ - dotparse
  - dovetail
  - dovetail-aeson
  - dow
@@ -1356,10 +1197,12 @@ dont-distribute-packages:
  - dropbox-sdk
  - dropsolve
  - dsh-sql
+ - dsmc
  - dsmc-tools
  - dtd
  - dvda
  - dynamic-cabal
+ - dynamic-pipeline
  - dynamic-plot
  - dynamic-pp
  - dynamodb-simple
@@ -1367,9 +1210,7 @@ dont-distribute-packages:
  - easytensor
  - easytensor-vulkan
  - ec2-unikernel
- - eccrypto-ed25519-bindings
  - ecdsa
- - ecta
  - edenskel
  - edentv
  - edge
@@ -1378,6 +1219,7 @@ dont-distribute-packages:
  - edits
  - effect-monad
  - effective-aspects-mzv
+ - eflint
  - egison
  - egison-pattern-src-haskell-mode
  - egison-pattern-src-th-mode
@@ -1386,7 +1228,6 @@ dont-distribute-packages:
  - ekg
  - ekg-carbon
  - ekg-cloudwatch
- - ekg-prometheus-adapter
  - ekg-wai
  - elasticsearch-interchange
  - electrs-client
@@ -1441,6 +1282,7 @@ dont-distribute-packages:
  - ethereum-merkle-patricia-db
  - eths-rlp
  - euphoria
+ - evdev-streamly
  - event-monad
  - eventful-core
  - eventful-dynamodb
@@ -1460,13 +1302,6 @@ dont-distribute-packages:
  - eventuo11y-prometheus
  - every-bit-counts
  - exference
- - exinst-aeson
- - exinst-base
- - exinst-bytes
- - exinst-cereal
- - exinst-deepseq
- - exinst-hashable
- - exinst-serialise
  - exist
  - exist-instances
  - expand
@@ -1479,16 +1314,17 @@ dont-distribute-packages:
  - expressions-z3
  - extemp
  - extended-containers-lens
+ - extensible-skeleton
  - extract-dependencies
  - factual-api
  - fadno
  - fair
+ - falling-turnip
  - fallingblocks
  - family-tree
  - fast-arithmetic
  - fast-bech32
  - fastcdc
- - fastcgi
  - fastirc
  - fault-tree
  - fay-base
@@ -1504,7 +1340,6 @@ dont-distribute-packages:
  - fay-websockets
  - fbrnch
  - fcd
- - fckeditor
  - feature-flipper-postgres
  - fedora-composes
  - fedora-img-dl
@@ -1515,12 +1350,14 @@ dont-distribute-packages:
  - feed2twitter
  - feedback
  - fei-base
+ - fei-cocoapi
  - fei-dataiter
  - fei-datasets
  - fei-examples
  - fei-modelzoo
  - fei-nn
  - feldspar-compiler
+ - feldspar-language
  - festung
  - fficxx
  - ffmpeg-tutorials
@@ -1547,6 +1384,7 @@ dont-distribute-packages:
  - flatbuffers
  - flexiwrap
  - flexiwrap-smallcheck
+ - flink-statefulfun
  - flite
  - flower
  - flowsim
@@ -1558,18 +1396,20 @@ dont-distribute-packages:
  - fluent-logger
  - fluent-logger-conduit
  - fmt-for-rio
+ - fn-extra
  - foldable1
  - foldl-transduce-attoparsec
  - follower
  - foo
+ - formal
  - format
  - format-status
+ - forml
  - formlets
  - formlets-hsp
  - forms-data-format
  - forsyde-deep
  - forth-hll
- - fortran-vars
  - foscam-directory
  - foscam-sort
  - fpco-api
@@ -1579,15 +1419,19 @@ dont-distribute-packages:
  - freckle-app
  - free-functors
  - free-game
- - free-theorems-counterexamples
- - free-theorems-seq
  - free-theorems-seq-webui
- - free-theorems-webui
  - freekick2
  - freelude
  - freer-converse
+ - freer-simple-catching
+ - freer-simple-http
+ - freer-simple-profiling
+ - freer-simple-random
+ - freer-simple-time
  - fresnel-fused-effects
+ - friday-devil
  - friday-juicypixels
+ - friday-scale-dct
  - front
  - frpnow-gloss
  - frpnow-gtk
@@ -1599,9 +1443,11 @@ dont-distribute-packages:
  - ftshell
  - funbot
  - funbot-git-hook
+ - funcons-lambda-cbv-mp
  - funcons-simple
  - funcons-tools
  - function-combine
+ - functional-arrow
  - functor
  - functor-combo
  - funflow
@@ -1612,12 +1458,16 @@ dont-distribute-packages:
  - fused-effects-squeal
  - fwgl-glfw
  - fwgl-javascript
+ - fxpak
  - g2
  - g2q
  - gact
  - galois-fft
+ - galois-field
+ - gamma
  - gargoyle-postgresql
  - gargoyle-postgresql-connect
+ - gargoyle-postgresql-nix
  - gbu
  - gdax
  - gdiff-ig
@@ -1625,15 +1475,17 @@ dont-distribute-packages:
  - gedcom
  - geek
  - geek-server
+ - gegl
  - gelatin-freetype2
  - gelatin-fruity
  - gelatin-gl
  - gelatin-sdl2
  - gelatin-shaders
- - gemini-router
  - gemini-textboard
+ - gencheck
  - generic-accessors
  - generic-override-aeson
+ - generic-xml
  - generics-mrsop-gdiff
  - genesis
  - genesis-test
@@ -1642,28 +1494,23 @@ dont-distribute-packages:
  - geniconvert
  - geniserver
  - genvalidity-network-uri
- - geo-uk
  - geodetic
  - geolite-csv
  - getemx
- - gf
  - ghc-dump-util
  - ghc-imported-from
  - ghc-instances
  - ghc-mod
+ - ghc-plugs-out
  - ghc-session
- - ghc-tags-pipes
- - ghc-tags-plugin
  - ghci-pretty
+ - ghcide-bench
  - ghcjs-dom-hello
  - ghcjs-dom-webkit
- - ghcjs-fetch
  - ghcjs-hplay
  - ghcup
  - ght
  - gi-cairo-again
- - gi-clutter
- - gi-coglpango
  - gi-ges
  - gi-gsk
  - gi-gstpbutils
@@ -1676,6 +1523,7 @@ dont-distribute-packages:
  - git-remote-ipfs
  - git-sanity
  - gitdo
+ - github-data
  - github-webhook-handler-snap
  - gitlib-cross
  - gitlib-s3
@@ -1894,6 +1742,7 @@ dont-distribute-packages:
  - google-drive
  - google-mail-filters
  - google-maps-geocoding
+ - google-static-maps
  - googleplus
  - gore-and-ash-actor
  - gore-and-ash-async
@@ -1929,6 +1778,7 @@ dont-distribute-packages:
  - grenade
  - greskell
  - greskell-websocket
+ - grid-proto
  - gridbounds
  - gridland
  - grisette
@@ -1962,9 +1812,9 @@ dont-distribute-packages:
  - gtkimageview
  - gtkrsync
  - guarded-rewriting
+ - guess-combinator
  - hArduino
  - hOff-display
- - hOpenPGP
  - hPDB
  - hPDB-examples
  - habit
@@ -1972,13 +1822,10 @@ dont-distribute-packages:
  - hablog
  - hack-contrib
  - hack-contrib-press
- - hack-frontend-monadcgi
  - hack-handler-epoll
  - hack-handler-evhttp
  - hack-handler-fastcgi
- - hack-handler-happstack
  - hack-handler-hyena
- - hack-handler-kibro
  - hack-handler-simpleserver
  - hack-middleware-cleanpath
  - hack-middleware-clientsession
@@ -1987,12 +1834,12 @@ dont-distribute-packages:
  - hack2-handler-happstack-server
  - hack2-handler-mongrel2-http
  - hack2-handler-snap-server
+ - hackage-cli
  - hackage2twitter
  - hackmanager
  - haddock
  - haddock_2_23_1
  - haddocset
- - hadolint
  - hadoop-tools
  - haggis
  - hailgun-send
@@ -2007,6 +1854,7 @@ dont-distribute-packages:
  - hall-symbols
  - halma-gui
  - halma-telegram-bot
+ - ham
  - hamilton
  - hamusic
  - hans-pcap
@@ -2020,10 +1868,10 @@ dont-distribute-packages:
  - happstack-data
  - happstack-dlg
  - happstack-facebook
- - happstack-fastcgi
  - happstack-fay
  - happstack-fay-ajax
  - happstack-foundation
+ - happstack-heist
  - happstack-helpers
  - happstack-ixset
  - happstack-plugins
@@ -2031,12 +1879,11 @@ dont-distribute-packages:
  - happstack-static-routing
  - happybara-webkit
  - haquil
- - harg
+ - hardware-edsl
  - hark
  - harmony
  - haroonga-httpd
  - has-th
- - hasbolt-extras
  - hascat
  - hascat-lib
  - hascat-setup
@@ -2045,8 +1892,10 @@ dont-distribute-packages:
  - hasherize
  - hashflare
  - hask-home
+ - haskanoid
  - haskdeep
  - haskeem
+ - haskell-abci
  - haskell-admin
  - haskell-admin-health
  - haskell-admin-managed-functions
@@ -2060,6 +1909,7 @@ dont-distribute-packages:
  - haskell-pdf-presenter
  - haskell-platform-test
  - haskell-reflect
+ - haskell-snake
  - haskell-src-exts-observe
  - haskell-token-utils
  - haskell-tools-ast
@@ -2097,6 +1947,7 @@ dont-distribute-packages:
  - haskelldb-hsql-sqlite3
  - haskelldb-th
  - haskelm
+ - haskey
  - haskey-mtl
  - haskgame
  - hasklepias
@@ -2127,6 +1978,7 @@ dont-distribute-packages:
  - hasql-postgres
  - hasql-postgres-options
  - hasql-streams-conduit
+ - hasql-streams-core
  - hasql-streams-example
  - hasql-streams-pipes
  - hasql-streams-streaming
@@ -2160,9 +2012,7 @@ dont-distribute-packages:
  - hdbi-postgresql
  - hdbi-sqlite
  - hdbi-tests
- - hdf
  - hdiff
- - hdigest
  - hdirect
  - hdocs
  - hdph
@@ -2174,8 +2024,12 @@ dont-distribute-packages:
  - heavy-logger-instances
  - hecc
  - hedgehog-checkers-lens
+ - hedgehog-gen
  - hedgehog-gen-json
  - hedis-pile
+ - heist-aeson
+ - heist-async
+ - heist-extra
  - helic
  - helics
  - helics-wai
@@ -2204,12 +2058,13 @@ dont-distribute-packages:
  - hfiar
  - hfractal
  - hgalib
- - hgdal
  - hgen
  - hgeometry
  - hgeometry-combinatorial
+ - hgeometry-ipe
  - hgeometry-svg
  - hgithub
+ - hi
  - hiccup
  - hie-core
  - hierarchical-clustering-diagrams
@@ -2225,6 +2080,7 @@ dont-distribute-packages:
  - hinze-streams
  - hip
  - hipbot
+ - hipe
  - hipsql-client
  - hipsql-server
  - hipsql-tx-simple
@@ -2236,7 +2092,6 @@ dont-distribute-packages:
  - hist-pl-lmf
  - hit
  - hit-graph
- - hix
  - hjsonschema
  - hjugement-cli
  - hlcm
@@ -2244,16 +2099,14 @@ dont-distribute-packages:
  - hls
  - hls-exactprint-utils
  - hmark
- - hmatrix-backprop
  - hmatrix-repa
  - hmatrix-sundials
  - hmeap
  - hmeap-utils
  - hmep
- - hmm-lapack
  - hmt-diagrams
+ - hnetcdf
  - hnormalise
- - ho-rewriting
  - hoauth2-demo
  - hoauth2-providers-tutorial
  - hob
@@ -2275,10 +2128,6 @@ dont-distribute-packages:
  - hoppy-docs
  - hoppy-runtime
  - hoppy-std
- - horizon-gen-nix
- - horizon-spec-lens
- - horizon-spec-pretty
- - horizontal-rule
  - hotswap
  - hp2any-graph
  - hp2any-manager
@@ -2286,6 +2135,7 @@ dont-distribute-packages:
  - hpaco-lib
  - hpage
  - hpaste
+ - hpath-directory
  - hpath-io
  - hpc-tracer
  - hplayground
@@ -2309,26 +2159,18 @@ dont-distribute-packages:
  - hs-pkpass
  - hs-sdl-term-emulator
  - hs2dot
- - hsaml2
  - hsautogui
  - hsbackup
  - hsbencher-codespeed
  - hsbencher-fusion
  - hsc3-auditor
- - hsc3-cairo
  - hsc3-data
- - hsc3-db
- - hsc3-dot
  - hsc3-forth
  - hsc3-graphs
- - hsc3-lang
  - hsc3-lisp
  - hsc3-plot
- - hsc3-process
- - hsc3-rec
  - hsc3-server
  - hsc3-sf-hsndfile
- - hsc3-unsafe
  - hsc3-utils
  - hscassandra
  - hscope
@@ -2337,10 +2179,12 @@ dont-distribute-packages:
  - hsfacter
  - hsinspect-lsp
  - hslogstash
+ - hsparql
  - hspec-expectations-pretty
  - hspec-pg-transact
  - hspec-setup
  - hspec-shouldbe
+ - hspec-snap
  - hspecVariant
  - hsprocess
  - hsql-mysql
@@ -2357,19 +2201,22 @@ dont-distribute-packages:
  - hswip
  - hsx-xhtml
  - hsyslog-tcp
- - htar
  - html-kure
  - html-parse-util
  - htoml-parse
  - htsn-import
  - http-client-auth
+ - http-client-restricted_0_1_0
  - http-client-rustls
- - http-client-tls_0_3_6_2
- - http-conduit_2_3_8_3
+ - http-client-tls_0_3_6_3
  - http-enumerator
+ - http-io-streams
+ - http-response-decoder
+ - http2-client-exe
  - http2-client-grpc
  - http2-grpc-proto-lens
  - http2-grpc-proto3-wire
+ - http3
  - https-everywhere-rules
  - https-everywhere-rules-raw
  - httpspec
@@ -2385,6 +2232,8 @@ dont-distribute-packages:
  - hw-all
  - hw-aws-sqs-conduit
  - hw-json
+ - hw-json-demo
+ - hw-json-lens
  - hw-json-simple-cursor
  - hw-json-standard-cursor
  - hw-uri
@@ -2411,8 +2260,6 @@ dont-distribute-packages:
  - hyena
  - hylotab
  - hyloutils
- - hyper-extra
- - hyper-haskell-server
  - hyperpublic
  - i
  - iException
@@ -2436,12 +2283,14 @@ dont-distribute-packages:
  - imj-base
  - imj-game-hamazed
  - imj-measure-stdout
+ - imm
  - imparse
+ - imperative-edsl
+ - imperative-edsl-vhdl
  - importify
  - imprevu-happstack
  - improve
  - inch
- - incipit
  - incremental-computing
  - incremental-maps
  - increments
@@ -2472,7 +2321,6 @@ dont-distribute-packages:
  - introduction-test
  - intset
  - invertible-hlist
- - invertible-hxt
  - ion
  - ipatch
  - ipc
@@ -2511,19 +2359,13 @@ dont-distribute-packages:
  - ivy-web
  - ix
  - ixset
- - ixset-typed-binary-instance
- - ixset-typed-cassava
- - ixset-typed-conversions
- - ixset-typed-hashable-instance
  - iyql
+ - j
  - j2hs
- - jackpolynomials
- - java-bridge
  - java-bridge-extras
  - java-character
  - java-reflect
  - javaclass
- - javascript-extras
  - javasf
  - jespresso
  - jmacro-rpc-happstack
@@ -2548,13 +2390,13 @@ dont-distribute-packages:
  - json-pointer-hasql
  - json-query
  - json-rpc-client
+ - json-schema
  - json-spec
  - json-spec-openapi
  - json-togo
  - json-tokens
  - json2-hdbc
  - json2sg
- - jsonrpc-conduit
  - jsons-to-schema
  - jspath
  - jvm
@@ -2590,12 +2432,10 @@ dont-distribute-packages:
  - keera-hails-reactivelenses
  - keera-posture
  - keid-resource-gltf
+ - keid-ui-dearimgui
  - kerry
  - kevin
  - key-vault
- - keyed-vals-hspec-tests
- - keyed-vals-mem
- - keyed-vals-redis
  - keyring
  - keysafe
  - keyvaluehash
@@ -2621,13 +2461,12 @@ dont-distribute-packages:
  - labsat
  - labyrinth
  - labyrinth-server
- - lackey
+ - lagrangian
  - laika
  - lambda-devs
  - lambda-options
  - lambdaFeed
  - lambdaLit
- - lambdabot-telegram-plugins
  - lambdabot-zulip
  - lambdacat
  - lambdacms-media
@@ -2640,6 +2479,7 @@ dont-distribute-packages:
  - lambdacube-samples
  - lambdaya-bus
  - lambdiff
+ - lame-tester
  - landlock
  - lang
  - language-Modula2
@@ -2652,8 +2492,6 @@ dont-distribute-packages:
  - language-python-colour
  - language-qux
  - language-spelling
- - lapack
- - lapack-hmatrix
  - large-anon
  - large-records
  - lat
@@ -2665,7 +2503,6 @@ dont-distribute-packages:
  - layered-state
  - layers-game
  - layouting
- - lazy-hash
  - lazy-hash-cache
  - lda
  - ldap-scim-bridge
@@ -2696,7 +2533,6 @@ dont-distribute-packages:
  - libmolude
  - libraft
  - librato
- - libssh2-conduit
  - libxml-enumerator
  - lifted-base-tf
  - lightning-haskell
@@ -2704,18 +2540,16 @@ dont-distribute-packages:
  - lighttpd-conf
  - lighttpd-conf-qq
  - linear-accelerate
- - linear-circuit
  - linear-code
  - linearEqSolver
- - linearmap-category
  - linearscan-hoopl
  - linkchk
  - linkcore
+ - linnet
  - linnet-aeson
  - linnet-conduit
  - linux-ptrace
  - lio-eci11
- - lio-simple
  - lion
  - liquid-base
  - liquid-bytestring
@@ -2732,6 +2566,8 @@ dont-distribute-packages:
  - list-tuple
  - list-witnesses
  - listenbrainz-client
+ - liszt
+ - lit
  - live-sequencer
  - llvm
  - llvm-analysis
@@ -2740,6 +2576,7 @@ dont-distribute-packages:
  - llvm-data-interop
  - llvm-dsl
  - llvm-extension
+ - llvm-extra
  - llvm-general
  - llvm-general-quote
  - llvm-hs-pretty
@@ -2753,8 +2590,6 @@ dont-distribute-packages:
  - locked-poll
  - log
  - log-effect-syslog
- - log-effectful
- - log-elasticsearch
  - log-postgres
  - log-utils
  - log4hs
@@ -2796,7 +2631,6 @@ dont-distribute-packages:
  - macosx-make-standalone
  - magic-wormhole
  - magicbane
- - magico
  - mahoro
  - maid
  - mailgun
@@ -2820,9 +2654,9 @@ dont-distribute-packages:
  - manatee-template
  - manatee-terminal
  - manatee-welcome
+ - mangopay
  - mangrove
  - manifold-random
- - manifolds
  - marionetta
  - markdown-pap
  - markdown2svg
@@ -2832,6 +2666,7 @@ dont-distribute-packages:
  - marquise
  - marvin
  - masakazu-bot
+ - massiv-persist
  - matchers
  - math-programming-glpk
  - math-programming-tests
@@ -2848,7 +2683,6 @@ dont-distribute-packages:
  - mellon-gpio
  - mellon-web
  - memcache-conduit
- - memis
  - memory-cd
  - memory-hexstring
  - merkle-patricia-db
@@ -2864,11 +2698,13 @@ dont-distribute-packages:
  - minecraft-data
  - minesweeper
  - mini-egison
+ - minilight
  - minilight-lua
  - minimung
  - minioperational
  - minirotate
  - mismi-kernel
+ - mismi-s3-core
  - miss
  - miss-porcelain
  - missing-py2
@@ -2876,10 +2712,11 @@ dont-distribute-packages:
  - mkbndl
  - mlist
  - mmsyn6ukr
- - mmsyn6ukr-array
  - mmsyn7h
+ - mmsyn7l
  - mmsyn7s
  - mmsyn7ukr
+ - mmsyn7ukr-array
  - mmtl-base
  - moan
  - modify-fasta
@@ -2898,10 +2735,10 @@ dont-distribute-packages:
  - monetdb-mapi
  - mongrel2-handler
  - monky
- - monoidmap
- - monomer-hagrid
+ - monomer-flatpak-example
  - monte-carlo
  - moo
+ - moo-nad
  - moonshine
  - morley
  - morley-client
@@ -2929,6 +2766,7 @@ dont-distribute-packages:
  - msgpack-rpc-conduit
  - msgpack-testsuite
  - msi-kb-backlit
+ - mtgoxapi
  - mu-avro
  - mu-graphql
  - mu-grpc-client
@@ -2955,7 +2793,6 @@ dont-distribute-packages:
  - multirec-alt-deriver
  - multirec-binary
  - multisetrewrite
- - multivariant
  - murder
  - murmurhash3
  - mushu
@@ -2977,18 +2814,18 @@ dont-distribute-packages:
  - mxnet-examples
  - mxnet-nn
  - myTestlll
- - mybitcoin-sci
+ - mysnapsession
  - mysnapsession-example
- - mysql-haskell
  - mysql-haskell-nem
  - mysql-haskell-openssl
  - mysql-simple-typed
  - mywatch
+ - mywork
  - n2o-web
  - nakadi-client
  - named-servant-client
  - named-servant-server
- - named-text
+ - nanq
  - nats-queue
  - natural-number
  - nemesis-titan
@@ -2996,6 +2833,8 @@ dont-distribute-packages:
  - nero-wai
  - nero-warp
  - nested-routes
+ - net-mqtt_0_8_5_0
+ - net-spider
  - net-spider-cli
  - net-spider-pangraph
  - net-spider-rpl
@@ -3019,6 +2858,7 @@ dont-distribute-packages:
  - network-rpca
  - network-stream
  - network-topic-models
+ - network-unexceptional
  - network-uri-json
  - network-websocket
  - neural
@@ -3046,22 +2886,23 @@ dont-distribute-packages:
  - nri-kafka
  - nri-observability
  - nri-postgresql
+ - nri-prelude
  - nri-redis
  - nri-test-encoding
  - numerals-base
  - numeric-kinds
  - numeric-ode
- - numeric-optimization-backprop
  - numerical
  - numhask-hedgehog
+ - numhask-histogram
  - numhask-range
  - numhask-test
  - nyan
- - nyan-interpolation
- - nyan-interpolation-simple
  - nymphaea
+ - nyx-game
  - oath
  - oauth2-jwt-bearer
+ - obd
  - obdd
  - oberon0
  - obj
@@ -3081,18 +2922,14 @@ dont-distribute-packages:
  - ogma-language-fret-reqs
  - ois-input-manager
  - olwrapper
- - om-fork
- - om-http
  - om-kubernetes
  - om-legion
- - om-logging
- - om-socket
- - online
  - online-csv
  - opc-xml-da-client
  - open-adt-tutorial
+ - open-typerep
+ - opencv
  - opencv-extra
- - openpgp
  - openpgp-Crypto
  - openpgp-crypto-api
  - openssh-github-keys
@@ -3104,7 +2941,6 @@ dont-distribute-packages:
  - opentracing-zipkin-common
  - opentracing-zipkin-v1
  - opentracing-zipkin-v2
- - oplang
  - optima-for-hasql
  - optimal-blocks
  - optimusprime
@@ -3116,13 +2952,17 @@ dont-distribute-packages:
  - osm-download
  - otp-authenticator
  - outsort
+ - overeasy
+ - overload
  - package-o-tron
  - padKONTROL
+ - pagerduty
  - pairing
  - panda
  - pandoc-highlighting-extensions
  - pandoc-japanese-filters
  - pandora-io
+ - panfiguration
  - papa
  - papa-base
  - papa-base-implement
@@ -3131,8 +2971,8 @@ dont-distribute-packages:
  - papa-lens
  - papa-semigroupoids
  - paprika
+ - par-dual
  - parallel-tree-search
- - parameterized
  - parco-attoparsec
  - parco-parsec
  - parconc-examples
@@ -3140,12 +2980,14 @@ dont-distribute-packages:
  - parse-help
  - parsestar
  - parsley
- - parsley-core
  - parsley-garnish
+ - partage
  - passman-cli
  - patch-image
  - path-text-utf8_0_0_2_0
+ - pathfindingcore
  - patterns
+ - paypal-rest-client
  - pcap-enumerator
  - pcapng
  - pcf
@@ -3162,6 +3004,7 @@ dont-distribute-packages:
  - peparser
  - perceptual-hash
  - perdure
+ - perf
  - perf-analysis
  - perfecthash
  - periodic-client
@@ -3178,43 +3021,35 @@ dont-distribute-packages:
  - persistent-map
  - persistent-mtl
  - persistent-mysql-haskell
+ - persistent-mysql-pure
  - persistent-protobuf
  - persistent-relational-record
  - persona-idp
  - peyotls
  - peyotls-codec
  - pg-entity
- - phatsort
- - phladiprelio-general-shared
- - phladiprelio-general-simple
- - phladiprelio-ukrainian-shared
- - phladiprelio-ukrainian-simple
  - phonetic-languages-common
  - phonetic-languages-constraints
  - phonetic-languages-examples
  - phonetic-languages-general
  - phonetic-languages-permutations
  - phonetic-languages-properties
- - phonetic-languages-simplified-base
  - phonetic-languages-simplified-common
  - phonetic-languages-simplified-examples-array
  - phonetic-languages-simplified-examples-common
- - phonetic-languages-simplified-generalized-examples-array
- - phonetic-languages-simplified-generalized-examples-common
- - phonetic-languages-simplified-generalized-properties-array
  - phonetic-languages-simplified-lists-examples
- - phonetic-languages-simplified-properties-array
  - phonetic-languages-simplified-properties-lists
  - phonetic-languages-simplified-properties-lists-double
  - phonetic-languages-ukrainian
  - phooey
+ - phybin
  - pianola
  - pier
+ - pine
  - ping
  - pinpon
  - pipe-enumerator
  - pipes-attoparsec-streaming
- - pipes-bzip
  - pipes-cacophony
  - pipes-cereal-plus
  - pipes-conduit
@@ -3234,37 +3069,35 @@ dont-distribute-packages:
  - planet-mitchell
  - playlists-http
  - plocketed
- - plow-log-async
  - plugins-auto
  - png-file
  - pngload
  - point-octree
  - pointless-lenses
  - pointless-rewrite
+ - poke
  - poker
  - polh-lexicon
  - polydata
- - polyglot
  - polysemy-RandomFu
  - polysemy-account
  - polysemy-account-api
- - polysemy-conc
  - polysemy-db
  - polysemy-extra
  - polysemy-fskvstore
  - polysemy-hasql
  - polysemy-hasql-test
  - polysemy-http
- - polysemy-log
+ - polysemy-kvstore-jsonfile
  - polysemy-log-co
- - polysemy-log-di
  - polysemy-methodology
+ - polysemy-methodology-co-log
  - polysemy-methodology-composite
- - polysemy-optics
- - polysemy-process
+ - polysemy-path
  - polysemy-scoped-fs
  - polysemy-uncontrolled
- - polyseq
+ - polysemy-video
+ - polysemy-vinyl
  - polytypeable-utils
  - pomodoro
  - pontarius-mediaserver
@@ -3296,7 +3129,6 @@ dont-distribute-packages:
  - pred-set
  - pred-trie
  - prednote-test
- - prefork
  - prelate
  - presto-hdbc
  - pretty-diff
@@ -3316,30 +3148,29 @@ dont-distribute-packages:
  - product
  - prof2dot
  - progressbar
+ - project-m36
  - prolog-graph
  - prolog-graph-lib
  - prologue
  - prolude
- - prometheus-wai-middleware
- - proof-assistant-bot
  - propane
  - proplang
  - prosidyc
+ - proto-lens-combinators
  - proto-lens-descriptors
  - proto-lens-protobuf-types
  - proto-lens-protoc
  - proto-lens-setup
  - proto3-suite
- - proto3-wire
  - protobuf-native
  - protocol-buffers-descriptor
  - protocol-buffers-descriptor-fork
  - proton
+ - psc-ide
  - psql
  - ptera
  - ptera-core
  - ptera-th
- - pubsub
  - puffytools
  - pugs-compat
  - pugs-hsregex
@@ -3350,6 +3181,7 @@ dont-distribute-packages:
  - purenix
  - purescript
  - purescript-iso
+ - purescript-tsd-gen
  - pursuit-client
  - push-notify
  - push-notify-apn
@@ -3375,6 +3207,7 @@ dont-distribute-packages:
  - queryparser-vertica
  - queuelike
  - quickbench
+ - quickcheck-lockstep
  - quickcheck-poly
  - quickcheck-regex
  - quickcheck-relaxng
@@ -3436,13 +3269,10 @@ dont-distribute-packages:
  - rdioh
  - react-flux-servant
  - reactive
- - reactive-balsa
  - reactive-banana-sdl
  - reactive-banana-wx
  - reactive-fieldtrip
  - reactive-glut
- - reactive-jack
- - reactive-midyim
  - reactor
  - readline-in-other-words
  - readpyc
@@ -3454,7 +3284,6 @@ dont-distribute-packages:
  - records-th
  - recursion-schemes-ix
  - redHandlers
- - redact
  - reddit
  - redis-io
  - redis-resp
@@ -3468,12 +3297,14 @@ dont-distribute-packages:
  - reflex-gadt-api
  - reflex-ghci
  - reflex-gloss-scene
+ - reflex-libtelnet
  - reflex-localize
  - reflex-localize-dom
  - reflex-monad-auth
  - reflex-potatoes
  - reflex-process
  - refractor
+ - refurb
  - reg-alloc-graph-color
  - regex-deriv
  - regex-genex
@@ -3509,22 +3340,27 @@ dont-distribute-packages:
  - remotion
  - repa-algorithms
  - repa-array
+ - repa-bytestring
  - repa-convert
+ - repa-devil
+ - repa-examples
  - repa-fftw
  - repa-flow
  - repa-io
+ - repa-linear-algebra
  - repa-plugin
  - repa-sndfile
  - repa-stream
  - repa-v4l2
  - replicant
+ - repo-based-blog
  - repr
  - representable-tries
  - req_3_13_1
  - reserve
  - resin
- - resistor-cube
  - resource-simple
+ - respond
  - rest-client
  - rest-core
  - rest-example
@@ -3559,6 +3395,7 @@ dont-distribute-packages:
  - ribosome-host-test
  - ribosome-root
  - ribosome-test
+ - ridley
  - ridley-extras
  - rio-process-pool
  - riot
@@ -3585,6 +3422,7 @@ dont-distribute-packages:
  - rose-trie
  - roshask
  - rosmsg-bin
+ - rounded
  - rounded-hw
  - roundtrip-xml
  - route-generator
@@ -3622,6 +3460,7 @@ dont-distribute-packages:
  - samtools-enumerator
  - samtools-iteratee
  - sarsi
+ - sasha
  - sasl
  - sat-micro-hs
  - satchmo-examples
@@ -3631,6 +3470,7 @@ dont-distribute-packages:
  - sbv-program
  - sbvPlugin
  - sc2-lowlevel
+ - sc2-proto
  - sc2-support
  - sc2hs
  - sc3-rdu
@@ -3639,7 +3479,6 @@ dont-distribute-packages:
  - scalpel-search
  - scan-metadata
  - scan-vector-machine
- - scgi
  - scheduling
  - schematic
  - scholdoc
@@ -3653,11 +3492,11 @@ dont-distribute-packages:
  - scotty-form
  - scotty-hastache
  - scotty-haxl
+ - scotty-params-parser
  - scp-streams
  - scrabble-bot
  - scrapbook
  - scroll
- - scubature
  - sdl2-sprite
  - sdp-binary
  - sdp-deepseq
@@ -3674,11 +3513,12 @@ dont-distribute-packages:
  - sednaDBXML
  - seitz-symbol
  - selda-json
+ - selda-postgresql
  - selda-sqlite
  - selenium-server
- - self-extract
  - semantic-source
  - semi-iso
+ - semialign-extras
  - semiring
  - semiring-num
  - sensenet
@@ -3691,13 +3531,13 @@ dont-distribute-packages:
  - serpentine
  - serv
  - serv-wai
+ - servant-auth-hmac
  - servant-auth-token
  - servant-auth-token-acid
  - servant-auth-token-api
  - servant-auth-token-leveldb
  - servant-auth-token-persistent
  - servant-auth-token-rocksdb
- - servant-cli
  - servant-client-namedargs
  - servant-csharp
  - servant-db-postgresql
@@ -3705,48 +3545,41 @@ dont-distribute-packages:
  - servant-ekg
  - servant-examples
  - servant-haxl-client
- - servant-js
+ - servant-http2-client
  - servant-matrix-param
- - servant-multipart
- - servant-multipart-client
+ - servant-mock
  - servant-oauth2
  - servant-oauth2-examples
  - servant-openapi3
- - servant-options
- - servant-polysemy
  - servant-postgresql
+ - servant-proto-lens
  - servant-pushbullet-client
  - servant-queryparam-openapi3
  - servant-rate-limit
  - servant-reason
- - servant-ruby
  - servant-serialization
  - servant-server-namedargs
  - servant-snap
  - servant-streaming-client
  - servant-streaming-docs
  - servant-streaming-server
- - servant-subscriber
  - servant-swagger-tags
  - servant-to-elm
- - servant-typescript
  - servant-util
  - servant-util-beam-pg
  - servant-waargonaut
  - servant-zeppelin-client
  - servant-zeppelin-server
  - servant-zeppelin-swagger
- - serverless-haskell
+ - serversession-frontend-snap
+ - ses-html-snaplet
  - sessiontypes-distributed
  - sgf
  - sgrep
- - sha1
  - shady-gen
  - shady-graphics
  - shake-bindist
  - shake-minify-css
- - shake-pack
- - shake-plus-extended
  - shakebook
  - shaker
  - shapefile
@@ -3755,6 +3588,7 @@ dont-distribute-packages:
  - shelduck
  - shellmate-extras
  - shine-varying
+ - short-vec
  - short-vec-lens
  - showdown
  - shpider
@@ -3762,19 +3596,19 @@ dont-distribute-packages:
  - si-clock
  - sibe
  - sigma-ij
+ - signable
+ - signable-haskell-protoc
  - signals
  - signature
- - signify-hs
  - silvi
  - simgi
- - simple
  - simple-c-value
  - simple-firewire
  - simple-log-syslog
+ - simple-logging
  - simple-nix
  - simple-pascal
  - simple-postgresql-orm
- - simple-session
  - simpleirc-lens
  - simseq
  - siphon
@@ -3790,7 +3624,6 @@ dont-distribute-packages:
  - smallcheck-laws
  - smallcheck-lens
  - smallstring
- - smarties
  - smartword
  - smash-aeson
  - smash-lens
@@ -3800,33 +3633,62 @@ dont-distribute-packages:
  - smith-cli
  - smith-client
  - smt
- - smtlib-backends-process
- - smtlib-backends-tests
- - smtlib-backends-z3
  - smtlib2-debug
  - smtlib2-pipe
  - smtlib2-quickcheck
  - smtlib2-timing
  - smtp2mta
+ - snap
+ - snap-auth-cli
  - snap-elm
+ - snap-error-collector
  - snap-extras
+ - snap-routes
+ - snap-testing
+ - snap-utils
+ - snap-web-routes
+ - snaplet-acid-state
  - snaplet-actionlog
+ - snaplet-amqp
+ - snaplet-auth-acid
+ - snaplet-coffee
+ - snaplet-css-min
  - snaplet-customauth
+ - snaplet-environments
  - snaplet-fay
+ - snaplet-ghcjs
  - snaplet-hasql
  - snaplet-haxl
  - snaplet-hdbc
+ - snaplet-hslogger
+ - snaplet-i18n
+ - snaplet-influxdb
  - snaplet-lss
+ - snaplet-mandrill
  - snaplet-mongoDB
+ - snaplet-mongodb-minimalistic
+ - snaplet-mysql-simple
  - snaplet-oauth
+ - snaplet-persistent
+ - snaplet-postgresql-simple
  - snaplet-postmark
+ - snaplet-purescript
+ - snaplet-recaptcha
+ - snaplet-redis
  - snaplet-redson
  - snaplet-rest
  - snaplet-riak
+ - snaplet-sass
+ - snaplet-scoped-session
  - snaplet-sedna
+ - snaplet-ses-html
+ - snaplet-sqlite-simple
+ - snaplet-sqlite-simple-jwt-auth
  - snaplet-stripe
  - snaplet-tasks
+ - snaplet-typed-sessions
  - snaplet-wordpress
+ - snappy-iteratee
  - sndfile-enumerators
  - sneakyterm
  - sneathlane-haste
@@ -3838,16 +3700,16 @@ dont-distribute-packages:
  - snumber
  - sock2stream
  - socket-io
+ - sockets
  - socketson
  - solga-swagger
  - solr
- - sonic-visualiser
  - souffle-dsl
  - source-code-server
+ - spade
  - sparkle
  - sparrow
  - sparsebit
- - sparser
  - spartacon
  - spata
  - spatial-math_0_5_0_1
@@ -3866,7 +3728,6 @@ dont-distribute-packages:
  - sproxy
  - sproxy-web
  - sproxy2
- - sqel
  - sql-simple-mysql
  - sql-simple-pool
  - sql-simple-postgresql
@@ -3878,6 +3739,7 @@ dont-distribute-packages:
  - squeal-postgresql-uuid-ossp
  - squeeze
  - sr-extra
+ - srt-dhall
  - srt-formatting
  - sscgi
  - sshd-lint
@@ -3896,17 +3758,15 @@ dont-distribute-packages:
  - stackage-setup
  - stackage-upload
  - stackage2nix
- - stan
+ - stackctl
  - starrover2
  - stateful-mtl
  - static-closure
+ - statistics-dirichlet
  - statsd-client
  - statsdi
- - stdcxx
  - steeloverseer
  - stern-brocot
- - stm-actor
- - stm-supply
  - stmcontrol
  - storablevector-streamfusion
  - stratum-tool
@@ -3915,14 +3775,15 @@ dont-distribute-packages:
  - stratux-http
  - stratux-websockets
  - streaming-base64
+ - streaming-concurrency
  - streaming-fft
  - streaming-process
+ - streaming-sort
  - strelka
  - strelka-wai
  - strict-containers-lens
  - strict-containers-serialise
  - strict-data
- - string-interpreter
  - string-typelits
  - stripe-haskell
  - stripe-http-client
@@ -3939,6 +3800,7 @@ dont-distribute-packages:
  - sugar-json
  - sugar-scheme
  - summoner-tui
+ - sump
  - sunroof-examples
  - sunroof-server
  - supercollider-ht
@@ -3953,6 +3815,7 @@ dont-distribute-packages:
  - swapper
  - sweet-egison
  - switch
+ - syb-with-class-instances-text
  - sydtest-amqp
  - sydtest-webdriver-screenshot
  - sydtest-webdriver-yesod
@@ -3978,13 +3841,16 @@ dont-distribute-packages:
  - systemstats
  - t3-client
  - ta
- - tableaux
  - tag-stream
  - tagged-list
  - tagged-th
  - tagsoup-navigate
  - tagstew
+ - tahoe-chk
+ - tahoe-great-black-swamp
+ - tahoe-ssk
  - tak-ai
+ - takahashi
  - tal
  - talash
  - tamarin-prover
@@ -3995,7 +3861,6 @@ dont-distribute-packages:
  - task
  - task-distribution
  - tasty-bdd
- - tasty-checklist
  - tasty-groundhog-converters
  - tasty-hspec_1_2_0_4
  - tasty-integrate
@@ -4005,21 +3870,16 @@ dont-distribute-packages:
  - tasty-sugar
  - tateti-tateti
  - tbox
- - tcache-AWS
  - tccli
+ - tcod-haskell
+ - tdd-util
  - techlab
  - telegram-bot
- - telegram-bot-api
- - telegram-bot-simple
  - telegram-raw-api
  - temporal-csound
  - ten-lens
  - ten-unordered-containers
- - tensorflow
- - tensorflow-core-ops
- - tensorflow-logging
  - tensorflow-opgen
- - tensorflow-ops
  - tensorflow-proto
  - terminal-text
  - terrahs
@@ -4041,6 +3901,7 @@ dont-distribute-packages:
  - thumbnail-polish
  - tic-tac-toe
  - tickle
+ - tidal-serial
  - tighttp
  - timberc
  - time-exts
@@ -4051,6 +3912,7 @@ dont-distribute-packages:
  - timezone-unix
  - tinkoff-invest-sdk
  - tintin
+ - tinyMesh
  - tinytools
  - tinytools-vty
  - tip-haskell-frontend
@@ -4067,6 +3929,7 @@ dont-distribute-packages:
  - to-string-instances
  - toboggan
  - todos
+ - tokstyle
  - toktok
  - tomlcheck
  - tonatona
@@ -4087,7 +3950,6 @@ dont-distribute-packages:
  - trajectory
  - trans-fx-data
  - trans-fx-io
- - transf
  - transfer-db
  - transformations
  - transformers-convert
@@ -4107,13 +3969,16 @@ dont-distribute-packages:
  - trek-app
  - trek-db
  - triangulation
+ - trigger
  - trimpolya
  - trurl
  - tsession-happstack
  - tsweb
  - tuntap-simple
  - tup-functor
- - tuple-append-instances
+ - tuple-gen
+ - tuple-hlist
+ - tuple-morph
  - tuple-ops
  - turingMachine
  - twee
@@ -4124,9 +3989,11 @@ dont-distribute-packages:
  - twentefp-rosetree
  - twentefp-trees
  - twentyseven
+ - twfy-api-client
  - twidge
  - twilight-stm
  - twill
+ - twirl
  - twitter-enumerator
  - txt
  - type-assertions
@@ -4168,11 +4035,7 @@ dont-distribute-packages:
  - uni-uDrawGraph
  - unicode-normalization
  - unicoder
- - uniform-http
  - uniform-io
- - uniform-latex2pdf
- - uniform-pandoc
- - uniform-shake
  - uniform-watch
  - uniqueness-periods
  - uniqueness-periods-vector-examples
@@ -4180,6 +4043,7 @@ dont-distribute-packages:
  - uniqueness-periods-vector-general
  - uniqueness-periods-vector-properties
  - unitym-servant
+ - unitym-yesod
  - universal
  - universe
  - universe-dependent-sum
@@ -4263,11 +4127,9 @@ dont-distribute-packages:
  - wahsp
  - wai-devel
  - wai-dispatch
- - wai-frontend-monadcgi
  - wai-handler-hal
  - wai-handler-snap
  - wai-hastache
- - wai-log
  - wai-middleware-brotli
  - wai-middleware-cache
  - wai-middleware-cache-redis
@@ -4275,8 +4137,9 @@ dont-distribute-packages:
  - wai-middleware-content-type
  - wai-middleware-rollbar
  - wai-middleware-route
- - wai-middleware-throttle
+ - wai-middleware-validation
  - wai-middleware-verbs
+ - wai-predicates
  - wai-route
  - wai-routing
  - wai-session-alt
@@ -4290,9 +4153,8 @@ dont-distribute-packages:
  - wavesurfer
  - wavy
  - weatherhs
- - web-inv-route
+ - web-fpco
  - web-mongrel2
- - web-rep
  - web-routes-regular
  - web-routing
  - web3
@@ -4302,7 +4164,6 @@ dont-distribute-packages:
  - web3-polkadot
  - web3-provider
  - web3-solidity
- - webcloud
  - webcrank-wai
  - webdriver-w3c
  - webgear-openapi
@@ -4312,6 +4173,7 @@ dont-distribute-packages:
  - websockets-rpc
  - websockets-simple
  - websockets-simple-extra
+ - weekdaze
  - weierstrass-functions
  - weighted
  - werewolf-slack
@@ -4326,6 +4188,7 @@ dont-distribute-packages:
  - wild-bind-indicator
  - wild-bind-task-x11
  - wild-bind-x11
+ - windowslive
  - winery
  - winio
  - wire-streams
@@ -4346,7 +4209,6 @@ dont-distribute-packages:
  - wsjtx-udp
  - wtk-gtk
  - wu-wei
- - wuerfelschlange
  - wumpus-basic
  - wumpus-drawing
  - wumpus-microprint
@@ -4362,7 +4224,6 @@ dont-distribute-packages:
  - wxturtle
  - wyvern
  - xdcc
- - xdg-basedir-compliant
  - xhb-atom-cache
  - xhb-ewmh
  - xml-catalog
@@ -4373,6 +4234,7 @@ dont-distribute-packages:
  - xml-pipe
  - xml-push
  - xml-query-xml-conduit
+ - xml-query-xml-types
  - xml-tydom-conduit
  - xml2x
  - xmltv
@@ -4402,7 +4264,6 @@ dont-distribute-packages:
  - yaml-rpc-snap
  - yaml-streamly
  - yarr-image-io
- - yasi
  - yavie
  - ycextra
  - yeamer
@@ -4451,11 +4312,11 @@ dont-distribute-packages:
  - yu-launch
  - yuuko
  - zasni-gerna
+ - zephyr
  - zephyr-copilot
  - zerobin
  - zeromq3-conduit
  - zeroth
- - zeugma
  - zifter-cabal
  - zifter-git
  - zifter-google-java-format
diff --git a/nixpkgs/pkgs/development/haskell-modules/configuration-nix.nix b/nixpkgs/pkgs/development/haskell-modules/configuration-nix.nix
index 6b8e254c3af9..6242b5af6f4f 100644
--- a/nixpkgs/pkgs/development/haskell-modules/configuration-nix.nix
+++ b/nixpkgs/pkgs/development/haskell-modules/configuration-nix.nix
@@ -69,7 +69,7 @@ self: super: builtins.intersectAttrs super {
         -e "s/@@GHC_VERSION@@/${self.ghc.version}/" \
         -e "s/@@BOOT_PKGS@@/$BOOT_PKGS/" \
         -e "s/@@ABI_HASHES@@/$(for dep in $BOOT_PKGS; do printf "%s:" "$dep" && ghc-pkg-${self.ghc.version} field $dep abi --simple-output ; done | tr '\n' ' ' | xargs)/" \
-        -e "s!Consider installing ghc.* via ghcup or build HLS from source.!Visit https://haskell4nix.readthedocs.io/nixpkgs-users-guide.html#how-to-install-haskell-language-server to learn how to correctly install a matching hls for your ghc with nix.!" \
+        -e "s!Consider installing ghc.* via ghcup or build HLS from source.!Visit https://nixos.org/manual/nixpkgs/unstable/#haskell-language-server to learn how to correctly install a matching hls for your ghc with nix.!" \
         bindist/wrapper.in > "$out/bin/haskell-language-server"
       ln -s "$out/bin/haskell-language-server" "$out/bin/haskell-language-server-${self.ghc.version}"
       chmod +x "$out/bin/haskell-language-server"
@@ -123,7 +123,6 @@ self: super: builtins.intersectAttrs super {
     hls-brittany-plugin
     hls-floskell-plugin
     hls-fourmolu-plugin
-    hls-cabal-plugin
     hls-overloaded-record-dot-plugin
   ;
 
@@ -134,6 +133,7 @@ self: super: builtins.intersectAttrs super {
     hls-gadt-plugin
 
     # https://github.com/haskell/haskell-language-server/pull/3431
+    hls-cabal-plugin
     hls-cabal-fmt-plugin
     hls-code-range-plugin
     hls-explicit-record-fields-plugin
@@ -452,6 +452,8 @@ self: super: builtins.intersectAttrs super {
   wxc = (addBuildDepend self.split super.wxc).override { wxGTK = pkgs.wxGTK32; };
   wxcore = super.wxcore.override { wxGTK = pkgs.wxGTK32; };
 
+  shellify = enableSeparateBinOutput super.shellify;
+
   # Test suite wants to connect to $DISPLAY.
   bindings-GLFW = dontCheck super.bindings-GLFW;
   gi-gtk-declarative = dontCheck super.gi-gtk-declarative;
@@ -599,7 +601,17 @@ self: super: builtins.intersectAttrs super {
   #
   # Additional note: nixpkgs' freeglut and macOS's OpenGL implementation do not cooperate,
   # so disable this on Darwin only
-  ${if pkgs.stdenv.isDarwin then null else "GLUT"} = addPkgconfigDepend pkgs.freeglut (appendPatch ./patches/GLUT.patch super.GLUT);
+  ${if pkgs.stdenv.isDarwin then null else "GLUT"} = overrideCabal (drv: {
+    pkg-configDepends = drv.pkg-configDepends or [] ++ [
+      pkgs.freeglut
+    ];
+    patches = drv.patches or [] ++ [
+      ./patches/GLUT.patch
+    ];
+    prePatch = drv.prePatch or "" + ''
+      ${lib.getBin pkgs.buildPackages.dos2unix}/bin/dos2unix *.cabal
+    '';
+  }) super.GLUT;
 
   libsystemd-journal = doJailbreak (addExtraLibrary pkgs.systemd super.libsystemd-journal);
 
diff --git a/nixpkgs/pkgs/development/haskell-modules/hackage-packages.nix b/nixpkgs/pkgs/development/haskell-modules/hackage-packages.nix
index 3d7bcf49a143..d6cc9f68a091 100644
--- a/nixpkgs/pkgs/development/haskell-modules/hackage-packages.nix
+++ b/nixpkgs/pkgs/development/haskell-modules/hackage-packages.nix
@@ -546,6 +546,8 @@ self: {
        pname = "ALUT";
        version = "2.4.0.3";
        sha256 = "04nrh7vribs4jvg99hj3fmshzcw6kkf45r842iys19ln3l51p2bi";
+       revision = "1";
+       editedCabalFile = "1im8j56gwv8ask7f2gqbnsvw4jafs1yigrhdxx0bji3l4msswnr6";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [ base OpenAL StateVar transformers ];
@@ -822,8 +824,8 @@ self: {
        pname = "Agda";
        version = "2.6.3";
        sha256 = "05k0insn1c2dbpddl1slcdn972j8vgkzzy870yxl43j75j0ckb5y";
-       revision = "3";
-       editedCabalFile = "1dhwih518sm0ldwcfvbgywmgvvdskkpwmrm6gj9pxyma8hrdsfsd";
+       revision = "4";
+       editedCabalFile = "1xfhn4ap5h5aj9vp9m474p98jz7g4azf5m7ngwbj7ivhgnkl32wh";
        isLibrary = true;
        isExecutable = true;
        enableSeparateDataOutput = true;
@@ -1314,8 +1316,8 @@ self: {
      }:
      mkDerivation {
        pname = "BNFC";
-       version = "2.9.4.1";
-       sha256 = "0l3jw86b14jfrd4phjkhpl9qq8im3lnbbhhadmivdr1k2sf614sy";
+       version = "2.9.5";
+       sha256 = "0ssp096ilnwyn1n20jlnkv67r033g7sm18w20ilc64mxlaifjdgs";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -1377,7 +1379,6 @@ self: {
        description = "Translations of classic Truth Maintenance Systems";
        license = lib.licenses.gpl3Only;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "Baggins" = callPackage
@@ -1848,6 +1849,8 @@ self: {
        pname = "BiobaseNewick";
        version = "0.0.0.2";
        sha256 = "1g8kdmraxv0qf3nzm7hi36nhw0j8kyjmjlwslp7a5n2zly2gcck4";
+       revision = "1";
+       editedCabalFile = "0q5r5ywb66inl3pmdyd62bfr34rgcaiyw51aycqki1q7vixv695h";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -1863,9 +1866,7 @@ self: {
        ];
        description = "Newick file format parser";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "TestForestStructure";
-       broken = true;
      }) {};
 
   "BiobaseTrainingData" = callPackage
@@ -2942,6 +2943,7 @@ self: {
        description = "Separate and contain effects of IO monad";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "Cardinality" = callPackage
@@ -3059,11 +3061,11 @@ self: {
        pname = "ChannelT";
        version = "0.0.0.7";
        sha256 = "183pghm74vk1vdcn0mdn6g5q284sncpl1cc49lpczz1wbr15s89y";
+       revision = "1";
+       editedCabalFile = "18hv00jlxmarwx8rk9zac6wzavylf322njag1mzkm8jsfkzyfxv2";
        libraryHaskellDepends = [ base free mmorph mtl transformers-base ];
        description = "Generalized stream processors";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "Chart" = callPackage
@@ -5747,6 +5749,7 @@ self: {
        description = "A grab bag of modules";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "FAI" = callPackage
@@ -6250,7 +6253,6 @@ self: {
        description = "Finite categories and usual categorical constructions on them";
        license = lib.licenses.gpl3Plus;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "FiniteMap" = callPackage
@@ -6978,6 +6980,8 @@ self: {
        pname = "GLUT";
        version = "2.7.0.16";
        sha256 = "0vdkfj4wjzigdpzgr5l001y9wkhwgl00mclr26gf93kps14fkymn";
+       revision = "1";
+       editedCabalFile = "0y8lif1xq62ca3w3cf56z2b37nz2yzr3s6r9q8q24gyxl60yvsl9";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -8334,7 +8338,6 @@ self: {
        license = lib.licenses.bsd3;
        badPlatforms = lib.platforms.darwin;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {inherit (pkgs) pfstools;};
 
   "HERA" = callPackage
@@ -9081,6 +9084,8 @@ self: {
        pname = "HMock";
        version = "0.5.1.0";
        sha256 = "1nbdgndk5bmd45wabfnndzmava9d8cf24li0w1093yl6099gmwas";
+       revision = "1";
+       editedCabalFile = "0dimg8vcppmz0f3jg3yjghfn1cvn46xns8y3p54nxnngh6fxl7ph";
        libraryHaskellDepends = [
          base constraints containers data-default exceptions
          explainable-predicates extra monad-control mtl stm syb
@@ -9094,8 +9099,6 @@ self: {
        ];
        description = "A flexible mock framework for testing effectful code";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "HNM" = callPackage
@@ -9244,8 +9247,8 @@ self: {
     ({ mkDerivation, base, bcm2835, bytestring }:
      mkDerivation {
        pname = "HPi";
-       version = "0.7.0";
-       sha256 = "094wdlnby4iqp5zvd3iimp3whn386w5h6x04izz5xxf43bzzbl2a";
+       version = "0.9.0";
+       sha256 = "1cwapxr6amsrcnlqdmc4klb97wv3xcqb5ms4ag4wa7bvz6rx3rx3";
        libraryHaskellDepends = [ base bytestring ];
        librarySystemDepends = [ bcm2835 ];
        description = "GPIO, I2C and SPI functions for the Raspberry Pi";
@@ -9327,8 +9330,8 @@ self: {
      }:
      mkDerivation {
        pname = "HROOT";
-       version = "0.10.0.2";
-       sha256 = "1si50g4dhjphg1lqji8wlihgn1wnshsarhl5gjhc8107absddbmb";
+       version = "0.10.0.3";
+       sha256 = "049r8d2p1nij9d1byf3zyskp01a8hlql7gnzbz0slj2f1a6qyfs2";
        setupHaskellDepends = [ base Cabal process ];
        libraryHaskellDepends = [
          base HROOT-core HROOT-graf HROOT-hist HROOT-io HROOT-math HROOT-net
@@ -9340,16 +9343,16 @@ self: {
      }) {};
 
   "HROOT-core" = callPackage
-    ({ mkDerivation, base, Cabal, fficxx, fficxx-runtime, process
-     , stdcxx, template-haskell
+    ({ mkDerivation, base, Cabal, fficxx-runtime, process, stdcxx
+     , template-haskell
      }:
      mkDerivation {
        pname = "HROOT-core";
-       version = "0.10.0.2";
-       sha256 = "0cis7fjm1lisn9ipfxk8dkxdxdr8kpfrfp21ac2y6chcappxxpjp";
+       version = "0.10.0.3";
+       sha256 = "1pb2bf1nmrk5wp6z8zyx8ksbcbhhg46830bizmma2a4kl2smnwfj";
        setupHaskellDepends = [ base Cabal process ];
        libraryHaskellDepends = [
-         base fficxx fficxx-runtime stdcxx template-haskell
+         base fficxx-runtime stdcxx template-haskell
        ];
        description = "Haskell binding to ROOT Core modules";
        license = lib.licenses.lgpl21Plus;
@@ -9358,17 +9361,16 @@ self: {
      }) {};
 
   "HROOT-graf" = callPackage
-    ({ mkDerivation, base, Cabal, fficxx, fficxx-runtime, HROOT-core
+    ({ mkDerivation, base, Cabal, fficxx-runtime, HROOT-core
      , HROOT-hist, process, stdcxx, template-haskell
      }:
      mkDerivation {
        pname = "HROOT-graf";
-       version = "0.10.0.2";
-       sha256 = "0qfcqla07cz06xw09xdh5jnsixrrl5f4l1gxsf2cg2x2nl4yvpna";
+       version = "0.10.0.3";
+       sha256 = "04ck4z913acvqc6h2lq4j6ws4y0aygisaic917wbr6abzhkj7zbg";
        setupHaskellDepends = [ base Cabal process ];
        libraryHaskellDepends = [
-         base fficxx fficxx-runtime HROOT-core HROOT-hist stdcxx
-         template-haskell
+         base fficxx-runtime HROOT-core HROOT-hist stdcxx template-haskell
        ];
        description = "Haskell binding to ROOT Graf modules";
        license = lib.licenses.lgpl21Plus;
@@ -9376,16 +9378,16 @@ self: {
      }) {};
 
   "HROOT-hist" = callPackage
-    ({ mkDerivation, base, Cabal, fficxx, fficxx-runtime, HROOT-core
-     , process, stdcxx, template-haskell
+    ({ mkDerivation, base, Cabal, fficxx-runtime, HROOT-core, process
+     , stdcxx, template-haskell
      }:
      mkDerivation {
        pname = "HROOT-hist";
-       version = "0.10.0.2";
-       sha256 = "0xyh3xnjpfz0218jg0r67kl1frw9gf2m11bnjlaxvqlzfnrxgxr0";
+       version = "0.10.0.3";
+       sha256 = "1dz06d63qzlvgim1v6vzasyk8s8m0fvjhdwqwbanicn0h2gd1qkl";
        setupHaskellDepends = [ base Cabal process ];
        libraryHaskellDepends = [
-         base fficxx fficxx-runtime HROOT-core stdcxx template-haskell
+         base fficxx-runtime HROOT-core stdcxx template-haskell
        ];
        description = "Haskell binding to ROOT Hist modules";
        license = lib.licenses.lgpl21Plus;
@@ -9393,16 +9395,16 @@ self: {
      }) {};
 
   "HROOT-io" = callPackage
-    ({ mkDerivation, base, Cabal, fficxx, fficxx-runtime, HROOT-core
-     , process, stdcxx, template-haskell
+    ({ mkDerivation, base, Cabal, fficxx-runtime, HROOT-core, process
+     , stdcxx, template-haskell
      }:
      mkDerivation {
        pname = "HROOT-io";
-       version = "0.10.0.2";
-       sha256 = "0h36jpc8ljwhk6rmv6i7i8mls0s0lcii3fdjaa23r9bbrl76jgk4";
+       version = "0.10.0.3";
+       sha256 = "10293ranj094xz9dzyfa5xndxfg0jgcgh7vj5mw2sq01s77vxxv0";
        setupHaskellDepends = [ base Cabal process ];
        libraryHaskellDepends = [
-         base fficxx fficxx-runtime HROOT-core stdcxx template-haskell
+         base fficxx-runtime HROOT-core stdcxx template-haskell
        ];
        description = "Haskell binding to ROOT IO modules";
        license = lib.licenses.lgpl21Plus;
@@ -9410,16 +9412,16 @@ self: {
      }) {};
 
   "HROOT-math" = callPackage
-    ({ mkDerivation, base, Cabal, fficxx, fficxx-runtime, HROOT-core
-     , process, stdcxx, template-haskell
+    ({ mkDerivation, base, Cabal, fficxx-runtime, HROOT-core, process
+     , stdcxx, template-haskell
      }:
      mkDerivation {
        pname = "HROOT-math";
-       version = "0.10.0.2";
-       sha256 = "1sgj7lr0j7yik0x6fy6vfiv2qqw1b58yhm2z8fq765x3ypilj24m";
+       version = "0.10.0.3";
+       sha256 = "0b9lyqpaj4lw6k0gmfcp4gazqmfrbi7iww2sy413n375nckvz2sd";
        setupHaskellDepends = [ base Cabal process ];
        libraryHaskellDepends = [
-         base fficxx fficxx-runtime HROOT-core stdcxx template-haskell
+         base fficxx-runtime HROOT-core stdcxx template-haskell
        ];
        description = "Haskell binding to ROOT Math modules";
        license = lib.licenses.lgpl21Plus;
@@ -9427,17 +9429,16 @@ self: {
      }) {};
 
   "HROOT-net" = callPackage
-    ({ mkDerivation, base, Cabal, fficxx, fficxx-runtime, HROOT-core
-     , HROOT-io, process, RHTTP, stdcxx, template-haskell
+    ({ mkDerivation, base, Cabal, fficxx-runtime, HROOT-core, HROOT-io
+     , process, RHTTP, stdcxx, template-haskell
      }:
      mkDerivation {
        pname = "HROOT-net";
-       version = "0.10.0.2";
-       sha256 = "1lw0zkb8wmd5raa1fbjaw5l3r6kvvll72vs4rmdjqmg0rld3hgnk";
+       version = "0.10.0.3";
+       sha256 = "0d4azl97v0v6d5bld6xqn7dk91dbvndmyffxsbv88vfqcj231vdj";
        setupHaskellDepends = [ base Cabal process ];
        libraryHaskellDepends = [
-         base fficxx fficxx-runtime HROOT-core HROOT-io stdcxx
-         template-haskell
+         base fficxx-runtime HROOT-core HROOT-io stdcxx template-haskell
        ];
        librarySystemDepends = [ RHTTP ];
        description = "Haskell binding to ROOT Net modules";
@@ -9446,16 +9447,16 @@ self: {
      }) {RHTTP = null;};
 
   "HROOT-tree" = callPackage
-    ({ mkDerivation, base, Cabal, fficxx, fficxx-runtime, HROOT-core
-     , process, stdcxx, template-haskell
+    ({ mkDerivation, base, Cabal, fficxx-runtime, HROOT-core, process
+     , stdcxx, template-haskell
      }:
      mkDerivation {
        pname = "HROOT-tree";
-       version = "0.10.0.2";
-       sha256 = "1k5sfd9a02hgbxq9slsvaxw40l0i6nyvw0ihjs1v7lamsicd8b7y";
+       version = "0.10.0.3";
+       sha256 = "1ndb0amk9n44dpgwvh1gbyff08vcqbd5igj640ldhpr2idkbpcfz";
        setupHaskellDepends = [ base Cabal process ];
        libraryHaskellDepends = [
-         base fficxx fficxx-runtime HROOT-core stdcxx template-haskell
+         base fficxx-runtime HROOT-core stdcxx template-haskell
        ];
        description = "Haskell binding to ROOT Tree modules";
        license = lib.licenses.lgpl21Plus;
@@ -9950,7 +9951,6 @@ self: {
        description = "An Haskell library to drive the french Minitel through a serial port";
        license = lib.licenses.gpl3Only;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "HaPy" = callPackage
@@ -10415,7 +10415,6 @@ self: {
        description = "HaskRel, Haskell as a DBMS with support for the relational algebra";
        license = lib.licenses.gpl2Only;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "HaskellAnalysisProgram" = callPackage
@@ -10976,6 +10975,7 @@ self: {
        description = "A search and indexing engine";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "Holumbus-Storage" = callPackage
@@ -11288,8 +11288,8 @@ self: {
        pname = "HsYAML";
        version = "0.2.1.1";
        sha256 = "0a7nbvpl4p8kwbbjfn1dj6s3fif5k8zhbckdvyz1k74pj3yb8ns6";
-       revision = "3";
-       editedCabalFile = "0dyvkrnzdpba4lwxvqyrsjgcmi0aza7nz19xjw638qdq1xdxrwcp";
+       revision = "4";
+       editedCabalFile = "1ai0y5jmj68q1rami0hdg34rflammpagb96sww4fkbr127cbdwhx";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -11311,8 +11311,8 @@ self: {
        pname = "HsYAML-aeson";
        version = "0.2.0.1";
        sha256 = "139hqd07hkr8ykvrgmcshh9f3vp9dnrj6ks5nl8hgrpi990jsy5r";
-       revision = "7";
-       editedCabalFile = "1zriyncrkfdz21adlqy2v1wydm01j3w3jxqa2ls1psjp2p1mmv6x";
+       revision = "8";
+       editedCabalFile = "0wprpy6312ly8dh5w2fdr5ni0p3ywfn8m6axmzh8i79zjaffnxcl";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -11549,8 +11549,8 @@ self: {
     ({ mkDerivation, base, mtl, QuickCheck, Stream }:
      mkDerivation {
        pname = "IOSpec";
-       version = "0.3.1.1";
-       sha256 = "1w6f7jnjm4n0s4mr18yqv81rsnrh8f6806x523gnqljbyak18p1l";
+       version = "0.3.1.2";
+       sha256 = "0ig57drcyynndgbbpfycvxvfz2ddyr1xsxks0xabfp7r0w7f0bi0";
        libraryHaskellDepends = [ base mtl QuickCheck Stream ];
        description = "A pure specification of the IO monad";
        license = lib.licenses.bsd3;
@@ -13688,6 +13688,7 @@ self: {
        description = "Automatic inductive functional programmer by systematic search";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "MailchimpSimple" = callPackage
@@ -14528,7 +14529,6 @@ self: {
        description = "Simple and typesafe layer over the Munkres package";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "MusicBrainz" = callPackage
@@ -14768,7 +14768,6 @@ self: {
        description = "A Haskell interface to Lego Mindstorms NXT";
        license = lib.licenses.lgpl3Only;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {bluetooth = null;};
 
   "NXTDSL" = callPackage
@@ -14813,8 +14812,6 @@ self: {
        testToolDepends = [ tasty-discover ];
        description = "Easy-and-safe-to-use high-level Haskell bindings to NaCl";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "NameGenerator" = callPackage
@@ -15036,8 +15033,8 @@ self: {
      }:
      mkDerivation {
        pname = "Network-NineP";
-       version = "0.4.7.2";
-       sha256 = "19m5iz99igw6bdqh9zln1cmfms0nrghvf9553fb2gjzv0i9dbygs";
+       version = "0.4.7.3";
+       sha256 = "1ddmg5644af3aq53lclwyifir9x56by61w43ipb4lj1p40hki0j1";
        libraryHaskellDepends = [
          async base binary bytestring containers convertible exceptions
          hslogger monad-loops monad-peel mstate mtl network network-bsd
@@ -15382,15 +15379,15 @@ self: {
      }) {};
 
   "OGDF" = callPackage
-    ({ mkDerivation, base, COIN, fficxx, fficxx-runtime, OGDF, stdcxx
+    ({ mkDerivation, base, COIN, fficxx-runtime, OGDF, stdcxx
      , template-haskell
      }:
      mkDerivation {
        pname = "OGDF";
-       version = "1.0.0.0";
-       sha256 = "0sn5xyn2yqh7aywadzxvaxcyqj2clivvizqdbnjkljib7960w44z";
+       version = "1.0.0.1";
+       sha256 = "0xxh88qzqmfpz3lphgm1iihbc6x8m3irwzpp0s3ysss64a6jn7j7";
        libraryHaskellDepends = [
-         base fficxx fficxx-runtime stdcxx template-haskell
+         base fficxx-runtime stdcxx template-haskell
        ];
        librarySystemDepends = [ COIN OGDF ];
        description = "Haskell binding to OGDF";
@@ -15647,8 +15644,8 @@ self: {
        pname = "Only";
        version = "0.1";
        sha256 = "0rdj3a629fk2vp121jq8mf2smkblrz5w3cxhlsyx6my2x29s2ymb";
-       revision = "1";
-       editedCabalFile = "1ahk7p34kmh041mz7lyc10nhcxgv2i4z8nvzxvqm2x34gslmsbzr";
+       revision = "2";
+       editedCabalFile = "01rvhsm4gyvjpgakrj7nzlfb1bjhkkx87xj3hng2x00g3qc3s0y6";
        libraryHaskellDepends = [ base deepseq ];
        description = "The 1-tuple type or single-value \"collection\"";
        license = lib.licenses.bsd3;
@@ -15701,6 +15698,8 @@ self: {
        pname = "OpenAL";
        version = "1.7.0.5";
        sha256 = "167qgbls1439wbckva281cf61bclkca0krbbi4451l7qjinm8fil";
+       revision = "1";
+       editedCabalFile = "1k5ynfm92wbxl8nf0rni8sxplxdwqjr3zsvj9p1ss1b7ns4s1hnb";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -17233,7 +17232,6 @@ self: {
        description = "Quick and easy data visualization with Haskell";
        license = lib.licenses.gpl3Only;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "Quickson" = callPackage
@@ -17346,7 +17344,6 @@ self: {
        description = "A reflective JSON serializer/parser";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "RLP" = callPackage
@@ -17897,6 +17894,7 @@ self: {
        license = "GPL";
        hydraPlatforms = lib.platforms.none;
        mainProgram = "replaceUmlaut";
+       broken = true;
      }) {};
 
   "ReplicateEffects" = callPackage
@@ -17998,7 +17996,6 @@ self: {
        description = "quasiquoter for inline-R code";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "RollingDirectory" = callPackage
@@ -18044,8 +18041,8 @@ self: {
      }:
      mkDerivation {
        pname = "RtMidi";
-       version = "0.7.0.0";
-       sha256 = "0gfhl9p961hpzljcx3cphl5wzhgjkbklnf5a1wikmm86xa5ziz1w";
+       version = "0.8.0.0";
+       sha256 = "1cp0pzsc7agjq3dr4h2lldb1x9wl0p2047f45mpsxc4w6gw97fwz";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [ base deepseq vector ];
@@ -19548,6 +19545,29 @@ self: {
        mainProgram = "Sit.bin";
      }) {};
 
+  "Sit_0_2023_8_3" = callPackage
+    ({ mkDerivation, alex, array, base, containers, data-lens-light
+     , happy, mtl
+     }:
+     mkDerivation {
+       pname = "Sit";
+       version = "0.2023.8.3";
+       sha256 = "1psmfgh1bklx52az1097n23nzfjnab002dcqrq140jqhnpfw7ynr";
+       isLibrary = true;
+       isExecutable = true;
+       enableSeparateDataOutput = true;
+       libraryHaskellDepends = [
+         array base containers data-lens-light mtl
+       ];
+       libraryToolDepends = [ alex happy ];
+       executableHaskellDepends = [ base ];
+       testHaskellDepends = [ base ];
+       description = "Prototypical type checker for Type Theory with Sized Natural Numbers";
+       license = "unknown";
+       hydraPlatforms = lib.platforms.none;
+       mainProgram = "Sit.bin";
+     }) {};
+
   "SizeCompare" = callPackage
     ({ mkDerivation, base, containers }:
      mkDerivation {
@@ -19657,6 +19677,7 @@ self: {
        description = "Abstract full system simulator";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "SoccerFun" = callPackage
@@ -20267,8 +20288,6 @@ self: {
        doHaddock = false;
        description = "Svg Icons and more";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "SybWidget" = callPackage
@@ -20385,8 +20404,6 @@ self: {
        ];
        description = "A Transactional cache with user-defined persistence";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "THEff" = callPackage
@@ -20644,7 +20661,6 @@ self: {
        license = lib.licenses.lgpl3Only;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "TLT-exe";
-       broken = true;
      }) {};
 
   "Taxonomy" = callPackage
@@ -20709,6 +20725,7 @@ self: {
        license = lib.licenses.gpl3Only;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "TeXmyMath-example";
+       broken = true;
      }) {};
 
   "TeaHS" = callPackage
@@ -22341,6 +22358,7 @@ self: {
        description = "Workflow patterns over a monad for thread state logging & recovery";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "WxGeneric" = callPackage
@@ -22750,16 +22768,19 @@ self: {
      }) {};
 
   "Yampa" = callPackage
-    ({ mkDerivation, base, deepseq, random, simple-affine-space }:
+    ({ mkDerivation, base, criterion, deepseq, filepath, random
+     , simple-affine-space, time
+     }:
      mkDerivation {
        pname = "Yampa";
-       version = "0.14.3";
-       sha256 = "0hsi2458m0wncb6khzjzplzxlmcwz3czm3q59fcqfz0c6yn8px7j";
+       version = "0.14.4";
+       sha256 = "1lj1fj77ajckxhv9avx22djyl4jp44693y54j6hyx0xfp4dafhr5";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
          base deepseq random simple-affine-space
        ];
+       benchmarkHaskellDepends = [ base criterion filepath time ];
        description = "Elegant Functional Reactive Programming Language for Hybrid Systems";
        license = lib.licenses.bsd3;
      }) {};
@@ -22880,8 +22901,8 @@ self: {
      }:
      mkDerivation {
        pname = "Z-Data";
-       version = "2.0.0.1";
-       sha256 = "0w78yrphmb7w2vay75r1a5rlcar1345rvbsq8cx8zh3jcx2r802g";
+       version = "2.0.0.2";
+       sha256 = "1ix3bdhb8291wgh3iaiwfhkkkcbp51r50xszs4i1x57kzzxbsjf3";
        setupHaskellDepends = [ base Cabal ];
        libraryHaskellDepends = [
          base bytestring case-insensitive containers deepseq hashable
@@ -24057,8 +24078,8 @@ self: {
      }:
      mkDerivation {
        pname = "acid-state";
-       version = "0.16.1.2";
-       sha256 = "1ixg62liif1g18ggxap8zdhzy261fj5d24pmb0n36gfhz18b38bx";
+       version = "0.16.1.3";
+       sha256 = "0vmggxzp6alv92ycwc9bc53vn73s1cbn8rhmbcb2jvcglyakvws5";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -26056,8 +26077,6 @@ self: {
        ];
        description = "Declarative JSON matchers";
        license = lib.licenses.bsd2;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "aeson-modern-tojson" = callPackage
@@ -26516,8 +26535,8 @@ self: {
      }:
      mkDerivation {
        pname = "aeson-via";
-       version = "0.2.1";
-       sha256 = "0g8sf1sv1fmqkqmfwsb8sxbgy63zg503gi9sxhhc9apfrp5z9kig";
+       version = "0.2.2";
+       sha256 = "04hmnhi64wj80s8li9v6dza3alv155vaigpqy3y6j40b6p7hglk9";
        libraryHaskellDepends = [
          aeson aeson-casing base newtype-generics text
        ];
@@ -26526,8 +26545,6 @@ self: {
        ];
        description = "Wrappers to derive-via Aeson ToJSON/FromJSON typeclasses";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "aeson-warning-parser" = callPackage
@@ -26904,8 +26921,8 @@ self: {
     ({ mkDerivation, base, hspec }:
      mkDerivation {
        pname = "agreeing";
-       version = "0.1.0.0";
-       sha256 = "09dayjwdq16kjcmalhy55mv8gcv0s0d583fkw1k6smvcy1fal32r";
+       version = "0.2.0.0";
+       sha256 = "1zhxzhxhqanchr64rkbwzrn9q7lhmylsggf6ax0zai0zg9sk56yc";
        libraryHaskellDepends = [ base ];
        testHaskellDepends = [ base hspec ];
        description = "Idiomatic data structure for agreement";
@@ -27869,7 +27886,6 @@ self: {
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "acb";
-       broken = true;
      }) {};
 
   "algorithmic-composition-basic" = callPackage
@@ -27910,7 +27926,6 @@ self: {
        description = "Helps to create more complex experimental music from a file (especially timbre)";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "algorithmic-composition-frequency-shift" = callPackage
@@ -28186,8 +28201,6 @@ self: {
        ];
        description = "A character between a-z";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "alpino-tools" = callPackage
@@ -28590,658 +28603,1393 @@ self: {
      }) {};
 
   "amazonka" = callPackage
-    ({ mkDerivation, amazonka-core, base, bytestring, conduit
-     , conduit-extra, directory, exceptions, http-client, http-conduit
-     , http-types, ini, mmorph, monad-control, mtl, resourcet, retry
-     , tasty, tasty-hunit, text, time, transformers, transformers-base
-     , transformers-compat, unliftio-core, void
+    ({ mkDerivation, aeson, amazonka-core, amazonka-sso, amazonka-sts
+     , base, bytestring, conduit, directory, exceptions, http-client
+     , http-conduit, http-types, ini, lens, resourcet, retry, text, time
+     , transformers, unordered-containers, uuid
      }:
      mkDerivation {
        pname = "amazonka";
-       version = "1.6.1";
-       sha256 = "104ifvmwdc1w3y42qcbq57v579zcnmlfv3f0bsazbcqdxnvr9dzd";
-       revision = "3";
-       editedCabalFile = "1fkmnk2ikx6j6vpda9wx1pc3yl16d2j7gz3wgfh6hj0z856rm4gf";
+       version = "2.0";
+       sha256 = "044ypj06rg6vb6yfdnfjk0piwpwgqchryskzhws6knjf7qag67g0";
        libraryHaskellDepends = [
-         amazonka-core base bytestring conduit conduit-extra directory
-         exceptions http-client http-conduit http-types ini mmorph
-         monad-control mtl resourcet retry text time transformers
-         transformers-base transformers-compat unliftio-core void
+         aeson amazonka-core amazonka-sso amazonka-sts base bytestring
+         conduit directory exceptions http-client http-conduit http-types
+         ini lens resourcet retry text time transformers
+         unordered-containers uuid
        ];
-       testHaskellDepends = [ base tasty tasty-hunit ];
        description = "Comprehensive Amazon Web Services SDK";
        license = lib.licenses.mpl20;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
+     }) {};
+
+  "amazonka-accessanalyzer" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-accessanalyzer";
+       version = "2.0";
+       sha256 = "0d95kxjq0b6lfqnz4lkihmsnxkvia7v6889mbg2hjl2b6d8gq9hf";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Access Analyzer SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-account" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-account";
+       version = "2.0";
+       sha256 = "05d5428jya57w6s798mynd31wdp1bwi0gmqr2n6wvbxrwjxjvn2g";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Account SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-alexa-business" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-alexa-business";
-       version = "1.6.1";
-       sha256 = "0k94d4i7fnrlf2zbvndw5bpl9g54ar03s43yzlygq1rg4qfwakhq";
+       version = "2.0";
+       sha256 = "03jfkwvzkl168hnn3vz53l4jgv59q8k2w8q5awnz2fzzm5i0vg5j";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Alexa For Business SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-amp" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-amp";
+       version = "2.0";
+       sha256 = "151k7wshjifnypywvq6nkbpfq3bsyfpxayqnnxqk88zcgp52b2i5";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Prometheus Service SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-amplify" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-amplify";
+       version = "2.0";
+       sha256 = "0k2nvz7dw9j2cwh24a4c5bmzp25lyn362mgqlbk5n0576v2yqdkh";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Amplify SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-amplifybackend" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-amplifybackend";
+       version = "2.0";
+       sha256 = "1jmar2yzlmcdw869a4bih64z6h31yj3llkg7h2lqhk3n231xlxx7";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon AmplifyBackend SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-amplifyuibuilder" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-amplifyuibuilder";
+       version = "2.0";
+       sha256 = "1jw75bi3r3myd05l5v22w5mmj7iyihmgp35zncr1n6b07jm8ig8l";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Amplify UI Builder SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-apigateway" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-apigateway";
-       version = "1.6.1";
-       sha256 = "11gkml1xp2h5j9idgk84h6nlz2fvszrrn9hmqjm4b76hj3a3v11v";
+       version = "2.0";
+       sha256 = "17m30b7wdvvf859aai64h71hxwz6w432n6ck1i9b11fcxf03sdlf";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon API Gateway SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-apigatewaymanagementapi" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-apigatewaymanagementapi";
+       version = "2.0";
+       sha256 = "15yx8ljfvidx7xm7i5iwdyqdrdw0b9qzi5s1pw2d5q7xbgdsg8wj";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon ApiGatewayManagementApi SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-apigatewayv2" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-apigatewayv2";
+       version = "2.0";
+       sha256 = "1b48a8zbr1d44zvvbmyfwcqn548vwq4qh94wdllxiizsszb8aq6k";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon ApiGatewayV2 SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-appconfig" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-appconfig";
+       version = "2.0";
+       sha256 = "1dqmaq0ysl4ki792zh4bmsvjf6fh628r7l5fhsqa6s1lrmn746mn";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon AppConfig SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-appconfigdata" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-appconfigdata";
+       version = "2.0";
+       sha256 = "12yrh69ixicgh3gnz9viw0w8fgcz1l81inclh4cq2gz1pjyasp17";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon AppConfig Data SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-appflow" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-appflow";
+       version = "2.0";
+       sha256 = "02374a03lifbg1y7zzvg4v91r0k1mji7ad9nm2c6v8k45791f4d0";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Appflow SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-appintegrations" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-appintegrations";
+       version = "2.0";
+       sha256 = "0yi057njjx38xy03ic7dkjdmkyk4wh3wiv7zbgz77xq2yjnv6gjy";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon AppIntegrations Service SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-application-autoscaling" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-application-autoscaling";
-       version = "1.6.1";
-       sha256 = "11njiad7rzx2vbzr6m3qwrvzqaplnp6h1zkd92mcc16chaial3ns";
+       version = "2.0";
+       sha256 = "1za4q19j9157q11y3k32p3xkj94bbb92q440gn1c7m55m6caskm0";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Application Auto Scaling SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-application-insights" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-application-insights";
+       version = "2.0";
+       sha256 = "198h6phfxdcwcp6k7nfjwjjxpv271j8xrgcl30bg4jqswp47hy1x";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon CloudWatch Application Insights SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-applicationcostprofiler" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-applicationcostprofiler";
+       version = "2.0";
+       sha256 = "1kqzw2553sllyh17svckzl65i45r0n6sjm3ap3f9s3z1x946hdlx";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Application Cost Profiler SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-appmesh" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-appmesh";
+       version = "2.0";
+       sha256 = "1dr3nq9imivwb4z183vgylcp740bhhpc29cpjkzn8zxm5hnf7lqr";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon App Mesh SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-apprunner" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-apprunner";
+       version = "2.0";
+       sha256 = "1g5j1jhdxj3ra9z7qjcnhiszxv9rq2w8g4qjzdjdd54v7lnwb5v5";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon App Runner SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-appstream" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-appstream";
-       version = "1.6.1";
-       sha256 = "1308gj35ibv54asgwng2rxsvwyz5gmcnfigikm1ib950a33zli36";
+       version = "2.0";
+       sha256 = "0nbvdkaml27jscrxw9raydqfg79zczhm47lirdgq7jm58r6pn3w5";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon AppStream SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-appsync" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-appsync";
-       version = "1.6.1";
-       sha256 = "0py1hf3hjcyrck39s8b8nircz0zi80rq27b4snwmrbs5l5lhp23s";
+       version = "2.0";
+       sha256 = "08n4yy2wilfyp92i7nlmn3gib53fwsxiia2igbnr2mlmvb1vm67r";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon AppSync SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-arc-zonal-shift" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-arc-zonal-shift";
+       version = "2.0";
+       sha256 = "0wbzxm1an9kcd4k4s76h1mp412rdca9nwl3xib04kkkkzd3bkggd";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon ARC - Zonal Shift SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-athena" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-athena";
-       version = "1.6.1";
-       sha256 = "17avw47p6jkfbwgr4hlv0kx10xbjgm2rfpdj26whjzwv1mpy83ip";
+       version = "2.0";
+       sha256 = "0hcww9mr096ys1imba8zhvyy4g9vaskh8gs4bd8hb0nh8gsaa2sh";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Athena SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-auditmanager" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-auditmanager";
+       version = "2.0";
+       sha256 = "1182nz5rzlsx97lczhh78lxv7nrnh1rdw3c202jvsla9f6hr7hi7";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Audit Manager SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-autoscaling" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-autoscaling";
-       version = "1.6.1";
-       sha256 = "0569mjl9k4v0z740vhaz665zy5s3jzrvp562n4j6mkim9p0svd1g";
+       version = "2.0";
+       sha256 = "043j4anckd05j5bz259f1gpkcacdinsscf06avbcbq08r8cqf8wf";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Auto Scaling SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-autoscaling-plans" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-autoscaling-plans";
-       version = "1.6.1";
-       sha256 = "1xg9lcqjsdczy9gnssy78wbapypbdhnzs9kb3k779h5r8dv4rbx9";
+       version = "2.0";
+       sha256 = "10bwadh8rdqnrdwy1skc3xsmc2c5ikawi83l8b9liapcyb81r7j1";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Auto Scaling Plans SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-backup" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-backup";
+       version = "2.0";
+       sha256 = "1m2zjz3zs8kw84ph0hi88q1zrshs24n8dr3xpcy84ir9xgpl37lq";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Backup SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-backup-gateway" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-backup-gateway";
+       version = "2.0";
+       sha256 = "13wqbdjq6ippm64cy8c2465vzx3g4g8q8lfymp2lajk1vvp02nyh";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Backup Gateway SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-backupstorage" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-backupstorage";
+       version = "2.0";
+       sha256 = "08fkx40xzi6fhbpid93zp0hpll71qy8w84jm38zb4i1phwsb466y";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Backup Storage SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-batch" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-batch";
-       version = "1.6.1";
-       sha256 = "197wjj11y5qjapz6c9qpp92fkhsfbc8pm9f0pyw63k7cyr3vcrq6";
+       version = "2.0";
+       sha256 = "1m0gh0jamvs493raqg3id2kag68sjws15f4d1qshzp5gahsc6a08";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Batch SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-billingconductor" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-billingconductor";
+       version = "2.0";
+       sha256 = "0cx2dccf1symgn9nzi0d27hnfgxhhjcd56g3x7j57y8h05dg1lmn";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon BillingConductor SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-braket" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-braket";
+       version = "2.0";
+       sha256 = "09dp4n8gjs5cmq1a1hq1ng9ndd43gslmcy5idkrabs4as4piqr9d";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Braket SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-budgets" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-budgets";
-       version = "1.6.1";
-       sha256 = "0wv25m25dnwsv3r8njjjg4ffy8d3r1xw5q56adhpifir0j2j1aw4";
+       version = "2.0";
+       sha256 = "0mqlxh126i6qprjsz753hp0ir4i47442v943fzhddcw41cyrdchk";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Budgets SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-certificatemanager" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-certificatemanager";
-       version = "1.6.1";
-       sha256 = "1wlyd1wn11ngq5pbh3mcg1acknsycyc9j41l7miwir5swxkpngc3";
+       version = "2.0";
+       sha256 = "0xqq13gjxy5czh7xz1bdr57hd2rykgh36vriw5mgfrhs09vry6zn";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Certificate Manager SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-certificatemanager-pca" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-certificatemanager-pca";
-       version = "1.6.1";
-       sha256 = "1qcmbw2n6vw0a9ksbvqhf7qmlk5zlxifc4hg9wzr3zywmj4zygq0";
+       version = "2.0";
+       sha256 = "1gwzb5lq1ms62m8l1c3fqfkpz2y2l1fsij7hradiic6zp55xsy4p";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Certificate Manager Private Certificate Authority SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-chime" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-chime";
+       version = "2.0";
+       sha256 = "0bysdxbqsq9657854hdhzvcjwnfqpg4k31chwfvldilnyid2w9l1";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Chime SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-chime-sdk-identity" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-chime-sdk-identity";
+       version = "2.0";
+       sha256 = "0j6yx3rprfmj7l41yjrz9qd59jlpy79ksrmqv55lb8n5s4zl9ar4";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Chime SDK Identity SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-chime-sdk-media-pipelines" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-chime-sdk-media-pipelines";
+       version = "2.0";
+       sha256 = "1b5s8krabpcw8sywxm2nf7jlmblzz7rvnvm1pxy9xc9vd3m760sd";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Chime SDK Media Pipelines SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-chime-sdk-meetings" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-chime-sdk-meetings";
+       version = "2.0";
+       sha256 = "1v1khlbbisdbdz7iap4gx0gc6b3l2qcqnv53jskwmq3qy7a2ys7s";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Chime SDK Meetings SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-chime-sdk-messaging" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-chime-sdk-messaging";
+       version = "2.0";
+       sha256 = "0zr6wyr97ss9r245i56cffkk4rb0jshrbzp7jnkgh9qqkbry8pal";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Chime SDK Messaging SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-chime-sdk-voice" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-chime-sdk-voice";
+       version = "2.0";
+       sha256 = "1ym5c3ckk9p08ypyfbh5s9ajj74pyvcwj45j90nb3fgzi8gvv2cp";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Chime SDK Voice SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-cloud9" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-cloud9";
-       version = "1.6.1";
-       sha256 = "1ikkcd9i45zmfx7p25wf97pn52314xs0ga4lh3r32b8xrh2d9kq4";
+       version = "2.0";
+       sha256 = "0javf3vmlmskprjrlj353hhkaprkc8g7cgpqm6vp4vgzqiln46bf";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Cloud9 SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-cloudcontrol" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-cloudcontrol";
+       version = "2.0";
+       sha256 = "13nh5mm8sdckmyn7cmykli6l3kbrxg77ycnfpd9i3y28lyycp3mx";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Cloud Control API SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-clouddirectory" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-clouddirectory";
-       version = "1.6.1";
-       sha256 = "012nilk1j8jmp8bhcc5qff95g1ivsky05jwk4xpfh05j573cdaqz";
+       version = "2.0";
+       sha256 = "02iiam1i2cyafmhl7gbd02s03lx4r0p0g6ccl3k3rz853sp6jqw8";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon CloudDirectory SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-cloudformation" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-cloudformation";
-       version = "1.6.1";
-       sha256 = "1j5gsgswcflfrmry777drc7f7619azr1qffdz636y2vb8nsyl8z8";
+       version = "2.0";
+       sha256 = "01gw438fw7b87ibdgnjl3hqxx8s1ckkmaj0b12b4plqsdjsx6h1b";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon CloudFormation SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-cloudfront" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-cloudfront";
-       version = "1.6.1";
-       sha256 = "0yd7vx90wnjid99gq4vypxfmgqjrfa4ws2s7x77qx1rl1pxh0ncc";
+       version = "2.0";
+       sha256 = "1zsn0avbhc789gvk8ylgawjpdkxvdj71n96bd66xmmwizqb5vqsw";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon CloudFront SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-cloudhsm" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-cloudhsm";
-       version = "1.6.1";
-       sha256 = "06d0w3h3njblqjh95crf6gslkdcjx29g1h66f6z0gqikrwiy5prl";
+       version = "2.0";
+       sha256 = "0xpvvgk3nnkmjbbx34ancq2l1ij7621qww0fxpa2vgdmn4qg9m7a";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon CloudHSM SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-cloudhsmv2" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-cloudhsmv2";
-       version = "1.6.1";
-       sha256 = "1j7ns5daj4rsvc1f956wfy7hpshb7z8vffa6vyzvrfmw8kfspvfa";
+       version = "2.0";
+       sha256 = "03sbrqpw3lh9b3rz1f8r1y368cax6k9ywi4apl3cdaqsq8k6mpp0";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon CloudHSM V2 SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-cloudsearch" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-cloudsearch";
-       version = "1.6.1";
-       sha256 = "1p3srndrj4kgwwz9021mfh91za8qgrhf4hzk02nva6awdp114j6h";
+       version = "2.0";
+       sha256 = "07xpfkfr229i1lh6v9fi4j1gmv9aqiwy709nbczaph6nsln9hjb2";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon CloudSearch SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-cloudsearch-domains" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-cloudsearch-domains";
-       version = "1.6.1";
-       sha256 = "07xihv4bay6vz9pw89y3issfmi7iicryzi1wh22sxw3qb1jnq6q4";
+       version = "2.0";
+       sha256 = "0is587zw0v71q3njaf8092s0dlrlgax9k72jk21whrlw2hcwmp53";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon CloudSearch Domain SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-cloudtrail" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-cloudtrail";
-       version = "1.6.1";
-       sha256 = "1abx1xp75fdnavxwxi2ak5gk3b2vc2380znv3mi28s72l8aprk2m";
+       version = "2.0";
+       sha256 = "03cm69j3g8s0d6s8gdx3p1d3rwz0ph0qyx76fv1l5cn27phm8mbn";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon CloudTrail SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-cloudwatch" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-cloudwatch";
-       version = "1.6.1";
-       sha256 = "0v9j950qlfhy4dz77kq0329877050lpwaqi5h5s00kxiqwbvcmjf";
+       version = "2.0";
+       sha256 = "1h8mnjskkr4lkb2bvww0nhp9xn0cqjab0hqgl1ncv6p61jf1zw5g";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon CloudWatch SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-cloudwatch-events" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-cloudwatch-events";
-       version = "1.6.1";
-       sha256 = "0ikn7z6fp648qi5ch664wnym6v1mcq37khxw7fwfnfqnir13sclb";
+       version = "2.0";
+       sha256 = "1dipj5gl92q6339246kz8m9f5x7h0vlhnp665h6d5mzcnbvz97b9";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
-       description = "Amazon CloudWatch Events SDK";
+       description = "Amazon EventBridge SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-cloudwatch-logs" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-cloudwatch-logs";
-       version = "1.6.1";
-       sha256 = "146llix63givxlry48la1m5c28q9008bmpfmbj3x5mwrgjxxxpv1";
+       version = "2.0";
+       sha256 = "0gpwvz8kwd908n28zvbk5vmx4jrmqx8jybypddlysk223rcfzb82";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon CloudWatch Logs SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-codeartifact" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-codeartifact";
+       version = "2.0";
+       sha256 = "14913n9qlalp0bmnzdsfcfi20xdxa64j826dn10lx0wmpg138inv";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon CodeArtifact SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-codebuild" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-codebuild";
-       version = "1.6.1";
-       sha256 = "1c56766yz3dj1zq643503mphdw7kb82kfn63ldi6f7i6dc5yyx8k";
+       version = "2.0";
+       sha256 = "13yx256hk14f8gaawgnvfxjw3ai8r5ldy1j0d51iknd95qbdg2yp";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon CodeBuild SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-codecommit" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-codecommit";
-       version = "1.6.1";
-       sha256 = "0cq73pd93la058sgpcvhmrqc5r4splh5x9w571fxrilmc08a6fdn";
+       version = "2.0";
+       sha256 = "1c50c249cxnw4wlcfbwh74k3qy9csmnf92nm99gsb8c8smhhsxxf";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon CodeCommit SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-codedeploy" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-codedeploy";
-       version = "1.6.1";
-       sha256 = "1yjlbcbzfp72621sj458b2lv35rf8fcr88ljb47mrp7ihb86zzrx";
+       version = "2.0";
+       sha256 = "0pppzrwv2b5qnh4xw90c21imqwa8wrzjqjmmfcym5805qj5c1fhp";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon CodeDeploy SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-codeguru-reviewer" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-codeguru-reviewer";
+       version = "2.0";
+       sha256 = "1k1bcv2gxdzc6qp2r5n6q5wfr628i3xq5nkdck1i01rd5sswjbrw";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon CodeGuru Reviewer SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-codeguruprofiler" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-codeguruprofiler";
+       version = "2.0";
+       sha256 = "07jjql6lfv02wwx7ydqqwrlsicg4gprarn5kwjsk76464p6p893i";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon CodeGuru Profiler SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-codepipeline" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-codepipeline";
-       version = "1.6.1";
-       sha256 = "1jb5775n31yhbqahv8jiiz5i1qzvq5rls3f1jf35wnwjvzzzz85z";
+       version = "2.0";
+       sha256 = "1pbd4f6w7c6nlgxcq1xacg94jpx3m8srr1l9jzsgam4s6wf3ixp1";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon CodePipeline SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-codestar" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-codestar";
-       version = "1.6.1";
-       sha256 = "1vf0cg2kby5bnb6j575c0mcldbqj577mkmfzsbwy3hnfv92rhipy";
+       version = "2.0";
+       sha256 = "1spjb2h4da1fypx9wj82ha5277zk1qqnnphrsd56ak7mlar1shpq";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon CodeStar SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-codestar-connections" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-codestar-connections";
+       version = "2.0";
+       sha256 = "19vddgc61mm0ypvzfkwgn7m37dnkha30pa3ry6sphw9aynv9agla";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon CodeStar connections SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-codestar-notifications" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-codestar-notifications";
+       version = "2.0";
+       sha256 = "1djib5ksv63adng9s6n04ldvxi0i2kmyl6zkz4im3703xcjii7l9";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon CodeStar Notifications SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-cognito-identity" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-cognito-identity";
-       version = "1.6.1";
-       sha256 = "0142kq7hfdala7bl9l1d5s0rkf50zz89qm6m0f3mpfp4iiaphxxr";
+       version = "2.0";
+       sha256 = "1wwbna3iarjqsglqwpbrjg6x5ib4rsbh2lx5fwdh414r25710yls";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Cognito Identity SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-cognito-idp" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-cognito-idp";
-       version = "1.6.1";
-       sha256 = "06zhx3rajqf0llc5xvyp9nd77pb0h5mfv8f83kbp9696yi7c6qnz";
+       version = "2.0";
+       sha256 = "0p99w1fpvm68rldw28bjq7q9ah1ad50dz50vic4552nhpqvw07kb";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Cognito Identity Provider SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-cognito-sync" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-cognito-sync";
-       version = "1.6.1";
-       sha256 = "0qyvj02y7c0lvw5axr50l22pvmzj8l6c8ivdlf6myrdmfb8gjj70";
+       version = "2.0";
+       sha256 = "15hslp7zp91392asl9p5bif2dspbjjhwmaa47i1b0kmarl2haq1z";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Cognito Sync SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-comprehend" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-comprehend";
-       version = "1.6.1";
-       sha256 = "12ipg2qnyaw1y5azgq2b7vw9n17l877xiw7fa6xaxsmf3xfk6w1d";
+       version = "2.0";
+       sha256 = "1ll364vazv1rjp37wng6g9fqw40rirhj040p4yky31py0gj8k3fm";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Comprehend SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-comprehendmedical" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-comprehendmedical";
+       version = "2.0";
+       sha256 = "0kk10v1dxnkqf8xz2rik0x7mm08ivwy9ccbahwmfhzwk5427vqf5";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Comprehend Medical SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-compute-optimizer" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-compute-optimizer";
+       version = "2.0";
+       sha256 = "02501c0xnyc7vdf97156a0fxmysy7r7vlgj6azgr1jd98j110i8v";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Compute Optimizer SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-config" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-config";
-       version = "1.6.1";
-       sha256 = "0d38y292gwq7ix0gvrkznc7007jlr8an2wzrxn0rjca0f24vldpz";
+       version = "2.0";
+       sha256 = "1ccxay3qpmll5fy03qcwwbx2b23g609w4zxsqvdny86pb97p6ij9";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Config SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-connect" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-connect";
-       version = "1.6.1";
-       sha256 = "0l0p3n1pa3jnq5srcc93w37bxqiv4i912y5a4vx6ghzgpv8y4k42";
+       version = "2.0";
+       sha256 = "03jj3qjsj7qx3gm8ryh01lxa3glg1rqz289xmnbl9qv8gb0f8bfs";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Connect Service SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-connect-contact-lens" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-connect-contact-lens";
+       version = "2.0";
+       sha256 = "1m9dkadljs33any7f3rlwxs49h5qgd5l5xxhxfh5srcwsf5lzd4j";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Connect Contact Lens SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-connectcampaigns" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-connectcampaigns";
+       version = "2.0";
+       sha256 = "00x539dzx6kb50ifhjcwc8490di72bcbqwwp8zm7sr74pjx1jq8s";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon ConnectCampaignService SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-connectcases" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-connectcases";
+       version = "2.0";
+       sha256 = "19sfbqg46s02wnbpw9lw46vbw8m8pdmsvc125akxli8vjpg8rkir";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Connect Cases SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-connectparticipant" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-connectparticipant";
+       version = "2.0";
+       sha256 = "1hy1wlni7czid4qm48jdqyfy2gfb1x973khc4bj0g8nx99qspkms";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Connect Participant Service SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-contrib-rds-utils" = callPackage
@@ -29266,578 +30014,1173 @@ self: {
        mainProgram = "generate-db-auth-token";
      }) {};
 
+  "amazonka-controltower" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-controltower";
+       version = "2.0";
+       sha256 = "1n8hh292q7l6j5ljbbnf339lvp0gf2h6fh9mxymglhsagc0gzpj9";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Control Tower SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
   "amazonka-core" = callPackage
-    ({ mkDerivation, aeson, attoparsec, base, bifunctors, bytestring
-     , case-insensitive, conduit, conduit-extra, cryptonite
-     , data-ordlist, deepseq, exceptions, hashable, http-client
-     , http-conduit, http-types, lens, memory, mtl, QuickCheck
-     , quickcheck-unicode, resourcet, scientific, semigroups, tagged
-     , tasty, tasty-hunit, tasty-quickcheck, template-haskell, text
-     , time, transformers, transformers-compat, unordered-containers
-     , xml-conduit, xml-types
+    ({ mkDerivation, aeson, attoparsec, base, bytestring
+     , case-insensitive, conduit, conduit-extra, containers, crypton
+     , data-ordlist, deepseq, hashable, http-client, http-conduit
+     , http-types, lens, memory, QuickCheck, quickcheck-unicode
+     , regex-posix, resourcet, scientific, tasty, tasty-hunit
+     , tasty-quickcheck, template-haskell, text, time, transformers
+     , unordered-containers, xml-conduit, xml-types
      }:
      mkDerivation {
        pname = "amazonka-core";
-       version = "1.6.1";
-       sha256 = "0hx250dja1l4n4y5115w0qngzlqj8f6p861sdaykh0yjm4nzb621";
-       revision = "2";
-       editedCabalFile = "15mwn2cv4f99rb53wzk7hplb6ncpcl7crsvj8dx71ymm60cf2kxr";
+       version = "2.0";
+       sha256 = "1lsd9nzyvwwp7j4kii6fp7n98x1qa6999ggwwia5sa06fgqz39bm";
        libraryHaskellDepends = [
-         aeson attoparsec base bifunctors bytestring case-insensitive
-         conduit conduit-extra cryptonite deepseq exceptions hashable
-         http-client http-conduit http-types lens memory mtl resourcet
-         scientific semigroups tagged text time transformers
-         transformers-compat unordered-containers xml-conduit xml-types
+         aeson attoparsec base bytestring case-insensitive conduit
+         conduit-extra containers crypton deepseq hashable http-client
+         http-conduit http-types lens memory regex-posix resourcet
+         scientific text time transformers unordered-containers xml-conduit
+         xml-types
        ];
        testHaskellDepends = [
          aeson base bytestring case-insensitive conduit data-ordlist
-         http-conduit http-types lens QuickCheck quickcheck-unicode tasty
+         http-conduit http-types QuickCheck quickcheck-unicode tasty
          tasty-hunit tasty-quickcheck template-haskell text time
        ];
        description = "Core data types and functionality for Amazonka libraries";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "amazonka-cost-explorer" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-cost-explorer";
-       version = "1.6.1";
-       sha256 = "1hrcg3ibs1wwbbpdhpkzplqg48jd0ckhpyv1c1lfkhdgbxzb9gwc";
+       version = "2.0";
+       sha256 = "0xl3xs502qh74h10m32zbcjp4n1dadfwhh6gqmsjns6zy92xr0v1";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Cost Explorer Service SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-cur" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-cur";
-       version = "1.6.1";
-       sha256 = "0rigrrr7malmj6l2zxxda3bvljpakjnh6k986nm7fl5dg7qyvq62";
+       version = "2.0";
+       sha256 = "0ki316fhwm9fsk8pfiwm7z9wkjdknjlf6jz07hg9zg3x5jiix28p";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Cost and Usage Report Service SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-customer-profiles" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-customer-profiles";
+       version = "2.0";
+       sha256 = "1whk66pzqdrfaw8clz6xfjayjzmabmbh42w0gvqy5gsl15f3sz7d";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Connect Customer Profiles SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-databrew" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-databrew";
+       version = "2.0";
+       sha256 = "18ciw2y284jfl4z9mvp6bk91x92zplrwkic6i634nvvadw25m0vz";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Glue DataBrew SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-dataexchange" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-dataexchange";
+       version = "2.0";
+       sha256 = "1s4nlfrvv6fr6wkkawzqmy6cc25ma8hls32pnqib9ipf1z77h8mj";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Data Exchange SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-datapipeline" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-datapipeline";
-       version = "1.6.1";
-       sha256 = "08mig2diwr6ryyvin3w9rj3w37lm02v85c3bhnz5k7649s255xvb";
+       version = "2.0";
+       sha256 = "12qz9yxsxfjwkz6dm77c7li5zb20407swwmvpqhmzykmi3wjcjai";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Data Pipeline SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-datasync" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-datasync";
+       version = "2.0";
+       sha256 = "05r8zbajk6vdvh96p3v0ml53gg5jhfrck3ph9sh81wfc3dhb8bpl";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon DataSync SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-detective" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-detective";
+       version = "2.0";
+       sha256 = "1j7zipg23v09jhfi1x07ppfahx5aqmrn8gbcyy53nf49i49w7c1i";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Detective SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-devicefarm" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-devicefarm";
-       version = "1.6.1";
-       sha256 = "1v43k8vyal9zi91yad3518jlr5qj975l27hbdri7q7w9iax5pn5y";
+       version = "2.0";
+       sha256 = "1hfpvygp1mbazax2bp7bg6wan1scp188fjymby0lk7v7px4inmpg";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Device Farm SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-devops-guru" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-devops-guru";
+       version = "2.0";
+       sha256 = "005qvd82mg6waz64p3q8scyy07yn7c1ary8b3wrd5whp9km8jfqf";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon DevOps Guru SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-directconnect" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-directconnect";
-       version = "1.6.1";
-       sha256 = "0nq4zax36am2y5p51g4giqln26nbjyykgprqa6z1hl8ls659jqfw";
+       version = "2.0";
+       sha256 = "00k10jwba9by8insnn8frrgki3s9frw104lw8k0vqaapnk1jprql";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Direct Connect SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-discovery" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-discovery";
-       version = "1.6.1";
-       sha256 = "17a47yhqy7hs9vhj0iwby14irh732j2d00sm7zh3xpvipwrckaq2";
+       version = "2.0";
+       sha256 = "19jqwyyqyw7qv08m01y4ag48l7ixnirq31jbyz5r13jhsd5ala0b";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Application Discovery Service SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-dlm" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-dlm";
+       version = "2.0";
+       sha256 = "0kn6n1l94f9i74h4b9mjiz9i1rk3j62gfzxdr88qsdc73ax7pbpp";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Data Lifecycle Manager SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-dms" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-dms";
-       version = "1.6.1";
-       sha256 = "11zdwcl0cz7fpamc7a9smg6qjnkc3a77l1g8k9q5y0yprhbzcycc";
+       version = "2.0";
+       sha256 = "09kww8bspyi0ajvzsxn6wkfgip44fbzlkpbp73zfwf6qyb8hqmw7";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Database Migration Service SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-docdb" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-docdb";
+       version = "2.0";
+       sha256 = "13jwf2hh6azv8kqgdygvdns6g1h0048ymlq046yxg23hd3nxnp9q";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon DocumentDB with MongoDB compatibility SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-docdb-elastic" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-docdb-elastic";
+       version = "2.0";
+       sha256 = "009h8yw2p9cs8chflbfiqrcy8rhmc9385jyxig3lhx7i9dxgkqgy";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon DocumentDB Elastic Clusters SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-drs" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-drs";
+       version = "2.0";
+       sha256 = "0f3fh71irj9ka5znmjn4z2pgnqqj8f8qzd1bma43cwvp8b6ay7ai";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Elastic Disaster Recovery Service SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-ds" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-ds";
-       version = "1.6.1";
-       sha256 = "1zy8sr49ls5qzijr7phsbc5xmxsc4hqc1dwrzkm5cmc69abhfj7v";
+       version = "2.0";
+       sha256 = "1xz7iah24729fgcqn5zm7r66kgmgaash7irkch78brac032n77d9";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Directory Service SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-dynamodb" = callPackage
-    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+    ({ mkDerivation, aeson, amazonka-core, amazonka-test, base
+     , bytestring, case-insensitive, containers, hashable, tasty
+     , tasty-hunit, text, time, unordered-containers, vector
      }:
      mkDerivation {
        pname = "amazonka-dynamodb";
-       version = "1.6.1";
-       sha256 = "10hxbkq15l2hcyjjspi3kf05m3294ywk51vw82j3c1pii1n4h804";
-       libraryHaskellDepends = [ amazonka-core base ];
+       version = "2.0";
+       sha256 = "1clxhxv3dmk8amhqp0iwglr5xw90krkr4gyqssl7wzapsdq5ka2p";
+       libraryHaskellDepends = [
+         aeson amazonka-core base containers hashable unordered-containers
+         vector
+       ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon DynamoDB SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-dynamodb-dax" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-dynamodb-dax";
-       version = "1.6.1";
-       sha256 = "0s8n60lkjigbgn8a63cpwq1pj6nvjyhrx5w6bx1nqfls8y5ik857";
+       version = "2.0";
+       sha256 = "11davhsjds7waqgnh0rp7jq7jrsb2817144ca0b9s93ac06c09wj";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon DynamoDB Accelerator (DAX) SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-dynamodb-streams" = callPackage
-    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+    ({ mkDerivation, aeson, amazonka-core, amazonka-test, base
+     , bytestring, case-insensitive, containers, hashable, tasty
+     , tasty-hunit, text, time, unordered-containers, vector
      }:
      mkDerivation {
        pname = "amazonka-dynamodb-streams";
-       version = "1.6.1";
-       sha256 = "0nfr9sqiirxb9a8j6ix2l1mhyrwx061q4h7lr57ar7arj9lanbgy";
-       libraryHaskellDepends = [ amazonka-core base ];
+       version = "2.0";
+       sha256 = "0rmr4xd7p08wmkggd1mxrhiqz3nkr46xdj8zhi4kk8nzppjmzv2l";
+       libraryHaskellDepends = [
+         aeson amazonka-core base containers hashable unordered-containers
+         vector
+       ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon DynamoDB Streams SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-ebs" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-ebs";
+       version = "2.0";
+       sha256 = "0dkfyldlr0nr0h8mpiqbv3gs6p9q94sa7gkwdc5hzcwrbhkmqs2h";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Elastic Block Store SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-ec2" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-ec2";
-       version = "1.6.1";
-       sha256 = "1lxdi92x60bd7r41abcz20dabs07qxy0ipmxgryqmrxkrqj9jjmh";
+       version = "2.0";
+       sha256 = "1ki3x2j6gz4szsgi5k22cidn7qhhbyx16s6gvxihaq42776q29wg";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Elastic Compute Cloud SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-ec2-instance-connect" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-ec2-instance-connect";
+       version = "2.0";
+       sha256 = "08pzb7f5450ji7l57b8c7arl7fq91h1an78h9gsvhayfmn1hd04n";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon EC2 Instance Connect SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-ecr" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-ecr";
-       version = "1.6.1";
-       sha256 = "0n3kdkmmwasqg7gkhmszkhvzsfp90mjlhfwx02v12gpn83b5s39d";
+       version = "2.0";
+       sha256 = "1sy8a0dspw3d4skkqba05ay0g2s0iywar1fdddl9cv7zfd2mlp03";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon EC2 Container Registry SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-ecr-public" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-ecr-public";
+       version = "2.0";
+       sha256 = "005gj4m5fi42ckqln763pxdw54kjcci9167hw6k7asf2mgzg5kbn";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Elastic Container Registry Public SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-ecs" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-ecs";
-       version = "1.6.1";
-       sha256 = "1fhv3b62anx1zlspmdi5l44qgsk4xd7s0p2vxczvzf82mcli21sm";
+       version = "2.0";
+       sha256 = "0vwnbrknr2f7fb03frdpr9hq82rkdyn4amfbyic2hfa630nq0q49";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon EC2 Container Service SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-efs" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-efs";
-       version = "1.6.1";
-       sha256 = "135isr1khawf2ap3ba791aynlm74hay7jddhrf6vsfscn1z087kl";
+       version = "2.0";
+       sha256 = "1f9jv7szg0i3w5v86bjkwfhxj29058fx6493aa1xndd1iaa5wk19";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Elastic File System SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-eks" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-eks";
+       version = "2.0";
+       sha256 = "0yq0gbg4b6xxgziy9ixwfn4gmvw8yllriadyl3bgyadxigxwbx2r";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Elastic Kubernetes Service SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-elastic-inference" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-elastic-inference";
+       version = "2.0";
+       sha256 = "1sw9fjqbyzkbp6sh9p2qgl7q3id1nni16sb009bzs2w8q58cbzq8";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Elastic Inference SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-elasticache" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-elasticache";
-       version = "1.6.1";
-       sha256 = "0q7bzr3xcc78163md6i1gzxhbqrb98x8clisp9vynhvw5vh8lbad";
+       version = "2.0";
+       sha256 = "1ksrcpnv5i718ibmz4qhghkm8a9y96jlmdfgrc97zkdpw0pcy4wx";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon ElastiCache SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-elasticbeanstalk" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-elasticbeanstalk";
-       version = "1.6.1";
-       sha256 = "0sczhwhckhgyf3dbmp0hnaikqkym94kyndyqzpsl9m8p0blgkm1a";
+       version = "2.0";
+       sha256 = "1w4lqgsrsnrnjwla7jwby1lnh4fan0rklgzvpp653ayavmmd9hr2";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Elastic Beanstalk SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-elasticsearch" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-elasticsearch";
-       version = "1.6.1";
-       sha256 = "04ya0s83gakhbkpgimmgjax09caww8y7cx1nm1j02fminifivycy";
+       version = "2.0";
+       sha256 = "01wpyp2hz83njjk8kk4bvvpwb6a381gdqi48637bpzsslxim3zhr";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Elasticsearch Service SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-elastictranscoder" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-elastictranscoder";
-       version = "1.6.1";
-       sha256 = "0nzvjzb91jka0wiimvjh5hlfqw92bsn16m1dvgnk315p7pgfg06z";
+       version = "2.0";
+       sha256 = "1xzx1w6mn1m33mnb7r4a4mspllvfhm1dnv46hvs07zxlp2ggdm43";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Elastic Transcoder SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-elb" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-elb";
-       version = "1.6.1";
-       sha256 = "178hpbk35vbc6lrmpjkdc57d8961bbv8nqn1bajxm65q3nwfqpjv";
+       version = "2.0";
+       sha256 = "1vazcpz651x2s7zwfkpyiwh84aa9rfrs7aa3h1s7jnvf59flqvzw";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Elastic Load Balancing SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-elbv2" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-elbv2";
-       version = "1.6.1";
-       sha256 = "0ybv5wwfn0cnd3qwk7r343jihq6m0h15f6xr2a2yxjs8wizr0h37";
+       version = "2.0";
+       sha256 = "1h5822vhy4wx5ddrqwv73vi9mfx0jljyqizilpr313wv5f9f0mq0";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Elastic Load Balancing SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-emr" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-emr";
-       version = "1.6.1";
-       sha256 = "1g475pn0sxf4widb2xqpsm4awvqj6glpdj3ryyqhp7i38wvcg4sb";
+       version = "2.0";
+       sha256 = "1mjljrxvixgpb8xl3i2knik1zr871n221gxh3xj3pxly8zi9sdck";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
-       description = "Amazon Elastic MapReduce SDK";
+       description = "Amazon EMR SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-emr-containers" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-emr-containers";
+       version = "2.0";
+       sha256 = "0mlddzrrp5qmgvpi45brdf5vhp0099m5ka6s7ggp1bwnizmi2is2";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon EMR Containers SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-emr-serverless" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-emr-serverless";
+       version = "2.0";
+       sha256 = "1ay9hyi4x4d5x6183njbr0b8plnmp2apgnfnksfmmjz5vinirxx5";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon EMR Serverless SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-evidently" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-evidently";
+       version = "2.0";
+       sha256 = "05s3d16f00fhrnsvgvcb05y1w63fwimg5d9sl34qsx92n6glzd6w";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon CloudWatch Evidently SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-finspace" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-finspace";
+       version = "2.0";
+       sha256 = "16wkklbwjsz344hrva4b8iilg3qmbpfrvag98jdvlv7i60r9s24h";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon FinSpace User Environment Management service SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-finspace-data" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-finspace-data";
+       version = "2.0";
+       sha256 = "0fv90rzpa0cxjk5kdx19z4xcnww330zqdzyzxmdkxi2gvbgwhkkq";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon FinSpace Public API SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-fis" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-fis";
+       version = "2.0";
+       sha256 = "1f4rf1k1ln6v9v949bd5rq7xcz68qy608d1r3lkkmaajkawxvagy";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Fault Injection Simulator SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-fms" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-fms";
-       version = "1.6.1";
-       sha256 = "1nrgjqmm77difl82ixaif56waw89mx0m8p0hgblzfq47gi28n6mh";
+       version = "2.0";
+       sha256 = "1flrwdvpclal957dxli05y2yvacrhl8a9j32w3ywkg2sach9cv47";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Firewall Management Service SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-forecast" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-forecast";
+       version = "2.0";
+       sha256 = "02m9haxqrwyrmqr0bz6s8sn82aq3da1zhdcqqij79kp2r5q27kxc";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Forecast Service SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-forecastquery" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-forecastquery";
+       version = "2.0";
+       sha256 = "0qf1pkmwypk1vdx23nvf6cya4xbs2wjd8i2qrl2brlg3cav1pm57";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Forecast Query Service SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-frauddetector" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-frauddetector";
+       version = "2.0";
+       sha256 = "0m7sb4az8c9yfyibfanbj1w5j7nn670hdqqqvs9gbcmckqp91z1s";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Fraud Detector SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-fsx" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-fsx";
+       version = "2.0";
+       sha256 = "1yxadzl3j7h6jfiz6dahgf3zl79na9rmi2v35kynmy0hpdfsjd75";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon FSx SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-gamelift" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-gamelift";
-       version = "1.6.1";
-       sha256 = "1cp3w3xi5icwh9ss168hsz49rq0d4wqns8kbx1aar7lchm85bj69";
+       version = "2.0";
+       sha256 = "0llz8kz31hgmyqxniqlbz9avbdpg77fn0fnlnldvm86xmg95752w";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon GameLift SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-gamesparks" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-gamesparks";
+       version = "2.0";
+       sha256 = "0hpg224x6nlpcpkvsg3r8vm0ga2p8rwdl1ajyvf9pa2i7fjvh5ya";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon GameSparks SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-glacier" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-glacier";
-       version = "1.6.1";
-       sha256 = "11q8ajyx8nf9lc7wr7vwpg1gvp4wwb83zyv17cdpr60g7mrwymav";
+       version = "2.0";
+       sha256 = "0wnvnw71rp6ls3flq50dkskb2yp4hkzv4jrssv93zfl41479h4p6";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Glacier SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-globalaccelerator" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-globalaccelerator";
+       version = "2.0";
+       sha256 = "01hamd5m9sdv6g8s532mj1w6jymaz88virbk8zxj4q55v5g18g8h";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Global Accelerator SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-glue" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-glue";
-       version = "1.6.1";
-       sha256 = "17z8bcgahxw7apanj9nm9srj47dxwshmkwm828jm49wpkcvk0akb";
+       version = "2.0";
+       sha256 = "0cfdf4x3xi7n3ar273ih6hlc4grad8anzvhk0b9rf4ipxqwspp1p";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Glue SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-grafana" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-grafana";
+       version = "2.0";
+       sha256 = "0n1iibjfczapwq063615yx5pkddinml53cw45fgmdvq3frsvrqn8";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Managed Grafana SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-greengrass" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-greengrass";
-       version = "1.6.1";
-       sha256 = "03l0igrx2za6004rxbhd047ww1csbffviii3q16csvxnj41kz8pg";
+       version = "2.0";
+       sha256 = "0qf67zygrq6vv8inmxx295hh6r6dq3i8h468qrrgf8fibgpmj6qn";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Greengrass SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-greengrassv2" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-greengrassv2";
+       version = "2.0";
+       sha256 = "1hjmbs7aj6cckya6nqyx3v7hjw2fgdr2k4qhy5drsvdkp5fjm9fx";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon IoT Greengrass V2 SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-groundstation" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-groundstation";
+       version = "2.0";
+       sha256 = "1cbwgk4lr5m6i39ppa56dkgfwfi04dq5ryf03f9a27n3p603lv30";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Ground Station SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-guardduty" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-guardduty";
-       version = "1.6.1";
-       sha256 = "0v1xpykjgz3nqj5yil4f2m5rs4xcfflk9a4xckix0yp5gkbbd01x";
+       version = "2.0";
+       sha256 = "07pmy62xml7sry2m69rp8xslyppb78mqdlddbggzqbi7crc1icdw";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon GuardDuty SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-health" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-health";
-       version = "1.6.1";
-       sha256 = "0xs6fsl7z8qq40vi79nasfxwlxxm2ljpzh4c1b77v6q1mkak7dd2";
+       version = "2.0";
+       sha256 = "0191klmixd3r4hzqkpajp9zwzalx0z480qqn96v9snhw7hp4kbsr";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Health APIs and Notifications SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-healthlake" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-healthlake";
+       version = "2.0";
+       sha256 = "1yhixqmfz1q0m3ny1vr3qxzxz9zwgfw7xpf66r2aspb2nwj9c33b";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon HealthLake SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-honeycode" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-honeycode";
+       version = "2.0";
+       sha256 = "0fg1x2s3xyf5rp69vl48cdkyaq4k00878zqbkr9zr70laqq78ri7";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Honeycode SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-iam" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-iam";
-       version = "1.6.1";
-       sha256 = "1mz7qdk19n3cs9iy5sf7h4g7a7sfimbb4lrk992f9ykmmyj0cl8x";
+       version = "2.0";
+       sha256 = "0pflcnb7ar2d7z9zvrd9sid08n4d99h40k69lirkd408kzw66dwf";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Identity and Access Management SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-iam-policy" = callPackage
@@ -29863,813 +31206,2387 @@ self: {
        broken = true;
      }) {};
 
+  "amazonka-identitystore" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-identitystore";
+       version = "2.0";
+       sha256 = "02l3nk7xz39iawdq9kycsf3szl3jq7wfh8f003mgxd2xz0a3d1ji";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon SSO Identity Store SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-imagebuilder" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-imagebuilder";
+       version = "2.0";
+       sha256 = "1xxcgm41830bf82zvswqmhv6snkx74vb7n4ic9zmivxc1qh0sj8w";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon EC2 Image Builder SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
   "amazonka-importexport" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-importexport";
-       version = "1.6.1";
-       sha256 = "13nxssqayp917g2ynmvva2mk0dqd724f891jx4z0cnlxrja2856f";
+       version = "2.0";
+       sha256 = "1xwvy6sm1y579yx83gaif2khn6xfsy8w4vkp9sxb9mh2pgvc22sp";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Import/Export SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-inspector" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-inspector";
-       version = "1.6.1";
-       sha256 = "0x5nxw2nb64ahjw4hy8lp7w32mqsq0zj0skj116pa4yf6p1v7d38";
+       version = "2.0";
+       sha256 = "02fbgk11c1p7k91b1sf61yig7rpw84mpnhjjg9sqiws84hk8v2vw";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Inspector SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-inspector2" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-inspector2";
+       version = "2.0";
+       sha256 = "0ngvgr2gd6s2smch1nmd9gp6dw1fw54xwn8yhh2fg1jk5388d3a9";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Inspector2 SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-iot" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-iot";
-       version = "1.6.1";
-       sha256 = "10y65lma8m8cyz753r3pkaayqfyhxs8103y63v0dardrvci3jxji";
+       version = "2.0";
+       sha256 = "0a4h32drks4bpg5n2syp2lm58j03vxr529q0c8gvky8lhv0w34sr";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon IoT SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-iot-analytics" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-iot-analytics";
-       version = "1.6.1";
-       sha256 = "1xwfz3s4sgd611bx045gjhnpjmh3c38i1hgvis968bx8ka47xbsk";
+       version = "2.0";
+       sha256 = "0r1nrm7k5jq2f6h113mwsbx1xphhzzvm2aqqvb876xyw7sylx02r";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon IoT Analytics SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-iot-dataplane" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-iot-dataplane";
-       version = "1.6.1";
-       sha256 = "0j0bqaw6nc3nhq6wbm1jlm7kdkf497xnba4yxk3q27gbx5zzjhvv";
+       version = "2.0";
+       sha256 = "0hvlmbdnn27y01cb6410vd80hw9aqf8aabbz2y2ajbfgj7bbqw9w";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon IoT Data Plane SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-iot-jobs-dataplane" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-iot-jobs-dataplane";
-       version = "1.6.1";
-       sha256 = "00s8hdhp6g5h1lilvpqawgy3l89hdn31374cgq8wcx09nmjj8san";
+       version = "2.0";
+       sha256 = "064vhx1dyvh2m0is2vnibg5baacr70sfn2xjgyhscjbzya7max3s";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon IoT Jobs Data Plane SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-iot-roborunner" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-iot-roborunner";
+       version = "2.0";
+       sha256 = "1yr0j6gzivvlmh10g6nsdm2jdgndw84nxn910ggcp6mf067f82if";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon IoT RoboRunner SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-iot1click-devices" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-iot1click-devices";
+       version = "2.0";
+       sha256 = "14lxx0lbl3fqih8x7h46z7vvh0fp729d3wnq1fjd5b8s1ysjg103";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon IoT 1-Click Devices Service SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-iot1click-projects" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-iot1click-projects";
+       version = "2.0";
+       sha256 = "15bff8l2g5zri03k790dnil9pkg33n98hmq8skk2xmfdzwrcnm73";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon IoT 1-Click Projects Service SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-iotdeviceadvisor" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-iotdeviceadvisor";
+       version = "2.0";
+       sha256 = "0xlybvyyfp6irfv3aqh21irzj9r6kvq1656a36aky7m0gknrfpp5";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon IoT Core Device Advisor SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-iotevents" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-iotevents";
+       version = "2.0";
+       sha256 = "0r822sfb0vh8bi7g860h82x9cd0p3myb9gq9s59sm4r6727kzirx";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon IoT Events SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-iotevents-data" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-iotevents-data";
+       version = "2.0";
+       sha256 = "04cf0853sqmgdw4362j79z80xpijgbpqgn7fp8sjbgmdkiyfkrng";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon IoT Events Data SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-iotfleethub" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-iotfleethub";
+       version = "2.0";
+       sha256 = "0ra5f8acfwc8dgijb9g790qh94g0dywr85yz4pv182gsw6z2gk5f";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon IoT Fleet Hub SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-iotfleetwise" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-iotfleetwise";
+       version = "2.0";
+       sha256 = "1j1k0zrq50w68v1wgi7viwqcxah1cm16sglypfw3c0izqjcd0k5f";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon IoT FleetWise SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-iotsecuretunneling" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-iotsecuretunneling";
+       version = "2.0";
+       sha256 = "0hir6wlidp4jl10hsli1b1mmgkzya3yn9bs31slahg2prcd7rigm";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon IoT Secure Tunneling SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-iotsitewise" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-iotsitewise";
+       version = "2.0";
+       sha256 = "1izjz5ayh66g1m0i5g0mnwqmk5k131vi417z0h44g6dm1d770m1d";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon IoT SiteWise SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-iotthingsgraph" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-iotthingsgraph";
+       version = "2.0";
+       sha256 = "0vz10z4jlfmqx4pjwj4qmbvr1cfbqq3435vzjphq1jrii9sqdb63";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon IoT Things Graph SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-iottwinmaker" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-iottwinmaker";
+       version = "2.0";
+       sha256 = "08hlmxry9z9z521nanjvl61q11d8zyqql6fbx71cpc1xvbjzrnpw";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon IoT TwinMaker SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-iotwireless" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-iotwireless";
+       version = "2.0";
+       sha256 = "02dcjjpk223dmqmsk315dg8nplihbhvs4af6cbr5nmk9xwv5amsf";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon IoT Wireless SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-ivs" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-ivs";
+       version = "2.0";
+       sha256 = "0j4m5v0mldjgcg2jm5hr6gm6hbxr0ss9gjdjp41hc0g5j52khws5";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Interactive Video Service SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-ivschat" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-ivschat";
+       version = "2.0";
+       sha256 = "1c5rlij31pk1ww150ii3fppnamsnvlw21vaalp78i1b9gnlhr0zi";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Interactive Video Service Chat SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-kafka" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-kafka";
+       version = "2.0";
+       sha256 = "0mv10gxxmcfwv57wcq1d75k77wlv0v56150wrfz8nvqqiyw04qcf";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Managed Streaming for Kafka SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-kafkaconnect" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-kafkaconnect";
+       version = "2.0";
+       sha256 = "0hk5qngygshjy5hsv1qqk7c4vq0zw1kp2g0drlsbai46sqv9s3l9";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Managed Streaming for Kafka Connect SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-kendra" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-kendra";
+       version = "2.0";
+       sha256 = "18znxnxdfdcg7mdyxvhxgdj8vbnkqs414f8qr11wzl3dydhhfmv3";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon KendraFrontendService SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-keyspaces" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-keyspaces";
+       version = "2.0";
+       sha256 = "01d2bicrxnl5vb7imaayqdan821ji8n14gk630npjw704ycmxa0b";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Keyspaces SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-kinesis" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-kinesis";
-       version = "1.6.1";
-       sha256 = "0rsipc64ia9hwcvw5bn0055bisq04kihnhzb4wzfvbgrzgrxrqsz";
+       version = "2.0";
+       sha256 = "1m1i5lfhaq167f1igh3hbzmg9i6f3ybd157qa1yivj6rfrd9b0j1";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Kinesis SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-kinesis-analytics" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-kinesis-analytics";
-       version = "1.6.1";
-       sha256 = "16bf0sqyrgphhbqi8lxzmgb818m7yajmdcwmzgz3w99zzad9qn5g";
+       version = "2.0";
+       sha256 = "0nv896vparpc4dkgz2bdby29kpxpa3afgnsl1yq9kmlyj0jdckpn";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Kinesis Analytics SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-kinesis-firehose" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-kinesis-firehose";
-       version = "1.6.1";
-       sha256 = "0bc7d36zs3b0nx2889hpnk45fcrn3dknn2c6gg19wk1k7zz0p8g4";
+       version = "2.0";
+       sha256 = "1m5za58l7j380z6dz5md3i7lvzhspdcsw8ggwdnf0df4s4kjmzqz";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Kinesis Firehose SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-kinesis-video" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-kinesis-video";
-       version = "1.6.1";
-       sha256 = "12v9jqr1x6gkxh7g3rzif24gv6wwh8f5rmf1bz6rbfai4sf75ixv";
+       version = "2.0";
+       sha256 = "0cjx1vg1ccrchbq21zn7zi4wvpcfk5498fkic3m6ncvflvzff6jl";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Kinesis Video Streams SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-kinesis-video-archived-media" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-kinesis-video-archived-media";
-       version = "1.6.1";
-       sha256 = "1qbms2rfgap2pn1ygd6ihjpqqpafhkpwn15z3vl5bslhk6f7bm0j";
+       version = "2.0";
+       sha256 = "0fci6d1x8qr8gg0qj0wf1a66dvj4p7xhfjb16iy1cs17a49zaqcb";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Kinesis Video Streams Archived Media SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-kinesis-video-media" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-kinesis-video-media";
-       version = "1.6.1";
-       sha256 = "1a5mq474g5iy8lp6sfgbr2b20swz6snhbi982zjyhkybvn6lgqh4";
+       version = "2.0";
+       sha256 = "05d8mxihr6br50jsd4lilda4bm5ql56jsshyn0b5y48fxqx5v53a";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Kinesis Video Streams Media SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-kinesis-video-signaling" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-kinesis-video-signaling";
+       version = "2.0";
+       sha256 = "0xj25p33m9h06bvr4n6c5nj3lf77q94nj76nj72kniv27akghbln";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Kinesis Video Signaling Channels SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-kinesis-video-webrtc-storage" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-kinesis-video-webrtc-storage";
+       version = "2.0";
+       sha256 = "0sxb2w02783lpgfs3bp39xqwkas87055rwkzgr0587nk8qr9fa4l";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Kinesis Video WebRTC Storage SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-kinesisanalyticsv2" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-kinesisanalyticsv2";
+       version = "2.0";
+       sha256 = "0s5y24bxlpi3w432rgymzpb07bkf0h6w3q2aq38bwk1nwaj9kxbi";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Kinesis Analytics SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-kms" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-kms";
-       version = "1.6.1";
-       sha256 = "11b2jnfdj2z3v65cbwwryr35n9pjf488mrs90j2prx6ijb1kwcvd";
+       version = "2.0";
+       sha256 = "0xklk7xis0jqbr32byz5jv0gjmspfbs03h7pd96gyn8q8s4anf4z";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Key Management Service SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-lakeformation" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-lakeformation";
+       version = "2.0";
+       sha256 = "1hhc7s55vd25w2azi83mr99fdldkgxn2559yl0b2nqyiimv3xv8g";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Lake Formation SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-lambda" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-lambda";
-       version = "1.6.1";
-       sha256 = "18yc1wk7dbyxjdqkdyp1hi45i8vc95imaj0xfr29yq5dbkqmyawp";
+       version = "2.0";
+       sha256 = "1ddibc2bhrzyx1mj41rmnp4c9gf7rackvgga3246j25dkqdqn7nh";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Lambda SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-lex-models" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-lex-models";
-       version = "1.6.1";
-       sha256 = "1dhxanxg748jqz8g6ixdca4jv2hgynpf6w6qdg293429zrj1f2ss";
+       version = "2.0";
+       sha256 = "016f4pq23q8g2w9hwyf8b45lplxzl449ylm1rfxl9pgx1i1p2l74";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Lex Model Building Service SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-lex-runtime" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-lex-runtime";
-       version = "1.6.1";
-       sha256 = "1ampjwlaqczcs2x1sqagn5cm2c6y9bgr2wp62idlnsv5ic5nqky2";
+       version = "2.0";
+       sha256 = "0zfmhqhgklp950zlqwbi9064hfz5ls66wjfsjf4j588v1rmdpa23";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Lex Runtime Service SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-lexv2-models" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-lexv2-models";
+       version = "2.0";
+       sha256 = "03sgrsdv9jaiqrnkckcz5538qlkn9xqr0xqh78phj6amfsp5l9j6";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Lex Model Building V2 SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-license-manager" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-license-manager";
+       version = "2.0";
+       sha256 = "0ln5khvs14wxg6z6km77a1j8qrln8y1yw3syv1dxzdvxvj1z259r";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon License Manager SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-license-manager-linux-subscriptions" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-license-manager-linux-subscriptions";
+       version = "2.0";
+       sha256 = "0zwz1i594xlams4608az6qwdal1jwhmfyq82y8jgl1wvwni8asvs";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon License Manager Linux Subscriptions SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-license-manager-user-subscriptions" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-license-manager-user-subscriptions";
+       version = "2.0";
+       sha256 = "0albn38qsn9bwrgzw12naxfrw3an2pj4azfs69zlqbryg6wyhn4n";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon License Manager User Subscriptions SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-lightsail" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-lightsail";
-       version = "1.6.1";
-       sha256 = "07lknfz41jc4vjd76ql32h6bbbhpb82wafj7w3ifwnxaz2h8wrvw";
+       version = "2.0";
+       sha256 = "0lx41dmg4hg6p50hvm7ji1f3i9vfsd2a98h0a0v0kx6gp9fy1404";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Lightsail SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-location" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-location";
+       version = "2.0";
+       sha256 = "0cbjz3wqjjfksmy938zby1nylajq3f1k7xndmjyp1yz10d8hiys6";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Location Service SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-lookoutequipment" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-lookoutequipment";
+       version = "2.0";
+       sha256 = "0rlchl8vc1k0082h8w76hbis8dkxkqhkxqfjr3ndzdba3h3j8pfk";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Lookout for Equipment SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-lookoutmetrics" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-lookoutmetrics";
+       version = "2.0";
+       sha256 = "0gr60r1ix2z9c372allxki2n290n7kcw2488l9azlg343rqr58fx";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Lookout for Metrics SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-lookoutvision" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-lookoutvision";
+       version = "2.0";
+       sha256 = "1ylkwkvrxvnh46dscj31fda40sfm0isf60mh55w16y610lavac9i";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Lookout for Vision SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-m2" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-m2";
+       version = "2.0";
+       sha256 = "00vhq64l12v1n1063w4drcwskkap53y5180knh2h0gj79c968rsk";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon MainframeModernization SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-macie" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-macie";
+       version = "2.0";
+       sha256 = "1vylyn951bk03k1n28whha7gp3mbmfam3y65snk0nvlybxhbmsxl";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Macie SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-maciev2" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-maciev2";
+       version = "2.0";
+       sha256 = "1ym618fifpivnbwv1zznxl3xgi61ssq6hpd1h6sz4bzczik7ybvx";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Macie 2 SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-managedblockchain" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-managedblockchain";
+       version = "2.0";
+       sha256 = "059m7vvj1h3zaikb11ydcshh9bmib6z4hwppbs4z46hvlml9y24g";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Managed Blockchain SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-marketplace-analytics" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-marketplace-analytics";
-       version = "1.6.1";
-       sha256 = "0z8kl946ssilj4vb50a5pv21kyfd0fp1bs3l3xyxjc1ynypq5xbg";
+       version = "2.0";
+       sha256 = "188f4bhbhijm3ha1avs8pikyl624hcyd4iks2smyfrm2hcn1nldh";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Marketplace Commerce Analytics SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-marketplace-catalog" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-marketplace-catalog";
+       version = "2.0";
+       sha256 = "0vrbk0rjsbrli12jynkraigyc35f9wr2w5bslli8xiqb7j0b7yr8";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Marketplace Catalog Service SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-marketplace-entitlement" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-marketplace-entitlement";
-       version = "1.6.1";
-       sha256 = "03ik11dkksw1m2jrd12cpgd3gjczcwcbmwl1xg6p9y2f5fyq056i";
+       version = "2.0";
+       sha256 = "0xhi9gh0cf4gxcd9k13h5nxlxll3hs200lllan23376f53g28j3s";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Marketplace Entitlement Service SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-marketplace-metering" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-marketplace-metering";
-       version = "1.6.1";
-       sha256 = "0dshx2nyhsywmx491cvzfcr3dz847q7mjdj9zwli9f6kzgldp2wj";
+       version = "2.0";
+       sha256 = "1jsnfykpa2n7l6rfp12zdxjcyamdps0xx836ngnn5xrj1wzqsh9j";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Marketplace Metering SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-mechanicalturk" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-mechanicalturk";
-       version = "1.6.1";
-       sha256 = "0cap5qkwwzgrkjxqg1rjmx8w9wa74p6h436w427yw53dxi6saxlh";
+       version = "2.0";
+       sha256 = "02mbpyq5c8qbdznpgz1gd9i6na845ppldizpxlr2cd5iqxc8nc1a";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Mechanical Turk SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-mediaconnect" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-mediaconnect";
+       version = "2.0";
+       sha256 = "0lxcfys8rncijcdwpj75zwjgid5x284dsm0hp5n2vvcm4dlz0cgz";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon MediaConnect SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-mediaconvert" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-mediaconvert";
-       version = "1.6.1";
-       sha256 = "0zzdx21mjma5z04a4s6gf5h6wy8vv72a5m71h2hmr5f65asfi8k5";
+       version = "2.0";
+       sha256 = "0k2ci77r3ynv60s96yjyla4al0vkaxf1byhlxgkwq4admzw17krs";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Elemental MediaConvert SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-medialive" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-medialive";
-       version = "1.6.1";
-       sha256 = "0b85pp51xpgl0v83wkym807gfp91qmgq8y0m85ygpyks69gnbs14";
+       version = "2.0";
+       sha256 = "0a79i51bcsc1b99nswqjhdi6kcxa81xp8rn8xsn2d0zmliv8pcbw";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Elemental MediaLive SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-mediapackage" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-mediapackage";
-       version = "1.6.1";
-       sha256 = "08ayhbd8w7aqgw4y89akax24gx90n56d4p8cfm4favga10j46zj3";
+       version = "2.0";
+       sha256 = "0qyqlw1jww9yzd0a4l91x2qdbfy7m97pn8n4dsxg5mwbicww74m7";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Elemental MediaPackage SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-mediapackage-vod" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-mediapackage-vod";
+       version = "2.0";
+       sha256 = "0d0wg954pdb62sm5j8j9pypn6nmgs7lp818ymnjd3fh89fql0wq3";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Elemental MediaPackage VOD SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-mediastore" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-mediastore";
-       version = "1.6.1";
-       sha256 = "1cdns9s4mrnpnziq7b431iwx3swcl55c20a0migf2kzbyzcv9a7z";
+       version = "2.0";
+       sha256 = "12r10krbj4x8cp4bgjngpwnb4qlq43cf3g0z2zrkn6v660cr7yas";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Elemental MediaStore SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-mediastore-dataplane" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-mediastore-dataplane";
-       version = "1.6.1";
-       sha256 = "1sd73z4pqa1x25x3qp64yxz5wljhavbvlrj07g4222bz01p8rb3q";
+       version = "2.0";
+       sha256 = "0vxcbbqqk6w155i1r0hzxjp90l5kqjcz290qldamapw75y4ypxkf";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Elemental MediaStore Data Plane SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-mediatailor" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-mediatailor";
+       version = "2.0";
+       sha256 = "0iw75yhz5fl013lqynzhvigzr59k3cw1q6z0p4l8078356dv4v9c";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon MediaTailor SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-memorydb" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-memorydb";
+       version = "2.0";
+       sha256 = "034gjsc8gnwyi80h9w4a24fksb1vy8jh07nqwyjyxpzn69yvv8jv";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon MemoryDB SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-mgn" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-mgn";
+       version = "2.0";
+       sha256 = "18njvfhb589vkmpbpgi13p7vw808bl8aff55736wj96lx6403c91";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Application Migration Service SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-migration-hub-refactor-spaces" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-migration-hub-refactor-spaces";
+       version = "2.0";
+       sha256 = "10lhwaf6fr6d505dwa3cm5x3k67bnlfnrrjf11i23p0833fsnj6k";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Migration Hub Refactor Spaces SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-migrationhub" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-migrationhub";
-       version = "1.6.1";
-       sha256 = "0gwmlr861g6f85wb46708wjvxixq2id6lxdk6vdkv838z1h60gl7";
+       version = "2.0";
+       sha256 = "1wahzyhvyf2xf3wvwnc8z3wj4b2cl9zv3cigfcqq6q2m8qhd7ph7";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Migration Hub SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-migrationhub-config" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-migrationhub-config";
+       version = "2.0";
+       sha256 = "1f225q3c1gl0js2lwcqz2i74cp36a24f2qlsabkb3bc5d5p7d3yw";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Migration Hub Config SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-migrationhuborchestrator" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-migrationhuborchestrator";
+       version = "2.0";
+       sha256 = "1ndhx53nb9jshvlwmj5k7g2gvfvliqz9c6lnj74fsdn8ajg5cgyn";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Migration Hub Orchestrator SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-migrationhubstrategy" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-migrationhubstrategy";
+       version = "2.0";
+       sha256 = "1iw123rkgn7jhdpmm4cslb619ch0gfbyqnm2va6r181k25f52hsy";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Migration Hub Strategy Recommendations SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-ml" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-ml";
-       version = "1.6.1";
-       sha256 = "0wmqlx4k17m3zywkj39z3fv6jbmhhz9w7ax1g465gzizcswc1ixq";
+       version = "2.0";
+       sha256 = "1fs6rzww4c1d3gz2gbxf214i1mbj97irfvxw925pjpxnaclviv6q";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Machine Learning SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-mobile" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-mobile";
-       version = "1.6.1";
-       sha256 = "1jx32by2xlkfb57c2d981i4ibsy8a59sgr2xfgsngfjdmpg844lp";
+       version = "2.0";
+       sha256 = "0zsdlxlrrl5cmmxpvcbkg2izd8m0f213l8fdjbdigfmrppr2kird";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Mobile SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-mq" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-mq";
-       version = "1.6.1";
-       sha256 = "0whgnswjvx8a8wj01wd65b41yza3110g1zqwmvs6srjx6zjs3ha0";
+       version = "2.0";
+       sha256 = "0hlw8x1rqbicv3gkngdv9bh3im2r3rjrwd6p6240x5kaviy00gsi";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon MQ SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-mwaa" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-mwaa";
+       version = "2.0";
+       sha256 = "02jr13r5plhdxjbv8w1j90brkqxpjwq75s4gpbgyq8v831y9a2fj";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon MWAA SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-neptune" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-neptune";
+       version = "2.0";
+       sha256 = "14znb9mn4ln9xnsb2s1qf2361gm2jxxj30i1p9qjxv0bm3r9g02q";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Neptune SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-network-firewall" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-network-firewall";
+       version = "2.0";
+       sha256 = "03vn5rgp0pzjj3f7jydkpn7fdbhbfk6hci1kg5ljbyg9q5zs2qj1";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Network Firewall SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-networkmanager" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-networkmanager";
+       version = "2.0";
+       sha256 = "1n05xp135xxkbjd0c7rcm1xj47lvdbd7cpclkv6hifxlldqr7hwg";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Network Manager SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-nimble" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-nimble";
+       version = "2.0";
+       sha256 = "1vjkypkjhf40xk00smjrzqpg333cpgq8jyri66z9s7604vhcsiff";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon NimbleStudio SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-oam" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-oam";
+       version = "2.0";
+       sha256 = "0xhkgf513rk1zw4dvmr85xaa27d4ybvpbbbpq8j44y55d3jw2r20";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon CloudWatch Observability Access Manager SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-omics" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-omics";
+       version = "2.0";
+       sha256 = "1y7xnzg81s941zmvf2vadd9iss0wkxsrk426n8m7gazgz340nqan";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Omics SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-opensearch" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-opensearch";
+       version = "2.0";
+       sha256 = "14hgcp7wxnk8xp3xapsmkxdr2lni37ls4wg88larbkzx8kr10la6";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon OpenSearch Service SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-opensearchserverless" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-opensearchserverless";
+       version = "2.0";
+       sha256 = "1phydxi9sqylmqnxv4shy556x959na84yyf9i7k3aknjd9p41gvr";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon OpenSearch Service Serverless SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-opsworks" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-opsworks";
-       version = "1.6.1";
-       sha256 = "15magxqrylyxdkqa5xyihq00nfh4pv0g7wl6gp9smvg5svq1c5qa";
+       version = "2.0";
+       sha256 = "0rk6jwcpaqnnz812hxiqwh7d0c7qc1115vsljdhh08id21rvc76y";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon OpsWorks SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-opsworks-cm" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-opsworks-cm";
-       version = "1.6.1";
-       sha256 = "0mya7swx8x4p7wz17p62jn8ixw4xi72w6691r4ay5gphl81pi1ai";
+       version = "2.0";
+       sha256 = "1cnh2mjl3n2wgdq2rykc7ya0m4x3rvc3xaxbp3hm68xmryb185r8";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
-       description = "Amazon OpsWorks for Chef Automate SDK";
+       description = "Amazon OpsWorks CM SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-organizations" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-organizations";
-       version = "1.6.1";
-       sha256 = "1yx7hfnl6nnhdx3ryjvg8vkyj053m2a6zds61vrnl2kc0n890bcs";
+       version = "2.0";
+       sha256 = "1q0y81cp5xn87yw1dj15nqbmvfzvv8sjzsllr73h4cplcqx47rfm";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Organizations SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-outposts" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-outposts";
+       version = "2.0";
+       sha256 = "0pd6r5xpa5dxp47nhxsn2v9sx47xnm9z9961qqlm4a9m7zmlc5ff";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Outposts SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-panorama" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-panorama";
+       version = "2.0";
+       sha256 = "11jii4fq77slfy7x00gg0l7fn925rfmp8yzqy4jjl7pmh8s1gbm0";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Panorama SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-personalize" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-personalize";
+       version = "2.0";
+       sha256 = "1l6h1273pgwk0jdqd910wqqjv9inm278klhagihfywi31jm8lrnj";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Personalize SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-personalize-events" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-personalize-events";
+       version = "2.0";
+       sha256 = "17nrk0j4xml8wsd332yqa3mw6kyrd2wax3vhsvz6akmsz3mqymcn";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Personalize Events SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-personalize-runtime" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-personalize-runtime";
+       version = "2.0";
+       sha256 = "0xrpf2lqvjdqqfgl160dhd6gpq07815jl0nymz2x6wyrj19bm9ah";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Personalize Runtime SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-pi" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-pi";
+       version = "2.0";
+       sha256 = "1mpqj1mwp63ifyk260lscg3rffilmlya4yk3rjsc3fb7wv5qvklm";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Performance Insights SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-pinpoint" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-pinpoint";
-       version = "1.6.1";
-       sha256 = "11zw2xkn39c75frqpm67x2qpb63xzl25633ny0b3rbdpak8w4f5a";
+       version = "2.0";
+       sha256 = "09iwgl9wb40jv35djxxgn1d3k6r1gw0k2ra875f9zgqj0vay5b0w";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Pinpoint SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-pinpoint-email" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-pinpoint-email";
+       version = "2.0";
+       sha256 = "1b56zm0wss0da7mnd8bidgcl1w4pdrzmdsdwqcf8b8kjnqwvsql4";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Pinpoint Email Service SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-pinpoint-sms-voice" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-pinpoint-sms-voice";
+       version = "2.0";
+       sha256 = "16qb4jkpicpb9rf4a2k0zxrlapxficir36i8mpp544xhnz2mdf5z";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Pinpoint SMS and Voice Service SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-pinpoint-sms-voice-v2" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-pinpoint-sms-voice-v2";
+       version = "2.0";
+       sha256 = "00rjz3lxc63xxarkjxz4gbmb49xr23jqnn7i3n45fl4w3w8dxqvn";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Pinpoint SMS Voice V2 SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-pipes" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-pipes";
+       version = "2.0";
+       sha256 = "1hq2g003jsgydi4ak8m8brdgji2d0kar9glanyag52hgya0cdwf0";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon EventBridge Pipes SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-polly" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-polly";
-       version = "1.6.1";
-       sha256 = "1vyckykw1in9qlz824k4zmn9xixlf2ak479vfcb1p872ri2pb25h";
+       version = "2.0";
+       sha256 = "066hzqm18cjm0jv268zsgfgj71wc065slilb83vin1w1wymdbpnh";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Polly SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-pricing" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-pricing";
-       version = "1.6.1";
-       sha256 = "1mh04sali41d8zchd8ibcvzv9vnfdlcwzz6p3n72wmczqaz2ps8v";
+       version = "2.0";
+       sha256 = "0sa2z8m09jrhnlq1ns60x1g0anqdfg4kffgiz8928dda97icix4i";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Price List Service SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-privatenetworks" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-privatenetworks";
+       version = "2.0";
+       sha256 = "028y9cs8rgmyg16lvfsnzy2lzlf89wm7jf36ipyvi5gjcrpz6yl1";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Private 5G SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-proton" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-proton";
+       version = "2.0";
+       sha256 = "1sb8b61ck7c3pdw78vc69yqyavxfqdqcdbngi8g2w9ynj312wqgv";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Proton SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-qldb" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-qldb";
+       version = "2.0";
+       sha256 = "0yw300mj7h0bgk18qwjqbnvc0ffdi2jllqxsikn346c1c2xbkvcc";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon QLDB SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-qldb-session" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-qldb-session";
+       version = "2.0";
+       sha256 = "0hsbbd19z1zm89zqgz37m86mcmadjki9ah7z82wjjzd6ndckxf5g";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon QLDB Session SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-quicksight" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-quicksight";
+       version = "2.0";
+       sha256 = "1iq02m726lrymnga5j03fvx4jx0a18w19vy9wnpdaxb669s12y7n";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon QuickSight SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-ram" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-ram";
+       version = "2.0";
+       sha256 = "0zlyh5qzjx2nbfkli9qsy4j5fc1lal78swa595dsmbif6jn63zbz";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Resource Access Manager SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-rbin" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-rbin";
+       version = "2.0";
+       sha256 = "1l8rsbw9j1i7xbav207ys616qyfkq25rc69f3j8kr9hifmjlx34b";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Recycle Bin SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-rds" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-rds";
-       version = "1.6.1";
-       sha256 = "08cl73fczrf94k5z92w2cpf3ngrcqhb6xiygbh3vv4wh6l541lpw";
+       version = "2.0";
+       sha256 = "02bw1qg0h6xcgp09f72xvc4kls6hl4qirz7sbs90p4vlmq4jsmz9";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Relational Database Service SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-rds-data" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-rds-data";
+       version = "2.0";
+       sha256 = "1bzz40i00cg2yyj9iqhxw9rnq243dcs65m4xx3zlcjwdg55lzbla";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon RDS DataService SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-redshift" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-redshift";
-       version = "1.6.1";
-       sha256 = "051281bgr65xsyac3vy1zbjs3v3avw4f2wk1743cqdjnarg8bsl7";
+       version = "2.0";
+       sha256 = "1prq0mh73lzvaq4np7r3h7qw8pgf3nszvqvk9bzcdkccc4iy1j26";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Redshift SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-redshift-data" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-redshift-data";
+       version = "2.0";
+       sha256 = "0d1vmlk15j1rxhqr3h86admm6y351p862jpyd1wb1lws4rlk0nf6";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Redshift Data API Service SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-redshift-serverless" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-redshift-serverless";
+       version = "2.0";
+       sha256 = "0glv2yjibpzqmags776g79lcn9wvwcs7nzxl1hp80gjcwlm7g3sr";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Redshift Serverless SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-rekognition" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-rekognition";
-       version = "1.6.1";
-       sha256 = "1y7qm7k9y9w0lm09qpzi5p1jld3i78x0pr446q37li15m3pgn81y";
+       version = "2.0";
+       sha256 = "0z83n96pyx4fyh142zm0djjppiih2wf07l2x22c3gv6i4zk3m4ch";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Rekognition SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-resiliencehub" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-resiliencehub";
+       version = "2.0";
+       sha256 = "11r66h0lww1bqpnav1r9cz9zbsymggky8ck13nijq84dg2j0bgip";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Resilience Hub SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-resource-explorer-v2" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-resource-explorer-v2";
+       version = "2.0";
+       sha256 = "0z4vlvd2fxj0l26i76m8zim5j5gilsir6r7d58387ishxhfxn8wb";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Resource Explorer SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-resourcegroups" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-resourcegroups";
-       version = "1.6.1";
-       sha256 = "0nyac5hyv97b0djhn7z7rjdi2gf7na66grccl040770mxkb77q0k";
+       version = "2.0";
+       sha256 = "0fbfcs3aaizgw9564chvnxnvh57k8chdzq21ml2f4m46f2c64isj";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Resource Groups SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-resourcegroupstagging" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-resourcegroupstagging";
-       version = "1.6.1";
-       sha256 = "0dsghbhwxjq46bghgl1gnwdxcqbc5v3q9pfhap0asj9qjxq8hrwp";
+       version = "2.0";
+       sha256 = "0m5wi3alfd21jc53ndn97riys39yn1pyxljlq2c32slv90q9a1bi";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Resource Groups Tagging API SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-robomaker" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-robomaker";
+       version = "2.0";
+       sha256 = "0ykip8v9lkzg56rnsmx4jq832d82m8ylpb6vl5nr2al7dz0xmli3";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon RoboMaker SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-rolesanywhere" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-rolesanywhere";
+       version = "2.0";
+       sha256 = "16kqsyx0a8rwb5153c6h4i7m5207vkl78bh0r88g49qgh2xbjkjv";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon IAM Roles Anywhere SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-route53" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-route53";
-       version = "1.6.1";
-       sha256 = "0wspqzdz0i07b4jg80w9vbzmd12pzv7l5dpjnhk2mvbdbgd44r3w";
+       version = "2.0";
+       sha256 = "04h4rwfxv0br8i28b9n3q3rzbgr575diadvqqjv9141824xn6yfz";
        libraryHaskellDepends = [ amazonka-core base text ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Route 53 SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-route53-autonaming" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-route53-autonaming";
-       version = "1.6.1";
-       sha256 = "09cch0ks8gxb08cjilmcyj3phpvikl31bi1ygz73xddaba6ppr9c";
+       version = "2.0";
+       sha256 = "0wzcxi3w4ipscsqv4qmjh72nfkbza1izym3aysy1pradhjb1hdml";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
-       description = "Amazon Route 53 Auto Naming SDK";
+       description = "Amazon Cloud Map SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-route53-domains" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-route53-domains";
-       version = "1.6.1";
-       sha256 = "1s529dzwf92scjwbvyvrcfcs9ma1yvcgrwla79fj74f38mscsarc";
+       version = "2.0";
+       sha256 = "1cjz4fyncdvk1w25lp1sc4d5npd4mk2z411lpk8h8aa5lv38af4b";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Route 53 Domains SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-route53-recovery-cluster" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-route53-recovery-cluster";
+       version = "2.0";
+       sha256 = "05ir57rm7js42zjwimq79vhg4fbmiinplpql8brn2jszl9bsl7vm";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Route53 Recovery Cluster SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-route53-recovery-control-config" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-route53-recovery-control-config";
+       version = "2.0";
+       sha256 = "19bfykab16789mpcigk7mcjhn654b9mmri4649x533yl6532278b";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Route53 Recovery Control Config SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-route53-recovery-readiness" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-route53-recovery-readiness";
+       version = "2.0";
+       sha256 = "0x5nlylc6rlp4c6d1l18nhdw91h78cxrs6h6nzg89jf7i095gmbj";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Route53 Recovery Readiness SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-route53resolver" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-route53resolver";
+       version = "2.0";
+       sha256 = "00wilssrk2gfqxr1f8afw9jj7f68ssq186q402bqwqb02ynig76x";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Route 53 Resolver SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-rum" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-rum";
+       version = "2.0";
+       sha256 = "0qwp2fynaf27p7zj1b9npbg7x6c3m2pnkan9sdi4m4agp0pa649y";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon CloudWatch RUM SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-s3" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , lens, tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, lens, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-s3";
-       version = "1.6.1";
-       sha256 = "0a3y2q3xmb249giwjvsgva26ky315bnsii6s9gqvhd5g9q9b1827";
+       version = "2.0";
+       sha256 = "1iyrbh5j8yk3z2p55qgvicgi59lfvvn0yh3i2mccr8rfi9spkmjs";
        libraryHaskellDepends = [ amazonka-core base lens text ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Simple Storage Service SDK";
        license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-s3-encryption" = callPackage
+    ({ mkDerivation, aeson, amazonka, amazonka-core, amazonka-kms
+     , amazonka-s3, amazonka-test, base, bytestring, case-insensitive
+     , conduit, crypton, http-client, lens, memory, mtl, QuickCheck
+     , quickcheck-instances, resourcet, tasty, tasty-hunit
+     , tasty-quickcheck, text, time, unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-s3-encryption";
+       version = "2.0";
+       sha256 = "1cxv36nkaqp30dm89f9bfqmh7dh0nyw4i4n0apdj7p3gckhl3jb9";
+       libraryHaskellDepends = [
+         aeson amazonka amazonka-core amazonka-kms amazonka-s3 base
+         bytestring case-insensitive conduit crypton http-client lens memory
+         mtl text unordered-containers
+       ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring conduit crypton mtl
+         QuickCheck quickcheck-instances resourcet tasty tasty-hunit
+         tasty-quickcheck text time unordered-containers
+       ];
+       description = "Amazon Simple Storage Service SDK - Client-Side Encryption";
+       license = lib.licenses.mpl20;
        hydraPlatforms = lib.platforms.none;
      }) {};
 
@@ -30693,328 +33610,796 @@ self: {
        hydraPlatforms = lib.platforms.none;
      }) {};
 
+  "amazonka-s3outposts" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-s3outposts";
+       version = "2.0";
+       sha256 = "05wx2kb7w3ikdm4862izjg9h0mmi2f5fkx7ljbacljxwdmkmbd1m";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon S3 on Outposts SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
   "amazonka-sagemaker" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-sagemaker";
-       version = "1.6.1";
-       sha256 = "0sxs1gan775gny8gq00vw30jqrn9rv46rqq0jglna7z1fadp0fyz";
+       version = "2.0";
+       sha256 = "0qaz8vmncvvl3kq3v8i70cgf4ryq7sc3phyrdn1igf0rva9wkpjg";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon SageMaker Service SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-sagemaker-a2i-runtime" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-sagemaker-a2i-runtime";
+       version = "2.0";
+       sha256 = "0fw6fi53sg7mjbzmc2s9s8znvb484ycdbbbw5l45gcb0n8k1jp9m";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Augmented AI Runtime SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-sagemaker-edge" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-sagemaker-edge";
+       version = "2.0";
+       sha256 = "1ffrs0bbi600wqykd67kd5xxdqf2cq6wi8nsf1kfqwyqsfzi6189";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Sagemaker Edge Manager SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-sagemaker-featurestore-runtime" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-sagemaker-featurestore-runtime";
+       version = "2.0";
+       sha256 = "0mcgbyvi8kr1yv1x1rgpmwq772p24yi8hc2x2ja7lwnfl6pfr49g";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon SageMaker Feature Store Runtime SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-sagemaker-geospatial" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-sagemaker-geospatial";
+       version = "2.0";
+       sha256 = "0g09ip095m2ngr1cwry84zls966dvggsz28msxlzi777hjgf47zq";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon SageMaker geospatial capabilities SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-sagemaker-metrics" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-sagemaker-metrics";
+       version = "2.0";
+       sha256 = "0yysfk8y3isk2mcddnzk0r8bss6sqjrjrgjcy591177z0wjqdx6h";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon SageMaker Metrics Service SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-sagemaker-runtime" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-sagemaker-runtime";
-       version = "1.6.1";
-       sha256 = "0iilc70i0lz3qrdklw2909v4yzwvcsazn0px5570p7qsp67imb79";
+       version = "2.0";
+       sha256 = "0q5hl25sxby785dcailgmlxzzy9517qz9a87ahvgakpc1casrsyy";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon SageMaker Runtime SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-savingsplans" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-savingsplans";
+       version = "2.0";
+       sha256 = "0i6969lyfd40dnrjh2fap5yw8m8y9cvxx7f71skpwvw17d9gdvlx";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Savings Plans SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-scheduler" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-scheduler";
+       version = "2.0";
+       sha256 = "0j9y4gy214df0qv05vmpxgh73adqpcvqzxciazmrvzr85kc9vf3g";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon EventBridge Scheduler SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-schemas" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-schemas";
+       version = "2.0";
+       sha256 = "0fpmbc9h8x2imqj2mb503y4h4ndnw4gbajiwmw7d4bxn2wmvfh74";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Schemas SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-sdb" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-sdb";
-       version = "1.6.1";
-       sha256 = "0yiap66yqkr453dgkn9q74xmc1g6afqj6ghnhp795lf35igmid2k";
+       version = "2.0";
+       sha256 = "0qp6kwllm86hf1l78mmzbrrpw47sk6bs0845xdmcx27i08jjjhyq";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon SimpleDB SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-secretsmanager" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-secretsmanager";
-       version = "1.6.1";
-       sha256 = "0zr3nlzxjb1nhwipk67nirh0pnjfchirn677mr12109xx7qcfa8l";
+       version = "2.0";
+       sha256 = "1wndb54k81qw3q2077fkjwyclh9adrbkhl0nh72ybyb7ws7mlygh";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Secrets Manager SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-securityhub" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-securityhub";
+       version = "2.0";
+       sha256 = "1pffrv28fk31dzz7a2rqibvs8vpjpax80nk2512xasyg72xvig5q";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon SecurityHub SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-securitylake" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-securitylake";
+       version = "2.0";
+       sha256 = "0iy0fj926q7imnzxgzwfynwrbijm4zdxvkibcwbi6q6x132208fn";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Security Lake SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-serverlessrepo" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-serverlessrepo";
-       version = "1.6.1";
-       sha256 = "13sc48wbsrkypvqxlrldbglziv1biaqqj4df49x1jlplypbl53vp";
+       version = "2.0";
+       sha256 = "1dnfy4b4xmz9gr04hlr2pdx72j7dv49jran80fsg5qz60shffqrj";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon ServerlessApplicationRepository SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-service-quotas" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-service-quotas";
+       version = "2.0";
+       sha256 = "19rfl0gfvbkfh46k9vrx87xala4mjjfnaf4ixwxaabhgnsrz4ssl";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Quotas SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-servicecatalog" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-servicecatalog";
-       version = "1.6.1";
-       sha256 = "0jzm0xsn52qh9ihjn73wgnkil6gnrxvp97x7d881nzyvg5yavmml";
+       version = "2.0";
+       sha256 = "1ivvn19hvgv1k1nll81y6svfmyi7q54mhprdy3x1yszsjpgyvqqd";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Service Catalog SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-servicecatalog-appregistry" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-servicecatalog-appregistry";
+       version = "2.0";
+       sha256 = "05ac16apjk1rk60sxnj6f18g3mgjxp3m2sz7w2w9g0df83sqdf16";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Service Catalog App Registry SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-ses" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-ses";
-       version = "1.6.1";
-       sha256 = "1s7c2jvg8y2vi7lzy3wgp352xnf0bfnc36l6g771279l61nmfk05";
+       version = "2.0";
+       sha256 = "0pziw21bmsjfj0qn5xrwvyi8jk0z93qmyg81awaic4wanhyij5xx";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Simple Email Service SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-sesv2" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-sesv2";
+       version = "2.0";
+       sha256 = "11li9frp2pxwh7hlcdb29l8d2vx4522jrd2rns8ca3bf39pq421q";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Simple Email Service SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-shield" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-shield";
-       version = "1.6.1";
-       sha256 = "06bml09gg5pq8vsj145jwbqpmbx6n07yx0ds030yhmahxyl732hv";
+       version = "2.0";
+       sha256 = "0vpx0inr71wwi4i2dd92r1ba7x6bnssqar3g610mmjw5cxgfnsjr";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Shield SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-signer" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-signer";
+       version = "2.0";
+       sha256 = "0ga5ncb8mwfcgskvvqwrli6bhmjgmc1i4n6fvrkmgzfb5vk9g24g";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Signer SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-simspaceweaver" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-simspaceweaver";
+       version = "2.0";
+       sha256 = "013xd9qr3a8j16a0zzqhydj3yvcd6g1hyrq69llr0iichjyjpbij";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon SimSpace Weaver SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-sms" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-sms";
-       version = "1.6.1";
-       sha256 = "11ab1f09l7p33mvbgrxl5j09z6higs37a5v9d07hh94lvr5l7syn";
+       version = "2.0";
+       sha256 = "1pvmnv3bsbhbndmqk9wq1c1n66ysdnbclfshs2dyrph8p12nndgp";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Server Migration Service SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-sms-voice" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-sms-voice";
+       version = "2.0";
+       sha256 = "1vvp27qm1jb3wm8nh4jzcgjjlcqv6j49jjlp1grwfxnc3f7j17sg";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Pinpoint SMS and Voice Service SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-snow-device-management" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-snow-device-management";
+       version = "2.0";
+       sha256 = "0jiv8rnrn3mc8rknig71hw2pcqdzyzrs5nhdnj5y6zdn0yv2zx0d";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Snow Device Management SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-snowball" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-snowball";
-       version = "1.6.1";
-       sha256 = "1lvw8ym5xlxjiyflg1xr2cqcvf4flamwpd6pgqzbnwzdkyv1zha8";
+       version = "2.0";
+       sha256 = "0851jxkysdjyam3mwllhzjfgwkwndflfq0v4bmnr5pgl2x2yih6c";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Import/Export Snowball SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-sns" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-sns";
-       version = "1.6.1";
-       sha256 = "0dg72gkb3graaq2bh0dbpd4mx8scmx6zrk9q77rwzpxd80yab66v";
+       version = "2.0";
+       sha256 = "0vpk2z8rmkpbm3lg27mnqiffhspbx0zwixplwbgl73imigjzgc6p";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Simple Notification Service SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-sqs" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-sqs";
-       version = "1.6.1";
-       sha256 = "1m2313w5z0mdzhqdx7qkd6k9k5bxbb4dalg37v9jmbsidza7s1pf";
+       version = "2.0";
+       sha256 = "0w8psnfqv78kazjyw06wdsmm6hlfy01wa2pimc4yiwczy7h4js31";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Simple Queue Service SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-ssm" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-ssm";
-       version = "1.6.1";
-       sha256 = "1bxh7hqsm2jfxza4dr2cami39sc2wzkck4yzqp7pk3ds3xggybcm";
+       version = "2.0";
+       sha256 = "0hzay415v1xlcvjmgwya431bi1y4i3kq41szp40nm7ahxcmgylxn";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Simple Systems Manager (SSM) SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-ssm-contacts" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-ssm-contacts";
+       version = "2.0";
+       sha256 = "14m08gp8c1zif9brdi4cip4lw4p3hi3ck7ddpffv1ixfmdxwg1fn";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Systems Manager Incident Manager Contacts SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-ssm-incidents" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-ssm-incidents";
+       version = "2.0";
+       sha256 = "0c98w5r4r3kwsg03gf2q3hg5izc4b3rkazsc79p8r8kf5i5z2qik";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Systems Manager Incident Manager SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-ssm-sap" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-ssm-sap";
+       version = "2.0";
+       sha256 = "1f832y679fnaq5gx1fcfrf5smxdir0qvjg4k48j5kfc8hbbzfv0x";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Systems Manager for SAP SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-sso" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-sso";
+       version = "2.0";
+       sha256 = "0x4g24vr92rqk55vf2v3dwka94p949cvryl1hy3lxcvpqk52v0bi";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Single Sign-On SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-sso-admin" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-sso-admin";
+       version = "2.0";
+       sha256 = "0cn4ksyd8slvb8p7y7bg1f39wij690grnblkfyabw0m9w1s6nwi6";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Single Sign-On Admin SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-sso-oidc" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-sso-oidc";
+       version = "2.0";
+       sha256 = "1q44fb70r5m68dpwkj8r1jza05kpy97bvn0s20xnhfi8drfsifsl";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon SSO OIDC SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-stepfunctions" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-stepfunctions";
-       version = "1.6.1";
-       sha256 = "04yhgmbj129kaj6dxl6ck9clai551j5kmfnwck6nbfpq3mi7dbv0";
+       version = "2.0";
+       sha256 = "11ny95ki54sz8id3xck8r6x1ik2b2kwvz7mi5yhm4g1nhkpcacmc";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Step Functions SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-storagegateway" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-storagegateway";
-       version = "1.6.1";
-       sha256 = "0gvyh6qjfcr3ndv17rcjxnsa13dghwdd420cnc8xsafq54qbah8h";
+       version = "2.0";
+       sha256 = "184pm7d4hyb7lic1hhlr7m428whp0nvsmp2a6k445wswrmlg49b7";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Storage Gateway SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-sts" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-sts";
-       version = "1.6.1";
-       sha256 = "1fcg3hg88427h9fgqpxwa599gh19i1lc2wfjlf554cg92jxn88zf";
+       version = "2.0";
+       sha256 = "1bhky6ajxyykz983wi22g0j3pj4xbwiqkjgw6z8hh2pdsgisg6cx";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Security Token Service SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-support" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-support";
-       version = "1.6.1";
-       sha256 = "1fhrqwbv84np82nddkxxp7bkws2830yb3pz52nwng800vpahsbas";
+       version = "2.0";
+       sha256 = "1hacdj5xxp58zmldj1pwn7dbgxadsg98x9gd6kxz3p9hdckrmfqw";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Support SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-support-app" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-support-app";
+       version = "2.0";
+       sha256 = "18sszvq0vyfwk0fasfi4f9cvgiypjvy7ig0z5i7s1scvv5n12vgy";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Support App SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-swf" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-swf";
-       version = "1.6.1";
-       sha256 = "0jklp28c7kanlkl6mciam2gj6b6w25fs7aidf83ndr3z9xqfd73v";
+       version = "2.0";
+       sha256 = "1fn159acy0xvy4al5xx73lyb4wjkvr4vsn9hbj0dd0xiblwwd2i3";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Simple Workflow Service SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-synthetics" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-synthetics";
+       version = "2.0";
+       sha256 = "1l2pf38xhmn2gp80ldj8bqr4szm411am5dj3cf0i2szw4r4xg2v0";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Synthetics SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-test" = callPackage
@@ -31026,8 +34411,8 @@ self: {
      }:
      mkDerivation {
        pname = "amazonka-test";
-       version = "1.6.1";
-       sha256 = "1a92y92gwn4143z73fwrm03vi5wdxgl2i1myvb8qsk9c621xa7km";
+       version = "2.0";
+       sha256 = "1vd9izjrwskgxhir5mbzk3ryzs37ba84ahj1xa8kwc3ix85c0xkv";
        libraryHaskellDepends = [
          aeson amazonka-core base bifunctors bytestring case-insensitive
          conduit conduit-extra groom http-client http-types process
@@ -31036,151 +34421,348 @@ self: {
        ];
        description = "Common functionality for Amazonka library test-suites";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-textract" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-textract";
+       version = "2.0";
+       sha256 = "1n8dqwk92fs16hn80n34vp22wrs8kv89awy7hlf8z1b9ymgrl71y";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Textract SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-timestream-query" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-timestream-query";
+       version = "2.0";
+       sha256 = "0acq22hwn7zmcfq6rh2y0fxn25adg9sn4nq6shj0vf15fdm2vwja";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Timestream Query SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-timestream-write" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-timestream-write";
+       version = "2.0";
+       sha256 = "0hqyyxzgsg57l8wf2vyp5s8lrhjv4003vwd4jsin0gy95pjc398n";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Timestream Write SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-transcribe" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-transcribe";
-       version = "1.6.1";
-       sha256 = "1pkbmir7fqci7nlz9ca5rbd0yx75kj9pa665k928ll1m34fng5iv";
+       version = "2.0";
+       sha256 = "1kjnpqr36hv446aa7mvjx795zz4skx5zk759lhfj300cla2n9s6w";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Transcribe Service SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-transfer" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-transfer";
+       version = "2.0";
+       sha256 = "154zjxmj2l5za6wy48a4zq6ij3gldbw333hdvxyqqpwqzfybai2y";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Transfer Family SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-translate" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-translate";
-       version = "1.6.1";
-       sha256 = "09rk9223yyi2anzxifcmm4qmxpd1ljg1q644jv1accrpgn1k1h89";
+       version = "2.0";
+       sha256 = "0k2m54bn35xfi7m91k65afzfw2166rklmlgm67zcg5kaygz2i9w6";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon Translate SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-voice-id" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-voice-id";
+       version = "2.0";
+       sha256 = "0v9qrgarrvi0zjsk7d80kididg96svd4j9bfyid1wc82bg7jgd0z";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Voice ID SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-waf" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-waf";
-       version = "1.6.1";
-       sha256 = "0sjian917kc7vzq34sbd4cifx5qwf9lkkrvhbsl1z2aqv0bzbhj5";
+       version = "2.0";
+       sha256 = "09439v5q6493nqa25dz8s2syvrm0qpxi8b7yxj24mb6kkppvl62k";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon WAF SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amazonka-waf-regional" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-waf-regional";
-       version = "1.6.1";
-       sha256 = "1g57aa4zba01iq14njm529k9743lyx7n4v1ilg11qyycbihh2vgp";
+       version = "2.0";
+       sha256 = "0rbchz42g5mqy9i2w58galylp2ma4yqd7dk2c2ww2wy9q747fsbg";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon WAF Regional SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-wafv2" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-wafv2";
+       version = "2.0";
+       sha256 = "0i5w9pb2anqlp79zr43cp7v4lqjd2qvxfhswa4zv82l2sjr151nj";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon WAFV2 SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-wellarchitected" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-wellarchitected";
+       version = "2.0";
+       sha256 = "03696yd3w42cjdwphgxpl2ai5kn5gz3rm563h37jybk6pv4zii7j";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Well-Architected Tool SDK";
+       license = lib.licenses.mpl20;
+     }) {};
+
+  "amazonka-wisdom" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-wisdom";
+       version = "2.0";
+       sha256 = "0cf2ynan4ws42acjlj56n8dd38n9kvvp4z41n07cjs50744mj56b";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon Connect Wisdom Service SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-workdocs" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-workdocs";
-       version = "1.6.1";
-       sha256 = "1gahyswzfimm5kcsp6npnla48cmrihw6pxy66bql6zy60apy26h1";
+       version = "2.0";
+       sha256 = "1p21x9v2fkip1gbmq39cwp7y5cpvi60gadls35g01rv775la8vh3";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon WorkDocs SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-worklink" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-worklink";
+       version = "2.0";
+       sha256 = "1k1bbmzxf4gfsaqc7fcvr2gb8hnmgw2cnpqvfnvppsczy65xs397";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon WorkLink SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-workmail" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-workmail";
-       version = "1.6.1";
-       sha256 = "1vb4p6l4jv6f5xrd7plxxqjpj9vsdqh83sdywr41p3ggynwg2vip";
+       version = "2.0";
+       sha256 = "0ndc34s6lpk5xmrc3miaa5y09sg9v6k200h22mzixcy3zsbf5ljm";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon WorkMail SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-workmailmessageflow" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-workmailmessageflow";
+       version = "2.0";
+       sha256 = "0yqqs52cswxx7q3jxqdlnzg10h3jh262ajwp4b7s9xj3xb8jc6pw";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon WorkMail Message Flow SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-workspaces" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-workspaces";
-       version = "1.6.1";
-       sha256 = "1grpbka4baw81qz4sds52ag4nj4ial6kbjii11yrkyc6i9dki2g5";
+       version = "2.0";
+       sha256 = "14acs6jg1i8a1kl2flssr2dz7a9hgwf656wkag82il3jshh4gw3a";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon WorkSpaces SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "amazonka-workspaces-web" = callPackage
+    ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "amazonka-workspaces-web";
+       version = "2.0";
+       sha256 = "17z2s2i7mq96hfdhz7cscayfijl4dj8ldx8h6yr08s2jfydd21p9";
+       libraryHaskellDepends = [ amazonka-core base ];
+       testHaskellDepends = [
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
+       ];
+       description = "Amazon WorkSpaces Web SDK";
+       license = lib.licenses.mpl20;
      }) {};
 
   "amazonka-xray" = callPackage
     ({ mkDerivation, amazonka-core, amazonka-test, base, bytestring
-     , tasty, tasty-hunit, text, time, unordered-containers
+     , case-insensitive, tasty, tasty-hunit, text, time
+     , unordered-containers
      }:
      mkDerivation {
        pname = "amazonka-xray";
-       version = "1.6.1";
-       sha256 = "03fhlls2n1cih0z4fcs1bcsr1d97qnllcknq90dqmmr9fmmg131l";
+       version = "2.0";
+       sha256 = "1dcxfv7bvznq31alyzlbfym5jynp6y008lv95xg6687d1jydxhq4";
        libraryHaskellDepends = [ amazonka-core base ];
        testHaskellDepends = [
-         amazonka-core amazonka-test base bytestring tasty tasty-hunit text
-         time unordered-containers
+         amazonka-core amazonka-test base bytestring case-insensitive tasty
+         tasty-hunit text time unordered-containers
        ];
        description = "Amazon X-Ray SDK";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "amby" = callPackage
@@ -31486,7 +35068,6 @@ self: {
        description = "Client for analyze service";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "anansi" = callPackage
@@ -32509,6 +36090,7 @@ self: {
        description = "Please see the README on Github at <https://github.com/arbor/antiope#readme>";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "antiprimes" = callPackage
@@ -32602,6 +36184,23 @@ self: {
        mainProgram = "antlrcmkenums";
      }) {antlr3c = null;};
 
+  "any-pat" = callPackage
+    ({ mkDerivation, base, haskell-src-exts, haskell-src-meta, hspec
+     , hspec-discover, parsec, QuickCheck, template-haskell
+     }:
+     mkDerivation {
+       pname = "any-pat";
+       version = "0.2.0.0";
+       sha256 = "1h6fxbyzfbx936br0795jbs25ci0bjbik5dgdgw40rs7y2mavxkm";
+       libraryHaskellDepends = [
+         base haskell-src-exts haskell-src-meta template-haskell
+       ];
+       testHaskellDepends = [ base hspec parsec QuickCheck ];
+       testToolDepends = [ hspec-discover ];
+       description = "Quasiquoters that act on a sequence of patterns and compiles these view into patterns and expressions";
+       license = lib.licenses.bsd3;
+     }) {};
+
   "anydbm" = callPackage
     ({ mkDerivation, base, containers, MissingH, mtl }:
      mkDerivation {
@@ -32629,8 +36228,6 @@ self: {
        testHaskellDepends = [ base ghc-prim ];
        description = "prelude for Algebra of Programming";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "aos-signature" = callPackage
@@ -33945,8 +37542,8 @@ self: {
        pname = "approximate";
        version = "0.3.5";
        sha256 = "1f168ac9xryrv50k7gvh89xv0mj6c42cxw7pj01pqcbppbs0rm3g";
-       revision = "2";
-       editedCabalFile = "1yak9kv090502q8kqszmrjdp13dd737klppp78983yipd9k2h5gv";
+       revision = "3";
+       editedCabalFile = "10y11nm6rfh5s6vzw0z7zn29gv6z6ll8q7gmw30yc1xxmy78rxqj";
        libraryHaskellDepends = [
          base binary bytes cereal comonad deepseq ghc-prim hashable lens
          log-domain pointed safecopy semigroupoids semigroups vector
@@ -34198,8 +37795,8 @@ self: {
      }:
      mkDerivation {
        pname = "arbtt";
-       version = "0.12.0.1";
-       sha256 = "1a2gabg8v28jcl1nddj4pfmpwc57g68i0qnnx3p26k3psrkmy6xq";
+       version = "0.12.0.2";
+       sha256 = "022jb9bi9jxqiv3f2cfkpi1m6zwp719x9xnq2xnhy2hysz3x1ss6";
        isLibrary = false;
        isExecutable = true;
        executableHaskellDepends = [
@@ -34348,7 +37945,6 @@ self: {
        libraryToolDepends = [ cpphs ];
        description = "Common interface using libarchive";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "archive-sig" = callPackage
@@ -34736,8 +38332,8 @@ self: {
      }:
      mkDerivation {
        pname = "arion-compose";
-       version = "0.2.0.0";
-       sha256 = "051lbklcdj7rz9l5mnbijwjy62g0xnvx7s3yjfrb4x9qm3jpscci";
+       version = "0.2.1.0";
+       sha256 = "188nbv404zly4p0klj2aad8lkfzgma473gzj4f7sxynkl11dp8f1";
        isLibrary = true;
        isExecutable = true;
        enableSeparateDataOutput = true;
@@ -34888,6 +38484,38 @@ self: {
        license = lib.licenses.mit;
      }) {};
 
+  "arithmoi_0_13_0_0" = callPackage
+    ({ mkDerivation, array, base, chimera, constraints, containers
+     , deepseq, exact-pi, ghc-bignum, infinite-list, integer-logarithms
+     , integer-roots, mod, QuickCheck, quickcheck-classes, random
+     , semirings, smallcheck, tasty, tasty-bench, tasty-hunit
+     , tasty-quickcheck, tasty-rerun, tasty-smallcheck, transformers
+     , vector
+     }:
+     mkDerivation {
+       pname = "arithmoi";
+       version = "0.13.0.0";
+       sha256 = "0bcxfx8gm0vd07pg417yid11dqakgw5w1hndmg8667g92ar5njsc";
+       configureFlags = [ "-f-llvm" ];
+       libraryHaskellDepends = [
+         array base chimera constraints containers deepseq exact-pi
+         ghc-bignum infinite-list integer-logarithms integer-roots mod
+         random semirings transformers vector
+       ];
+       testHaskellDepends = [
+         base containers exact-pi infinite-list integer-roots mod QuickCheck
+         quickcheck-classes random semirings smallcheck tasty tasty-hunit
+         tasty-quickcheck tasty-rerun tasty-smallcheck transformers vector
+       ];
+       benchmarkHaskellDepends = [
+         array base constraints containers deepseq infinite-list
+         integer-logarithms mod random semirings tasty-bench vector
+       ];
+       description = "Efficient basic number-theoretic functions";
+       license = lib.licenses.mit;
+       hydraPlatforms = lib.platforms.none;
+     }) {};
+
   "arity-generic-liftA" = callPackage
     ({ mkDerivation, base, doctest }:
      mkDerivation {
@@ -35407,7 +39035,6 @@ self: {
        ];
        description = "The ASCII character set and encoding";
        license = lib.licenses.asl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "ascii-art-to-unicode" = callPackage
@@ -35448,8 +39075,6 @@ self: {
        testHaskellDepends = [ ascii-case ascii-char base hspec ];
        description = "ASCII character without an upper/lower case distinction";
        license = lib.licenses.asl20;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "ascii-char" = callPackage
@@ -35540,7 +39165,6 @@ self: {
        ];
        description = "ASCII representations of numbers";
        license = lib.licenses.asl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "ascii-predicates" = callPackage
@@ -35615,7 +39239,6 @@ self: {
        ];
        description = "Representing ASCII with refined supersets";
        license = lib.licenses.asl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "ascii-table" = callPackage
@@ -35653,7 +39276,6 @@ self: {
        ];
        description = "Template Haskell support for ASCII";
        license = lib.licenses.asl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "ascii-vector-avc" = callPackage
@@ -36029,7 +39651,6 @@ self: {
        description = "A set of assertion for writing more readable tests cases";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "assert4hs-core" = callPackage
@@ -36048,7 +39669,6 @@ self: {
        description = "A set of assertion for writing more readable tests cases";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "assert4hs-hspec" = callPackage
@@ -36658,8 +40278,8 @@ self: {
      }:
      mkDerivation {
        pname = "atlassian-connect-core";
-       version = "0.10.0.2";
-       sha256 = "0nwsl8cvbqjjrvphc589dvld4yv5xnv9p2y80glxmzv32rwcnj36";
+       version = "0.10.1.0";
+       sha256 = "15iyvjd0cyzqb16r3782nqq5s43i5q9lcmbdx73973ncyl334wxa";
        enableSeparateDataOutput = true;
        libraryHaskellDepends = [
          aeson atlassian-connect-descriptor base base64-bytestring
@@ -36680,8 +40300,8 @@ self: {
      }:
      mkDerivation {
        pname = "atlassian-connect-descriptor";
-       version = "0.4.13.0";
-       sha256 = "0fhzvqf18x44lvfwxzcvzwbnwl5anlyh47sni360f7w27g3b2jzz";
+       version = "0.4.15.0";
+       sha256 = "1mngv2pf6fkqqplkn9s51g6z8jhq9km864va2n97dvkmrwnzmhig";
        libraryHaskellDepends = [
          aeson base cases network network-uri text time-units
          unordered-containers
@@ -37323,6 +40943,18 @@ self: {
      }) {};
 
   "attoparsec-aeson" = callPackage
+    ({ mkDerivation, aeson, base }:
+     mkDerivation {
+       pname = "attoparsec-aeson";
+       version = "2.1.0.0";
+       sha256 = "1a86x493mrr7h468imcdjahxfvl2rrg6b6cygvzxja046cfgnjmk";
+       libraryHaskellDepends = [ aeson base ];
+       doHaddock = false;
+       description = "Parsing of aeson's Value with attoparsec";
+       license = lib.licenses.bsd3;
+     }) {};
+
+  "attoparsec-aeson_2_2_0_0" = callPackage
     ({ mkDerivation, aeson, attoparsec, base, bytestring
      , integer-conversion, primitive, scientific, text, vector
      }:
@@ -37337,7 +40969,6 @@ self: {
        description = "Parsing of aeson's Value with attoparsec";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "attoparsec-arff" = callPackage
@@ -37447,31 +41078,6 @@ self: {
      }:
      mkDerivation {
        pname = "attoparsec-framer";
-       version = "0.1.0.0";
-       sha256 = "00vswlad9f5pqibfrch94vx6kxzswi7h47d64xqvmakasaahyn5m";
-       isLibrary = true;
-       isExecutable = true;
-       libraryHaskellDepends = [
-         attoparsec base bytestring exceptions text
-       ];
-       executableHaskellDepends = [
-         attoparsec attoparsec-binary base bytestring exceptions network
-         network-run QuickCheck text
-       ];
-       testHaskellDepends = [
-         attoparsec attoparsec-binary base bytestring exceptions hspec
-         QuickCheck text
-       ];
-       description = "Use Attoparsec to parse framed protocol bytestreams";
-       license = lib.licenses.bsd3;
-     }) {};
-
-  "attoparsec-framer_0_1_0_1" = callPackage
-    ({ mkDerivation, attoparsec, attoparsec-binary, base, bytestring
-     , exceptions, hspec, network, network-run, QuickCheck, text
-     }:
-     mkDerivation {
-       pname = "attoparsec-framer";
        version = "0.1.0.1";
        sha256 = "1mj67jbdmc6svjrhhq5q0vcqp64p2bllb0py8qq0fin5bdnk4445";
        isLibrary = true;
@@ -37489,7 +41095,6 @@ self: {
        ];
        description = "Use Attoparsec to parse framed protocol byte streams";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "attoparsec-ip" = callPackage
@@ -38038,8 +41643,8 @@ self: {
      }:
      mkDerivation {
        pname = "autodocodec";
-       version = "0.2.0.3";
-       sha256 = "1ihyyxj4lbk172z7wnv11ryir3d00d5jrcprqiy0q7b4gkzsn3q6";
+       version = "0.2.0.4";
+       sha256 = "08075y8dfl32hhla8da7lrg0kzrlhj2rhfn5aqz11qm3vkwwbd6q";
        libraryHaskellDepends = [
          aeson base bytestring containers hashable mtl scientific text time
          unordered-containers validity validity-scientific vector
@@ -38098,7 +41703,6 @@ self: {
        ];
        description = "Autodocodec interpreters for Servant Multipart";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "autodocodec-swagger2" = callPackage
@@ -38522,6 +42126,23 @@ self: {
        hydraPlatforms = lib.platforms.none;
      }) {};
 
+  "avif" = callPackage
+    ({ mkDerivation, base, bytestring, c2hs, deepseq, JuicyPixels
+     , libavif, tasty, tasty-hunit, vector
+     }:
+     mkDerivation {
+       pname = "avif";
+       version = "0.1.2.1";
+       sha256 = "09c30y75gaq7vsqhw0illipnbfamj3g5g7rlpgf3lb88f56wj495";
+       enableSeparateDataOutput = true;
+       libraryHaskellDepends = [ base bytestring JuicyPixels vector ];
+       libraryPkgconfigDepends = [ libavif ];
+       libraryToolDepends = [ c2hs ];
+       testHaskellDepends = [ base bytestring deepseq tasty tasty-hunit ];
+       description = "High-level bindings to libavif";
+       license = lib.licenses.agpl3Only;
+     }) {inherit (pkgs) libavif;};
+
   "avl-static" = callPackage
     ({ mkDerivation, base, QuickCheck, test-framework
      , test-framework-quickcheck2
@@ -39127,8 +42748,6 @@ self: {
        testHaskellDepends = [ base hspec ];
        description = "Haskell runtime for AWS Lambda";
        license = lib.licenses.asl20;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "aws-lambda-haskell-runtime-wai" = callPackage
@@ -39152,7 +42771,6 @@ self: {
        ];
        description = "Run wai applications on AWS Lambda";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "aws-lambda-runtime" = callPackage
@@ -39471,6 +43089,29 @@ self: {
        license = lib.licenses.mit;
      }) {};
 
+  "aws-sns-verify_0_0_0_3" = callPackage
+    ({ mkDerivation, aeson, aeson-qq, async, base, bytestring
+     , crypton-x509, crypton-x509-validation, errors, hspec
+     , http-conduit, http-types, memory, network-uri, pem, regex-tdfa
+     , text, wai, warp
+     }:
+     mkDerivation {
+       pname = "aws-sns-verify";
+       version = "0.0.0.3";
+       sha256 = "1l6w3am550ls656s9hnjib6zj0g6471brsj4vn9c7i03qqwgdgmy";
+       libraryHaskellDepends = [
+         aeson base bytestring crypton-x509 crypton-x509-validation errors
+         http-conduit memory network-uri pem regex-tdfa text
+       ];
+       testHaskellDepends = [
+         aeson-qq async base crypton-x509-validation hspec http-types
+         regex-tdfa text wai warp
+       ];
+       description = "Parse and verify AWS SNS messages";
+       license = lib.licenses.mit;
+       hydraPlatforms = lib.platforms.none;
+     }) {};
+
   "aws-transcribe-ws" = callPackage
     ({ mkDerivation, aeson, am-test, async, base, base16-bytestring
      , binary, bytestring, crc, cryptohash-sha256, lens, stm, text, time
@@ -39602,7 +43243,6 @@ self: {
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "axel";
-       broken = true;
      }) {};
 
   "axiom" = callPackage
@@ -39885,7 +43525,6 @@ self: {
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "b9c";
-       broken = true;
      }) {};
 
   "babl" = callPackage
@@ -39993,8 +43632,6 @@ self: {
        ];
        description = "Heterogeneous automatic differentation";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "backstop" = callPackage
@@ -40154,7 +43791,6 @@ self: {
        doHaddock = false;
        description = "Text layout engine built on top of HarfBuzz";
        license = lib.licenses.gpl3Only;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "ballast" = callPackage
@@ -41014,17 +44650,17 @@ self: {
      }) {};
 
   "base62" = callPackage
-    ({ mkDerivation, base, bytebuild, byteslice, doctest
+    ({ mkDerivation, base, bytebuild, byteslice, bytestring, doctest
      , natural-arithmetic, primitive, tasty, tasty-hunit
-     , tasty-quickcheck, wide-word, word-compat
+     , tasty-quickcheck, text, text-short, wide-word
      }:
      mkDerivation {
        pname = "base62";
-       version = "0.1.0.2";
-       sha256 = "14jjh2c5fhdjq7bwy3i3yff1mihmixjfs36fa8l9w0qvgpdl01qp";
+       version = "0.1.1.0";
+       sha256 = "0cwq9iqcps0f1b8sbjghfb9q3rr8alhjhwx0py6ll9gp98dv57qf";
        libraryHaskellDepends = [
-         base bytebuild byteslice natural-arithmetic primitive wide-word
-         word-compat
+         base bytebuild byteslice bytestring natural-arithmetic primitive
+         text text-short wide-word
        ];
        testHaskellDepends = [
          base byteslice doctest primitive tasty tasty-hunit tasty-quickcheck
@@ -41071,6 +44707,8 @@ self: {
        pname = "base64-bytes";
        version = "0.1.1.0";
        sha256 = "0f0a0lj6k4k5b2mk9fbdl28x09h3mah5j44sj04k4ckdifkx3qw3";
+       revision = "1";
+       editedCabalFile = "1m4igcn7bxc2ym4ba22dkz2dh6rbka20da5a19vxpm0hwypfd0jc";
        libraryHaskellDepends = [
          base byte-order bytebuild byteslice natural-arithmetic primitive
          run-st word-compat
@@ -41084,8 +44722,6 @@ self: {
        ];
        description = "Base64 encoding of byte sequences";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "base64-bytestring" = callPackage
@@ -42008,8 +45644,8 @@ self: {
      }:
      mkDerivation {
        pname = "beam-automigrate";
-       version = "0.1.3.0";
-       sha256 = "04ihkc2zdflvsz4b94q6kf806hdaxin5gl1h4avp4lbjwzcjqvif";
+       version = "0.1.4.0";
+       sha256 = "0miifsbppqqad9v6mvd30mxanqz6fddxal6d6jxpynmx4wnk8i8p";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -42274,6 +45910,37 @@ self: {
        broken = true;
      }) {};
 
+  "bech32_1_1_4" = callPackage
+    ({ mkDerivation, array, base, base58-bytestring, bytestring
+     , containers, deepseq, extra, hspec, hspec-discover, memory
+     , optparse-applicative, prettyprinter, prettyprinter-ansi-terminal
+     , process, QuickCheck, text, vector
+     }:
+     mkDerivation {
+       pname = "bech32";
+       version = "1.1.4";
+       sha256 = "0f4s2dc5dh5gq1hqcdlbvddk93h117nji9nca0sfqzbx04n3sma8";
+       isLibrary = true;
+       isExecutable = true;
+       libraryHaskellDepends = [
+         array base bytestring containers extra text
+       ];
+       executableHaskellDepends = [
+         base base58-bytestring bytestring extra memory optparse-applicative
+         prettyprinter prettyprinter-ansi-terminal text
+       ];
+       testHaskellDepends = [
+         base base58-bytestring bytestring containers deepseq extra hspec
+         memory process QuickCheck text vector
+       ];
+       testToolDepends = [ hspec-discover ];
+       description = "Implementation of the Bech32 cryptocurrency address format (BIP 0173)";
+       license = lib.licenses.asl20;
+       hydraPlatforms = lib.platforms.none;
+       mainProgram = "bech32";
+       broken = true;
+     }) {};
+
   "bech32-th" = callPackage
     ({ mkDerivation, base, bech32, hspec, hspec-discover
      , template-haskell, text
@@ -42906,22 +46573,6 @@ self: {
     ({ mkDerivation, base, latex, parsec, utility-ht }:
      mkDerivation {
        pname = "bibtex";
-       version = "0.1.0.6";
-       sha256 = "012zxvrlkl5vdjl1nmabhyi160xak0c8s3gn5ffxz2rqi6akn2h9";
-       revision = "1";
-       editedCabalFile = "028jl40ri1p1gn76m09ay6hhhd9827y7g54qwplcszxjykxgnvih";
-       isLibrary = true;
-       isExecutable = true;
-       libraryHaskellDepends = [ base latex parsec utility-ht ];
-       description = "Parse, format and processing BibTeX files";
-       license = lib.licenses.bsd3;
-       maintainers = [ lib.maintainers.thielema ];
-     }) {};
-
-  "bibtex_0_1_0_7" = callPackage
-    ({ mkDerivation, base, latex, parsec, utility-ht }:
-     mkDerivation {
-       pname = "bibtex";
        version = "0.1.0.7";
        sha256 = "13brddmc8ifyncg1cc0mcl6db94lfz6vmrpjrjap7jrs060r0j9i";
        isLibrary = true;
@@ -42929,7 +46580,6 @@ self: {
        libraryHaskellDepends = [ base latex parsec utility-ht ];
        description = "Parse, format and processing BibTeX files";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        maintainers = [ lib.maintainers.thielema ];
      }) {};
 
@@ -43005,6 +46655,7 @@ self: {
        description = "Prototype Implementation of Combining Syntactic and Semantic Bidirectionalization (ICFP'10)";
        license = lib.licenses.publicDomain;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "bidispec" = callPackage
@@ -43091,6 +46742,8 @@ self: {
        pname = "bifunctors";
        version = "5.6.1";
        sha256 = "1z2p9l2c0i6irbhfib5z7089jg8s22jj2jrc3dm525mynmqi8f06";
+       revision = "1";
+       editedCabalFile = "0f4swdx6nvjzci5mwiwcqxsg7xqsf7vqvignq4k644sclrih2v38";
        libraryHaskellDepends = [
          assoc base comonad containers foldable1-classes-compat tagged
          template-haskell th-abstraction transformers
@@ -45235,8 +48888,6 @@ self: {
        testHaskellDepends = [ base ];
        description = "Birds of Paradise";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "bisc" = callPackage
@@ -45362,7 +49013,6 @@ self: {
        description = "Plays chess";
        license = lib.licenses.gpl3Plus;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "bit-array" = callPackage
@@ -46200,6 +49850,30 @@ self: {
        license = lib.licenses.bsd3;
      }) {};
 
+  "bitvec_1_1_5_0" = callPackage
+    ({ mkDerivation, base, bytestring, containers, deepseq, ghc-bignum
+     , primitive, quickcheck-classes, quickcheck-classes-base, random
+     , tasty, tasty-bench, tasty-quickcheck, vector
+     }:
+     mkDerivation {
+       pname = "bitvec";
+       version = "1.1.5.0";
+       sha256 = "1ifyz0lsmgqz8yjyx4887m1wnm7ar389k6gkvcnk9mg1bgp7rll3";
+       libraryHaskellDepends = [
+         base bytestring deepseq ghc-bignum primitive vector
+       ];
+       testHaskellDepends = [
+         base ghc-bignum primitive quickcheck-classes
+         quickcheck-classes-base tasty tasty-quickcheck vector
+       ];
+       benchmarkHaskellDepends = [
+         base containers ghc-bignum random tasty tasty-bench vector
+       ];
+       description = "Space-efficient bit vectors";
+       license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
+     }) {};
+
   "bitwise" = callPackage
     ({ mkDerivation, array, base, bytestring, criterion, QuickCheck }:
      mkDerivation {
@@ -46222,10 +49896,8 @@ self: {
      }:
      mkDerivation {
        pname = "bitwise-enum";
-       version = "1.0.1.0";
-       sha256 = "0vmdr8csmxwab7s4nmqdfpqdssivh90fddk94i8wkwj1la867y1z";
-       revision = "3";
-       editedCabalFile = "1f94gscpmffhx1m88nq6h6y46b1xpzp1kwfxb362zq6k1rq7dbk9";
+       version = "1.0.1.2";
+       sha256 = "15v40b2rffrx1sqfbfrbiky1g1bic0waabsznq5cgrlv7jh5znxx";
        libraryHaskellDepends = [
          aeson array base deepseq mono-traversable vector
        ];
@@ -46811,6 +50483,7 @@ self: {
        description = "Some contributions to add handy things to blaze html";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "blaze-html-hexpat" = callPackage
@@ -47181,7 +50854,6 @@ self: {
        testToolDepends = [ tasty-discover ];
        description = "blockfrost.io basic client";
        license = lib.licenses.asl20;
-       hydraPlatforms = lib.platforms.none;
        maintainers = [ lib.maintainers.sorki ];
      }) {};
 
@@ -47204,7 +50876,6 @@ self: {
        ];
        description = "blockfrost.io common client definitions / instances";
        license = lib.licenses.asl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "blockfrost-pretty" = callPackage
@@ -47339,10 +51010,8 @@ self: {
      }:
      mkDerivation {
        pname = "bloomfilter";
-       version = "2.0.1.0";
-       sha256 = "03vrmncg1c10a2wcg5skq30m1yiknn7nwxz2gblyyfaxglshspkc";
-       revision = "2";
-       editedCabalFile = "1hi6hwvhv7lxqv0l6hv2854g1rvc52zcmr3ldvnaan1l1b666867";
+       version = "2.0.1.2";
+       sha256 = "0klb26ldkw32axv3927w489j71r2rc9pangsvznqjbljib9970hp";
        libraryHaskellDepends = [ array base bytestring deepseq ];
        testHaskellDepends = [
          base bytestring QuickCheck random test-framework
@@ -47720,7 +51389,6 @@ self: {
        ];
        description = "Three games for inclusion in a web server";
        license = "GPL";
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "board-games";
        maintainers = [ lib.maintainers.thielema ];
      }) {};
@@ -47822,6 +51490,7 @@ self: {
        license = lib.licenses.gpl3Plus;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "boilerplate";
+       broken = true;
      }) {};
 
   "bolt" = callPackage
@@ -47996,8 +51665,6 @@ self: {
        testToolDepends = [ hspec-discover ];
        description = "Simple Parser Combinators";
        license = "LGPL";
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "bookhound-format" = callPackage
@@ -48010,6 +51677,7 @@ self: {
        description = "Parsers for usual data formats";
        license = "LGPL";
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "bookkeeper" = callPackage
@@ -48185,8 +51853,6 @@ self: {
        libraryHaskellDepends = [ base extra parsec ];
        description = "Boolean expressions with various representations and search queries";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "bools" = callPackage
@@ -48285,6 +51951,25 @@ self: {
        mainProgram = "boomslang";
      }) {};
 
+  "boomwhacker" = callPackage
+    ({ mkDerivation, array, base, containers, event-list, filepath
+     , HPDF, midi, optparse-applicative, utility-ht
+     }:
+     mkDerivation {
+       pname = "boomwhacker";
+       version = "0.0";
+       sha256 = "0755v8315g03fhhh9a12jnczdapz6gs1my4gvz1y9arbyc3xngym";
+       isLibrary = false;
+       isExecutable = true;
+       executableHaskellDepends = [
+         array base containers event-list filepath HPDF midi
+         optparse-applicative utility-ht
+       ];
+       description = "Convert MIDI file to play-along boomwhacker animation";
+       license = lib.licenses.bsd3;
+       mainProgram = "boomwhacker";
+     }) {};
+
   "boop" = callPackage
     ({ mkDerivation, base, mtl, text }:
      mkDerivation {
@@ -48518,8 +52203,6 @@ self: {
        ];
        description = "Implementation of BORSH serialisation";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "bot" = callPackage
@@ -48598,10 +52281,8 @@ self: {
      }:
      mkDerivation {
        pname = "bound";
-       version = "2.0.6";
-       sha256 = "1mlnpc4x7gn97b8pqiwj3shv23slfylwplp7zr37ar5ff9isbm28";
-       revision = "1";
-       editedCabalFile = "104j2gindmyqs4hl56irvndz9s9j7s4yyjhlwz3s87r9053sr1p9";
+       version = "2.0.7";
+       sha256 = "1wqvanfp826s89qr4a1rc9f0ldsj45j1rwy9x6a894vndgrxm8dj";
        libraryHaskellDepends = [
          base bifunctors binary bytes cereal comonad deepseq hashable mmorph
          profunctors template-haskell th-abstraction transformers
@@ -48768,28 +52449,10 @@ self: {
        license = lib.licenses.gpl3Only;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "bowntz";
-     }) {};
-
-  "box" = callPackage
-    ({ mkDerivation, async, base, bytestring, containers, contravariant
-     , dlist, exceptions, kan-extensions, mtl, profunctors
-     , semigroupoids, stm, text, time
-     }:
-     mkDerivation {
-       pname = "box";
-       version = "0.9.1";
-       sha256 = "1dd82rf1fpmhgryws67phgpfy4kfy4q1anh5l37g162dgy6kyi0z";
-       libraryHaskellDepends = [
-         async base bytestring containers contravariant dlist exceptions
-         kan-extensions mtl profunctors semigroupoids stm text time
-       ];
-       description = "boxes";
-       license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        broken = true;
      }) {};
 
-  "box_0_9_2_0" = callPackage
+  "box" = callPackage
     ({ mkDerivation, async, base, bytestring, containers, contravariant
      , dlist, exceptions, kan-extensions, mtl, profunctors
      , semigroupoids, stm, text, time
@@ -48804,8 +52467,6 @@ self: {
        ];
        description = "A profunctor effect system";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "box-csv" = callPackage
@@ -48818,6 +52479,7 @@ self: {
        description = "CSV parsing in a box";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "box-socket" = callPackage
@@ -48837,7 +52499,6 @@ self: {
        executableHaskellDepends = [ base optparse-generic ];
        description = "Box websockets";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "box-socket";
      }) {};
 
@@ -48999,15 +52660,15 @@ self: {
      }) {};
 
   "brassica" = callPackage
-    ({ mkDerivation, base, bytestring, conduit, containers, criterion
-     , deepseq, file-embed, megaparsec, mtl, optparse-applicative
-     , parser-combinators, split, tasty, tasty-golden, text
-     , transformers, utf8-string
+    ({ mkDerivation, aeson, attoparsec-aeson, base, bytestring, conduit
+     , conduit-extra, containers, criterion, deepseq, file-embed
+     , megaparsec, mtl, optparse-applicative, parser-combinators, split
+     , tasty, tasty-golden, text, transformers, utf8-string
      }:
      mkDerivation {
        pname = "brassica";
-       version = "0.1.0";
-       sha256 = "1hknckbcx5k2iiwv076kkmw9d86v9g8yvz3cp6sxny7yik88h0n0";
+       version = "0.1.1";
+       sha256 = "0dc3qwyyz94qv1fhpyypcwys48i3zx3137yrh1gx3wby2gf2rzb9";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -49015,7 +52676,8 @@ self: {
          transformers
        ];
        executableHaskellDepends = [
-         base bytestring conduit optparse-applicative text
+         aeson attoparsec-aeson base bytestring conduit conduit-extra
+         deepseq optparse-applicative text
        ];
        testHaskellDepends = [
          base bytestring conduit tasty tasty-golden text transformers
@@ -49234,8 +52896,6 @@ self: {
        libraryHaskellDepends = [ base brick containers microlens vector ];
        description = "Skip a certain kind of items when moving in brick list";
        license = lib.licenses.bsd0;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "brick-panes" = callPackage
@@ -49311,8 +52971,6 @@ self: {
        ];
        description = "Tabular list widgets for brick";
        license = lib.licenses.bsd0;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "bricks" = callPackage
@@ -49722,8 +53380,8 @@ self: {
        pname = "brotli";
        version = "0.0.0.1";
        sha256 = "0fp8vhqzl6i1vvb4fw4zya6cgkzmj0yaaw94jdf2kggm3gn8zwfc";
-       revision = "2";
-       editedCabalFile = "1qil5gibl2bgjf1jj54nvj9h5rrajkqwdazgl38z56v3dgsqdvaz";
+       revision = "3";
+       editedCabalFile = "00n7r8wwn40qbd6qvqzmkdf374nzd703rbsmn1szdwiw0zyp6ipa";
        libraryHaskellDepends = [ base bytestring transformers ];
        libraryPkgconfigDepends = [ brotli ];
        testHaskellDepends = [
@@ -49764,8 +53422,8 @@ self: {
        pname = "brotli-streams";
        version = "0.0.0.0";
        sha256 = "14jc1nhm50razsl99d95amdf4njf75dnzx8vqkihgrgp7qisyz3z";
-       revision = "7";
-       editedCabalFile = "142p3ni8ns9nrq58aavnggpspn8phszpgxwzmalyh34692cr8kd4";
+       revision = "8";
+       editedCabalFile = "05ri1yv1q2h0zlbcqgk1rpyb7p36zb6asrj6f3w0yyr4s5hsqwww";
        libraryHaskellDepends = [ base brotli bytestring io-streams ];
        testHaskellDepends = [
          base bytestring HUnit io-streams QuickCheck test-framework
@@ -50554,8 +54212,6 @@ self: {
        libraryToolDepends = [ c2hs ];
        description = "A wrapper for the Bullet physics engine";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {inherit (pkgs) bullet;};
 
   "bulletproofs" = callPackage
@@ -50731,7 +54387,6 @@ self: {
        description = "Haskell interface to the Bus Pirate binary interface";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "buster" = callPackage
@@ -50997,7 +54652,6 @@ self: {
        ];
        description = "a bitvector datatype that is parameterized by the vector width";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "bv-sized-lens" = callPackage
@@ -51010,6 +54664,7 @@ self: {
        description = "Well-typed lenses for bv-sized bitvectors";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "by-other-names" = callPackage
@@ -51026,8 +54681,6 @@ self: {
        testHaskellDepends = [ aeson base doctest tasty tasty-hunit ];
        description = "Give aliases to record fields";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "byline" = callPackage
@@ -51080,6 +54733,7 @@ self: {
        ];
        description = "Read strings describing a number of bytes like 2Kb and 0.5 MiB";
        license = lib.licenses.gpl3Only;
+       maintainers = [ lib.maintainers.danielrolls ];
      }) {};
 
   "byte-order" = callPackage
@@ -51133,38 +54787,6 @@ self: {
      }:
      mkDerivation {
        pname = "bytebuild";
-       version = "0.3.13.0";
-       sha256 = "0qfxsff6823k4fm3vy50fw00f7p85lnc35kkazfn9h8prw2ac3k9";
-       revision = "1";
-       editedCabalFile = "07w11wgvv1k4w4dsy54s9yq9wi5i1pic8hps067jc8yism1mfqn8";
-       libraryHaskellDepends = [
-         base byteslice bytestring haskell-src-meta integer-logarithms
-         natural-arithmetic primitive primitive-offset primitive-unlifted
-         run-st template-haskell text text-short wide-word zigzag
-       ];
-       testHaskellDepends = [
-         base byteslice bytestring natural-arithmetic primitive
-         primitive-unlifted QuickCheck quickcheck-classes
-         quickcheck-instances tasty tasty-hunit tasty-quickcheck text
-         text-short vector wide-word
-       ];
-       benchmarkHaskellDepends = [
-         base byteslice gauge natural-arithmetic primitive text-short
-       ];
-       description = "Build byte arrays";
-       license = lib.licenses.bsd3;
-     }) {};
-
-  "bytebuild_0_3_14_0" = callPackage
-    ({ mkDerivation, base, byteslice, bytestring, gauge
-     , haskell-src-meta, integer-logarithms, natural-arithmetic
-     , primitive, primitive-offset, primitive-unlifted, QuickCheck
-     , quickcheck-classes, quickcheck-instances, run-st, tasty
-     , tasty-hunit, tasty-quickcheck, template-haskell, text, text-short
-     , vector, wide-word, zigzag
-     }:
-     mkDerivation {
-       pname = "bytebuild";
        version = "0.3.14.0";
        sha256 = "0ql3fyd0l4gm3wbziky8r3bgd97kazpqbmiqwhrxvznf201zkhfy";
        libraryHaskellDepends = [
@@ -51183,7 +54805,6 @@ self: {
        ];
        description = "Build byte arrays";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "bytedump" = callPackage
@@ -51323,18 +54944,16 @@ self: {
 
   "bytes" = callPackage
     ({ mkDerivation, base, binary, binary-orphans, bytestring, cereal
-     , containers, hashable, mtl, scientific, text, time, transformers
+     , containers, hashable, scientific, text, time, transformers
      , transformers-compat, unordered-containers, void
      }:
      mkDerivation {
        pname = "bytes";
-       version = "0.17.2";
-       sha256 = "06kqqk19qjhrwdqi6pyd1lwqfnj2sw3b3s49lc5vr2fmv8gg8mdw";
-       revision = "2";
-       editedCabalFile = "18lgnmvrvg4fgwj6mwds9p708x5vfhsw5v6b1rmdd2x3i0g7z2yf";
+       version = "0.17.3";
+       sha256 = "1ir9v4gjw7zgm9f55wa3y8wgn4zfpi71pvbsdmjgjk9dh02wy2ni";
        libraryHaskellDepends = [
          base binary binary-orphans bytestring cereal containers hashable
-         mtl scientific text time transformers transformers-compat
+         scientific text time transformers transformers-compat
          unordered-containers void
        ];
        description = "Sharing code for serialization between binary and cereal";
@@ -51355,20 +54974,18 @@ self: {
      }) {};
 
   "byteslice" = callPackage
-    ({ mkDerivation, base, bytestring, gauge, primitive, primitive-addr
-     , primitive-unlifted, quickcheck-classes, run-st, tasty
-     , tasty-hunit, tasty-quickcheck, text, text-short, transformers
-     , tuples, vector
+    ({ mkDerivation, base, bytestring, gauge, natural-arithmetic
+     , primitive, primitive-addr, primitive-unlifted, quickcheck-classes
+     , run-st, tasty, tasty-hunit, tasty-quickcheck, text, text-short
+     , transformers, tuples, vector
      }:
      mkDerivation {
        pname = "byteslice";
-       version = "0.2.10.0";
-       sha256 = "12jwivxnq67g7if9ndq7yb3m46kldz2m6ywiyyyjs7p1kidm8hc4";
-       revision = "2";
-       editedCabalFile = "1k5ssfnwfj6qrp4mllxc3masbk51yvqdlmym1pidzmws4d00scch";
+       version = "0.2.11.1";
+       sha256 = "0sp96a2qd6n48nndwfzmp6gcz1lvs488sdrf3vz4lnskris2ghaj";
        libraryHaskellDepends = [
-         base bytestring primitive primitive-addr primitive-unlifted run-st
-         text text-short tuples vector
+         base bytestring natural-arithmetic primitive primitive-addr
+         primitive-unlifted run-st text text-short tuples vector
        ];
        testHaskellDepends = [
          base bytestring primitive quickcheck-classes tasty tasty-hunit
@@ -51386,10 +55003,10 @@ self: {
      }:
      mkDerivation {
        pname = "bytesmith";
-       version = "0.3.9.1";
-       sha256 = "10d0wzinc30b2xc26cfadvpn29gf30gnppysyl3n35ym3p9lnhm2";
+       version = "0.3.10.0";
+       sha256 = "0n0218mrnf6qy7h82apxgpdd868hdbmvn1cghif267xmd0qc3pcp";
        revision = "1";
-       editedCabalFile = "11pmza7qlk63lw6ns6jsnlmfl8wdazz5sc5b2spb0pk29k9yymp2";
+       editedCabalFile = "1lw7ivh995mgpvra2s3klka9n3zc0j8w43mkgi068hlzcj69km0z";
        libraryHaskellDepends = [
          base byteslice bytestring contiguous primitive run-st text-short
          wide-word
@@ -51405,14 +55022,14 @@ self: {
        license = lib.licenses.bsd3;
      }) {};
 
-  "bytestring_0_12_0_0" = callPackage
+  "bytestring_0_12_0_2" = callPackage
     ({ mkDerivation, base, deepseq, ghc-prim, QuickCheck, random, tasty
      , tasty-bench, tasty-quickcheck, template-haskell, transformers
      }:
      mkDerivation {
        pname = "bytestring";
-       version = "0.12.0.0";
-       sha256 = "0lzyz5bjb8f9m64bs5w196vvmhaydwq9ygfrsl4xx1lmi8lq99b5";
+       version = "0.12.0.2";
+       sha256 = "0gmsgnpkmgy7a2rjjrfs3r0n3fvr92dm5c8sc6ymc9h6r3xyagx9";
        libraryHaskellDepends = [ base deepseq ghc-prim template-haskell ];
        testHaskellDepends = [
          base deepseq ghc-prim QuickCheck tasty tasty-quickcheck
@@ -51436,8 +55053,6 @@ self: {
        ];
        description = "Aeson instances for ByteString, using base 64 encoding";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "bytestring-arbitrary" = callPackage
@@ -51986,14 +55601,12 @@ self: {
        pname = "bzlib";
        version = "0.5.1.0";
        sha256 = "1n599xwyxghf52kam30k1l2qh8cg91h55c2bgchnqyj103hb7nfy";
-       revision = "1";
-       editedCabalFile = "0r9b9y5qlz9k8wdzb23jif9wgvxi7r652i9apwzdaq7g1l08i6ky";
+       revision = "2";
+       editedCabalFile = "0v2ffgv20xq8q85z96qic13pqq13ipjxl0bn9wkzxlcd0axa0zhr";
        libraryHaskellDepends = [ base bytestring ];
        librarySystemDepends = [ bzip2 ];
        description = "Compression and decompression in the bzip2 format";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {inherit (pkgs) bzip2;};
 
   "bzlib-conduit" = callPackage
@@ -52189,19 +55802,6 @@ self: {
     ({ mkDerivation, base, bytestring, libxml2 }:
      mkDerivation {
        pname = "c14n";
-       version = "0.1.0.2";
-       sha256 = "165mayyj2apzv87jqsmpyskl6hr7gpvpg7ypi2vqgi8wda1gawki";
-       libraryHaskellDepends = [ base bytestring ];
-       librarySystemDepends = [ libxml2 ];
-       libraryPkgconfigDepends = [ libxml2 ];
-       description = "Bindings to the c14n implementation in libxml";
-       license = lib.licenses.mit;
-     }) {inherit (pkgs) libxml2;};
-
-  "c14n_0_1_0_3" = callPackage
-    ({ mkDerivation, base, bytestring, libxml2 }:
-     mkDerivation {
-       pname = "c14n";
        version = "0.1.0.3";
        sha256 = "1az81fzblbp2c811grz4l318p99w1xd1kn0cirf9hfgbgdbrfkx8";
        libraryHaskellDepends = [ base bytestring ];
@@ -52209,7 +55809,6 @@ self: {
        libraryPkgconfigDepends = [ libxml2 ];
        description = "Bindings to the c14n implementation in libxml";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {inherit (pkgs) libxml2;};
 
   "c2ats" = callPackage
@@ -52367,9 +55966,7 @@ self: {
        ];
        description = "A maintenance command of Haskell cabal packages";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "cab";
-       broken = true;
      }) {};
 
   "cabal" = callPackage
@@ -52927,7 +56524,6 @@ self: {
        description = "Give Haskell development tools access to Cabal project environment";
        license = lib.licenses.asl20;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "cabal-hoogle" = callPackage
@@ -53345,7 +56941,6 @@ self: {
        license = lib.licenses.bsd2;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "cabal-plan-bounds";
-       broken = true;
      }) {};
 
   "cabal-progdeps" = callPackage
@@ -53389,10 +56984,8 @@ self: {
      }:
      mkDerivation {
        pname = "cabal-rpm";
-       version = "2.1.1";
-       sha256 = "0p75a9q4hjrvbiqq3h7730h1b400z7v5v9kns703d09hr2l0zgg0";
-       revision = "1";
-       editedCabalFile = "1a4r0h635wzrg27b2mg2lhnsy8d5vrn3ps4bc7qzflx82rxmpvvl";
+       version = "2.1.2";
+       sha256 = "0593260apchmhkvn48m7fgffi3w668ky0n8fyhbx8557kqv55w6f";
        isLibrary = false;
        isExecutable = true;
        executableHaskellDepends = [
@@ -55303,7 +58896,6 @@ self: {
        description = "Monadic capabilities with late binding";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "captcha-2captcha" = callPackage
@@ -55725,6 +59317,28 @@ self: {
        license = lib.licenses.bsd3;
      }) {};
 
+  "casa-client_0_0_2" = callPackage
+    ({ mkDerivation, aeson, attoparsec, base, base16-bytestring
+     , bytestring, casa-types, conduit, conduit-extra, crypton
+     , exceptions, http-conduit, http-types, memory, network-uri
+     , resourcet, template-haskell, text, th-lift, unliftio-core
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "casa-client";
+       version = "0.0.2";
+       sha256 = "0nr6dz6igxkmr4841hppd5zz0vjycfvybr3abqylrssg6vg988p2";
+       libraryHaskellDepends = [
+         aeson attoparsec base base16-bytestring bytestring casa-types
+         conduit conduit-extra crypton exceptions http-conduit http-types
+         memory network-uri resourcet template-haskell text th-lift
+         unliftio-core unordered-containers
+       ];
+       description = "Client for Casa";
+       license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
+     }) {};
+
   "casa-types" = callPackage
     ({ mkDerivation, aeson, attoparsec, base, base16-bytestring
      , bytestring, hashable, path-pieces, persistent, text
@@ -56213,8 +59827,8 @@ self: {
        pname = "cassava";
        version = "0.5.3.0";
        sha256 = "1gp954w05bj83z4i6isq2qxi1flqwppsgxxrp1f75mrs8cglbj5l";
-       revision = "2";
-       editedCabalFile = "16aydwrszzf28s1dwf6bkfi815rbmpzq0z4zid5w91davg8annyv";
+       revision = "3";
+       editedCabalFile = "192y0bwxyn290rf1zh4snsb2x6nk3siz3rac265cddd087c6zkg8";
        configureFlags = [ "-f-bytestring--lt-0_10_4" ];
        libraryHaskellDepends = [
          array attoparsec base bytestring containers deepseq hashable Only
@@ -57457,6 +61071,32 @@ self: {
        broken = true;
      }) {};
 
+  "cfg" = callPackage
+    ({ mkDerivation, base, bytestring, containers, doctest, errors
+     , free, hedgehog, hspec, hspec-core, hspec-discover
+     , hspec-expectations, hspec-hedgehog, megaparsec, mtl
+     , pretty-simple, text, vector
+     }:
+     mkDerivation {
+       pname = "cfg";
+       version = "0.0.2.1";
+       sha256 = "0fy21jxpr3720r4l6xnsbg2xasyrq94ljjnnk6639q4w8waqqrb2";
+       libraryHaskellDepends = [
+         base bytestring containers errors free megaparsec mtl pretty-simple
+         text vector
+       ];
+       testHaskellDepends = [
+         base containers doctest free hedgehog hspec hspec-core
+         hspec-discover hspec-expectations hspec-hedgehog mtl pretty-simple
+         text
+       ];
+       testToolDepends = [ hspec-discover ];
+       description = "Type directed application configuration parsing and accessors";
+       license = lib.licenses.mit;
+       hydraPlatforms = lib.platforms.none;
+       broken = true;
+     }) {};
+
   "cfipu" = callPackage
     ({ mkDerivation, base, bytestring, containers, data-default
      , dequeue, mtl
@@ -57598,8 +61238,6 @@ self: {
        ];
        description = "A library for writing CGI programs";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "cgi-undecidable" = callPackage
@@ -57611,7 +61249,6 @@ self: {
        libraryHaskellDepends = [ base cgi mtl ];
        description = "Undecidable instances for the cgi package";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "cgi-utils" = callPackage
@@ -57626,6 +61263,7 @@ self: {
        description = "Simple modular utilities for CGI/FastCGI (sessions, etc.)";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "cgrep" = callPackage
@@ -57763,7 +61401,6 @@ self: {
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "chakra-exe";
-       broken = true;
      }) {};
 
   "chalk" = callPackage
@@ -57793,6 +61430,7 @@ self: {
        ];
        description = "Combinators for building and processing 2D images";
        license = lib.licenses.bsd3;
+       badPlatforms = lib.platforms.darwin;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "chalkboard-server-1_9_0_16";
        broken = true;
@@ -57807,6 +61445,7 @@ self: {
        libraryHaskellDepends = [ array base chalkboard GLUT OpenGL time ];
        description = "OpenGL based viewer for chalkboard rendered images";
        license = lib.licenses.bsd3;
+       badPlatforms = lib.platforms.darwin;
        hydraPlatforms = lib.platforms.none;
      }) {};
 
@@ -57994,8 +61633,8 @@ self: {
      }:
      mkDerivation {
        pname = "charset";
-       version = "0.3.9";
-       sha256 = "12wrphd5j1asb3n6awbph4n695mfmnzk6yzggrp387hx960qfkyb";
+       version = "0.3.10";
+       sha256 = "1y9571120f428rkif97w4vwjas9x0916qgl9kkm71yxjz7dm2ihy";
        libraryHaskellDepends = [
          array base bytestring containers unordered-containers
        ];
@@ -58068,8 +61707,8 @@ self: {
      }:
      mkDerivation {
        pname = "chart-svg";
-       version = "0.4.0";
-       sha256 = "1nsg5njv2sjg9rk5r0i3hx5p6vh8pa16m1mcgc6bf8cddkmgglip";
+       version = "0.4.1.1";
+       sha256 = "198b817pq673fsxi24v9llnf90vrpy16j4qlbhij88mknmhx2cr3";
        libraryHaskellDepends = [
          adjunctions attoparsec base bytestring Color containers cubicbezier
          flatparse foldl formatn mtl numhask numhask-array numhask-space
@@ -58202,7 +61841,6 @@ self: {
        ];
        description = "Polykinded Prelude Kernel";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "chatter" = callPackage
@@ -58827,6 +62465,18 @@ self: {
        license = lib.licenses.publicDomain;
      }) {};
 
+  "choice_0_2_3" = callPackage
+    ({ mkDerivation, base }:
+     mkDerivation {
+       pname = "choice";
+       version = "0.2.3";
+       sha256 = "15nls2azmhwi3nnf5rkl954pa0bjgi231ff74hgw8r3nb5axrgrn";
+       libraryHaskellDepends = [ base ];
+       description = "A solution to boolean blindness";
+       license = lib.licenses.publicDomain;
+       hydraPlatforms = lib.platforms.none;
+     }) {};
+
   "choose" = callPackage
     ({ mkDerivation, base, MonadRandom }:
      mkDerivation {
@@ -59686,7 +63336,6 @@ self: {
        description = "Circle API client for Haskell";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "circle-packing" = callPackage
@@ -59778,8 +63427,6 @@ self: {
        testHaskellDepends = [ base hspec ];
        description = "Make bounded enum types circular";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "circus" = callPackage
@@ -60632,8 +64279,8 @@ self: {
      }:
      mkDerivation {
        pname = "classy-prelude";
-       version = "1.5.0.2";
-       sha256 = "0mxgx4hr5fsdg45wbilhsnryc61yclhf63bh94q88n26gjmjr60h";
+       version = "1.5.0.3";
+       sha256 = "1cng9s3k2rp5n9y3jvim7xgz69s9bhwnjh16pvnj0rrr0dkk18dk";
        libraryHaskellDepends = [
          async base basic-prelude bifunctors bytestring chunked-data
          containers deepseq dlist ghc-prim hashable mono-traversable
@@ -60707,6 +64354,8 @@ self: {
        pname = "clay";
        version = "0.14.0";
        sha256 = "10dwgvga0xsil20w6l0xr8g1lsxg7rwdfcv4bga818jp49xbmnac";
+       revision = "1";
+       editedCabalFile = "1jgza1f88j90jgvmyb0b683vlh7c0whpk9r4kzl5b7536wqsf2x5";
        libraryHaskellDepends = [ base mtl text ];
        testHaskellDepends = [ base hspec hspec-discover mtl text ];
        testToolDepends = [ hspec-discover ];
@@ -60821,7 +64470,6 @@ self: {
        description = "bug tracking plugin for clckwrks";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "clckwrks-plugin-ircbot" = callPackage
@@ -60871,7 +64519,6 @@ self: {
        description = "mailing list plugin for clckwrks";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "clckwrks-plugin-media" = callPackage
@@ -60982,7 +64629,6 @@ self: {
        description = "simple bootstrap based template for clckwrks";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "clckwrks-theme-geo-bootstrap" = callPackage
@@ -60996,7 +64642,6 @@ self: {
        description = "geo bootstrap based template for clckwrks";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "cld2" = callPackage
@@ -61052,8 +64697,8 @@ self: {
        pname = "cleff";
        version = "0.3.3.0";
        sha256 = "0fnpk28nhafypp7p1ay1760sin9hh06dz23r68gmm93i879ayl9b";
-       revision = "3";
-       editedCabalFile = "1dampx9zdpj14g6a7xhsyk9xg3zq2chpv0h43jb85pyyh6ig7rb4";
+       revision = "4";
+       editedCabalFile = "07js52a0fjrbd4w653ix0l5xyxjnm46nj7ca5qvacjz0f1sfkgfj";
        libraryHaskellDepends = [
          atomic-primops base containers exceptions microlens monad-control
          primitive template-haskell th-abstraction transformers-base
@@ -61107,8 +64752,6 @@ self: {
        testToolDepends = [ lima ];
        description = "Declaratively describe spreadsheets";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "cless" = callPackage
@@ -61144,8 +64787,10 @@ self: {
      }:
      mkDerivation {
        pname = "cleveland";
-       version = "0.3.2";
-       sha256 = "0j9qgc1vjqqf7w17pr3984ziq1f8qc26qq4s6xrb46sdaqixjyk8";
+       version = "0.4.0";
+       sha256 = "06jswn3plqc9lv2xmb4lhbjg136v49sr7s0kpr23qdlx8g59sxv8";
+       revision = "1";
+       editedCabalFile = "06l8j1mhyq077dm2hrgp6cbcxkl03yifbbdd7zn14rlzwxbdgjs3";
        libraryHaskellDepends = [
          aeson base-noprelude constraints containers criterion cryptonite
          data-default dependent-map directory exceptions file-embed hedgehog
@@ -61289,7 +64934,6 @@ self: {
        description = "Bindings to the git command-line interface";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "cli-nix" = callPackage
@@ -61307,7 +64951,6 @@ self: {
        description = "Bindings to the nix command-line interface";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "cli-setup" = callPackage
@@ -61380,32 +65023,6 @@ self: {
 
   "clientsession" = callPackage
     ({ mkDerivation, base, base64-bytestring, bytestring, cereal
-     , cipher-aes, containers, cprng-aes, crypto-api, crypto-random
-     , directory, entropy, hspec, HUnit, QuickCheck, setenv, skein
-     , tagged, transformers
-     }:
-     mkDerivation {
-       pname = "clientsession";
-       version = "0.9.1.2";
-       sha256 = "0s6h4ykj16mpf7nlw2iqn2ji0p8g1fn5ni0s7yqaili6vv2as5ar";
-       isLibrary = true;
-       isExecutable = true;
-       libraryHaskellDepends = [
-         base base64-bytestring bytestring cereal cipher-aes cprng-aes
-         crypto-api crypto-random directory entropy setenv skein tagged
-       ];
-       executableHaskellDepends = [ base ];
-       testHaskellDepends = [
-         base bytestring cereal containers hspec HUnit QuickCheck
-         transformers
-       ];
-       description = "Securely store session data in a client-side cookie";
-       license = lib.licenses.mit;
-       mainProgram = "clientsession-generate";
-     }) {};
-
-  "clientsession_0_9_2_0" = callPackage
-    ({ mkDerivation, base, base64-bytestring, bytestring, cereal
      , containers, crypto-api, cryptonite, directory, entropy, hspec
      , HUnit, QuickCheck, setenv, skein, tagged, transformers
      }:
@@ -61428,7 +65045,6 @@ self: {
        ];
        description = "Securely store session data in a client-side cookie";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "clientsession-generate";
      }) {};
 
@@ -61679,19 +65295,6 @@ self: {
     ({ mkDerivation, base, criterion, tasty, tasty-quickcheck }:
      mkDerivation {
        pname = "clock";
-       version = "0.8.3";
-       sha256 = "1l850pf1dxjf3i15wc47d64gzkpzgvw0bq13fd8zvklq9kdyap44";
-       libraryHaskellDepends = [ base ];
-       testHaskellDepends = [ base tasty tasty-quickcheck ];
-       benchmarkHaskellDepends = [ base criterion ];
-       description = "High-resolution clock functions: monotonic, realtime, cputime";
-       license = lib.licenses.bsd3;
-     }) {};
-
-  "clock_0_8_4" = callPackage
-    ({ mkDerivation, base, criterion, tasty, tasty-quickcheck }:
-     mkDerivation {
-       pname = "clock";
        version = "0.8.4";
        sha256 = "0bnzcx3qmcyvaywzgah9z9cqwbiwib8xbynm9hrmx2kqzs58ksba";
        libraryHaskellDepends = [ base ];
@@ -61699,7 +65302,6 @@ self: {
        benchmarkHaskellDepends = [ base criterion ];
        description = "High-resolution clock functions: monotonic, realtime, cputime";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "clock-extras" = callPackage
@@ -62032,7 +65634,6 @@ self: {
        description = "Quasiquoters for inline C# and F#";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "clr-marshal" = callPackage
@@ -62157,7 +65758,6 @@ self: {
        description = "High performance clustering algorithms";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "clustertools" = callPackage
@@ -62694,8 +66294,6 @@ self: {
        libraryHaskellDepends = [ base co-log-core stm ];
        description = "Asynchronous backend for co-log library";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "co-log-core" = callPackage
@@ -62725,8 +66323,6 @@ self: {
        ];
        description = "Structured messages support in co-log ecosystem";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "co-log-polysemy" = callPackage
@@ -63220,10 +66816,8 @@ self: {
     ({ mkDerivation, base, profunctors }:
      mkDerivation {
        pname = "coercible-subtypes";
-       version = "0.3.0.0";
-       sha256 = "14swbn5509wb46iwgp2lj8hqi3ca82jacgq028cmwz35zsc1zjds";
-       revision = "1";
-       editedCabalFile = "0b60xy5pcfkys6a2q6ykzva9ld1gsq09j3chnq9vab9bxx4r92dh";
+       version = "0.3.0.1";
+       sha256 = "1mji6jlgc2lk6lczn10c2rchm10h2my3gs9p3r9yd6ij8ixki4sx";
        libraryHaskellDepends = [ base profunctors ];
        description = "Coercible but only in one direction";
        license = lib.licenses.bsd3;
@@ -63979,6 +67573,8 @@ self: {
        pname = "colourista";
        version = "0.1.0.2";
        sha256 = "0g06116kjg9pbp0l7n33agqbks3kw5z4rjqyhylha8miah5sxbwn";
+       revision = "1";
+       editedCabalFile = "0wjngfcnqaibdds17q8r8v8yvbl94qxbjhmill4vi1fzfsiw4yrg";
        libraryHaskellDepends = [ ansi-terminal base bytestring text ];
        testHaskellDepends = [ base bytestring hspec text ];
        description = "Convenient interface for printing colourful messages";
@@ -64195,7 +67791,6 @@ self: {
        description = "Graphical representations for various combinatorial objects";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "combinator-interactive" = callPackage
@@ -64440,8 +68035,6 @@ self: {
        ];
        description = "A format for describing comics";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "comma" = callPackage
@@ -64520,9 +68113,7 @@ self: {
        testHaskellDepends = [ base commandert text unordered-containers ];
        description = "A command line argument/option parser library";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "task-manager";
-       broken = true;
      }) {};
 
   "commandert" = callPackage
@@ -65134,8 +68725,6 @@ self: {
        ];
        description = "Compositional Data Types";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "compdata-automata" = callPackage
@@ -65151,7 +68740,6 @@ self: {
        ];
        description = "Tree automata on Compositional Data Types";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "compdata-dags" = callPackage
@@ -65174,6 +68762,7 @@ self: {
        description = "Compositional Data Types on DAGs";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "compdata-fixplate" = callPackage
@@ -65210,6 +68799,7 @@ self: {
        description = "Parametric Compositional Data Types";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "compdoc" = callPackage
@@ -65229,7 +68819,6 @@ self: {
        ];
        description = "Parse a Pandoc to a composite value";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "compdoc-dhall-decoder" = callPackage
@@ -65248,7 +68837,6 @@ self: {
        ];
        description = "Allows you to write FromDhall instances for Compdoc";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "compendium-client" = callPackage
@@ -65278,8 +68866,8 @@ self: {
        pname = "compensated";
        version = "0.8.3";
        sha256 = "0xigi4pcw581d8kjbhdjkksyz9bgcgvq0j17br9z1x6a3hw1m39a";
-       revision = "3";
-       editedCabalFile = "0fccjb5q07w1k3pl6x0jrglvbkfycqfjhbd121h3bxg6y5c3fs40";
+       revision = "4";
+       editedCabalFile = "101rydn8qixa67fpx2wkliklbiwb76c8hvjqxb08rj01fnj88z5r";
        libraryHaskellDepends = [
          base bifunctors binary bytes cereal comonad deepseq distributive
          hashable lens log-domain safecopy semigroupoids semigroups vector
@@ -65490,7 +69078,6 @@ self: {
        ];
        description = "JSON for Vinyl records";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "composite-aeson-cofree-list" = callPackage
@@ -65506,7 +69093,6 @@ self: {
        ];
        description = "Print a Cofree [] as a JSON value";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "composite-aeson-path" = callPackage
@@ -65552,7 +69138,6 @@ self: {
        ];
        description = "MonadThrow behaviour for composite-aeson";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "composite-aeson-writeonly" = callPackage
@@ -65567,7 +69152,6 @@ self: {
        ];
        description = "WriteOnly indicators for composite-aeson";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "composite-base" = callPackage
@@ -65579,6 +69163,8 @@ self: {
        pname = "composite-base";
        version = "0.8.2.1";
        sha256 = "0i2mamh5gz7ay1cm5nkmdbh2lnaph42pfi2aa9jb2baxi0jgxdri";
+       revision = "1";
+       editedCabalFile = "1fww7f7z583vp7kfrf6xi6y0plpm4jsh3j72xbgarprlz25j1aip";
        libraryHaskellDepends = [
          base deepseq exceptions lens monad-control mtl profunctors
          template-haskell text transformers transformers-base unliftio-core
@@ -65591,8 +69177,6 @@ self: {
        ];
        description = "Shared utilities for composite-* packages";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "composite-binary" = callPackage
@@ -65604,7 +69188,6 @@ self: {
        libraryHaskellDepends = [ base binary composite-base ];
        description = "Orphan binary instances";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "composite-cassava" = callPackage
@@ -65642,7 +69225,6 @@ self: {
        ];
        description = "Dhall instances for composite records";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "composite-ekg" = callPackage
@@ -65658,6 +69240,7 @@ self: {
        description = "EKG Metrics for Vinyl records";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "composite-hashable" = callPackage
@@ -65669,7 +69252,6 @@ self: {
        libraryHaskellDepends = [ base composite-base hashable ];
        description = "Orphan hashable instances";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "composite-ix" = callPackage
@@ -65688,7 +69270,6 @@ self: {
        ];
        description = "Indexing utilities for composite records";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "composite-lens-extra" = callPackage
@@ -65700,7 +69281,6 @@ self: {
        libraryHaskellDepends = [ base composite-base lens vinyl ];
        description = "Extra lens functions for composite";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "composite-opaleye" = callPackage
@@ -65724,6 +69304,7 @@ self: {
        description = "Opaleye SQL for Vinyl records";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "composite-swagger" = callPackage
@@ -65746,6 +69327,7 @@ self: {
        description = "Swagger for Vinyl records";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "composite-tuple" = callPackage
@@ -65759,7 +69341,6 @@ self: {
        libraryHaskellDepends = [ base composite-base ];
        description = "Tuple functions for composite records";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "composite-xml" = callPackage
@@ -65779,7 +69360,6 @@ self: {
        ];
        description = "RecXML Type";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "composite-xstep" = callPackage
@@ -65791,7 +69371,6 @@ self: {
        libraryHaskellDepends = [ base composite-base vinyl ];
        description = "ReaderT transformer pattern for higher kinded composite data";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "composition" = callPackage
@@ -65936,6 +69515,7 @@ self: {
        description = "Strategy combinators for compositional data types";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "comptrans" = callPackage
@@ -65954,6 +69534,7 @@ self: {
        description = "Automatically converting ASTs into compositional data types";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "computational-algebra" = callPackage
@@ -66342,7 +69923,6 @@ self: {
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "makecharts";
-       broken = true;
      }) {};
 
   "concurrent-barrier" = callPackage
@@ -66579,8 +70159,6 @@ self: {
        testHaskellDepends = [ base containers ];
        description = "A fast concurrent unique identifier supply with a pure API";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "concurrent-utilities" = callPackage
@@ -67297,8 +70875,8 @@ self: {
        pname = "conferer";
        version = "1.1.0.0";
        sha256 = "1hkdrqxrac1mbzvd29f6ds4cbihdv0j0daai7yc282myv0varh09";
-       revision = "3";
-       editedCabalFile = "15gs9cv1i9j4qx6vnp32yhcjb5rjaf9g3jsfdzmi5v7i3b1gziwc";
+       revision = "4";
+       editedCabalFile = "09qw98sy1w80cackq4mncgj4l6faqhh5c49fli3al4sivw1xvr9l";
        libraryHaskellDepends = [
          base bytestring containers directory filepath text
        ];
@@ -67308,8 +70886,6 @@ self: {
        ];
        description = "Configuration management library";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "conferer-aeson" = callPackage
@@ -67320,8 +70896,8 @@ self: {
        pname = "conferer-aeson";
        version = "1.1.0.2";
        sha256 = "07rdal3smq1s14zmsn7g26vc6sqj21rsa2a1vcbrwrfgh9x36jkn";
-       revision = "3";
-       editedCabalFile = "162knmji5970ccdfbh3vz930ljwl4mahpbdj5si5rj2v3aays9ms";
+       revision = "4";
+       editedCabalFile = "0g5bkl5lgy4a2cp2vjhwf8w2gwjl3687r2ckcjz7dmnqpgx06zla";
        libraryHaskellDepends = [
          aeson base bytestring conferer directory text unordered-containers
          vector
@@ -67332,7 +70908,6 @@ self: {
        ];
        description = "conferer's source for reading json files";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "conferer-dhall" = callPackage
@@ -67343,8 +70918,8 @@ self: {
        pname = "conferer-dhall";
        version = "1.1.0.0";
        sha256 = "0whxxjz5askw1qxcxdn5094bqm2hy3zp49567v57gqikgv6rcnp1";
-       revision = "1";
-       editedCabalFile = "1bbc5a3iy5fcp7ahxndhfg8v0sk74q0hs00miiv8gqg7f3l5b20j";
+       revision = "2";
+       editedCabalFile = "1d8136m9mq06drs5k903gr0mm79z4898mgq3grzfl821d9bkcgi1";
        libraryHaskellDepends = [
          base bytestring conferer conferer-aeson dhall dhall-json directory
          text
@@ -67365,11 +70940,12 @@ self: {
        pname = "conferer-hedis";
        version = "1.1.0.0";
        sha256 = "10rk5w3f99ql46yvzg7a0ac59dvpyfhdpv138w0w5ghgz5azcd19";
+       revision = "1";
+       editedCabalFile = "1idrgx558fcxpa76v1lp9fmja0mdgyvwv614id16kpw1yc32nlw8";
        libraryHaskellDepends = [ base conferer hedis text ];
        testHaskellDepends = [ base conferer hedis hspec text ];
        description = "conferer's FromConfig instances for hedis settings";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "conferer-hspec" = callPackage
@@ -67378,6 +70954,8 @@ self: {
        pname = "conferer-hspec";
        version = "1.1.0.0";
        sha256 = "0q9v26df3c2rxll6rk2zmmd9yrpqz1j1wdp59qlw2s6c2w7dxq35";
+       revision = "1";
+       editedCabalFile = "0r03dqr6lw5mkdvsvcikig51m9ycnja217px4dswhbf2y7qga6lh";
        libraryHaskellDepends = [ base conferer hspec-core text ];
        testHaskellDepends = [ base conferer hspec hspec-core text ];
        description = "conferer's FromConfig instances for hspec Config";
@@ -67456,8 +71034,8 @@ self: {
        pname = "conferer-snap";
        version = "1.0.0.0";
        sha256 = "15gz77b5jf35hmcnd6kza1wgzpbgk3pcvhi7mp7yk64ybksld98r";
-       revision = "1";
-       editedCabalFile = "08bji5mw7lzxpx9s1mlim5nfcz7j6828zj75pn670jfip0in4j19";
+       revision = "2";
+       editedCabalFile = "1xm45qifvkvjxfi6b82qmjbk3hgrqynxjn9vhfcf5q9m5m6w5ffx";
        libraryHaskellDepends = [
          base conferer snap-core snap-server text
        ];
@@ -67544,7 +71122,6 @@ self: {
        ];
        description = "conferer's FromConfig instances for warp settings";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "conferer-yaml" = callPackage
@@ -67559,7 +71136,6 @@ self: {
        testHaskellDepends = [ base conferer conferer-aeson hspec yaml ];
        description = "Configuration for reading yaml files";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "confetti" = callPackage
@@ -67616,7 +71192,6 @@ self: {
        description = "derive typeclass instances for decoding types from HOCON conf";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "config-ini" = callPackage
@@ -68283,8 +71858,6 @@ self: {
        ];
        description = "Constrained clones of the category-theory type classes, using ConstraintKinds";
        license = lib.licenses.gpl3Only;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "constrained-category" = callPackage
@@ -68442,6 +72015,8 @@ self: {
        pname = "constraints";
        version = "0.13.4";
        sha256 = "0d248szyp70k1qlivsimk0j5vz9hdx1alhismry5v35qyinr91j1";
+       revision = "1";
+       editedCabalFile = "0dpxj110kl9msci5czqlvysp3mi6bhah0p4m6z4qlydngcq3920d";
        libraryHaskellDepends = [
          base binary deepseq ghc-prim hashable mtl transformers
          transformers-compat type-equality
@@ -69554,7 +73129,6 @@ self: {
        license = lib.licenses.gpl3Only;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "convert-annotation";
-       broken = true;
      }) {};
 
   "convertible" = callPackage
@@ -70210,7 +73784,6 @@ self: {
        description = "Launches CoreNLP and parses the JSON output";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {inherit (pkgs) rocksdb;};
 
   "cornea" = callPackage
@@ -70827,8 +74400,6 @@ self: {
        description = "Binding for the cpuid machine instruction on x86 compatible processors";
        license = lib.licenses.gpl2Only;
        platforms = lib.platforms.x86;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "cpuinfo" = callPackage
@@ -71670,7 +75241,7 @@ self: {
        mainProgram = "criterion-report";
      }) {};
 
-  "criterion_1_6_2_0" = callPackage
+  "criterion_1_6_3_0" = callPackage
     ({ mkDerivation, aeson, base, base-compat, base-compat-batteries
      , binary, binary-orphans, bytestring, cassava, code-page
      , containers, criterion-measurement, deepseq, directory, exceptions
@@ -71682,10 +75253,8 @@ self: {
      }:
      mkDerivation {
        pname = "criterion";
-       version = "1.6.2.0";
-       sha256 = "1yiish22n4x9zh1gl6bf1rnbcimgad87dgkxk663hzc78683q2dm";
-       revision = "1";
-       editedCabalFile = "164w1p7vnijlmf1cyn5x2i667g3dqf57pf7wwii05av7733wbdns";
+       version = "1.6.3.0";
+       sha256 = "18lvvsgd9wwffmq00hqspjqk71njaw9ia6j5n930rpvab7i125y3";
        isLibrary = true;
        isExecutable = true;
        enableSeparateDataOutput = true;
@@ -71850,7 +75419,6 @@ self: {
        description = "Criu RPC protocol buffer types";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {inherit (pkgs) protobuf;};
 
   "crjdt-haskell" = callPackage
@@ -72434,7 +76002,6 @@ self: {
        testToolDepends = [ tasty-discover ];
        description = "Easy-and-safe-to-use high-level cryptography based on Sodium";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "crypto-token" = callPackage
@@ -72649,6 +76216,8 @@ self: {
        pname = "cryptohash-sha512";
        version = "0.11.102.0";
        sha256 = "0b48qwgyn68rfbq4fh6fmsk1kc07n8qq95217n8gjnlzvsh2395z";
+       revision = "1";
+       editedCabalFile = "1y9d4f495gb5gdwsmzamgrq9yl16fx1bsaw6pr5236q6yahz0sb1";
        libraryHaskellDepends = [ base bytestring ];
        testHaskellDepends = [
          base base16-bytestring bytestring SHA tasty tasty-hunit
@@ -72799,6 +76368,27 @@ self: {
        hydraPlatforms = lib.platforms.none;
      }) {};
 
+  "crypton-conduit" = callPackage
+    ({ mkDerivation, base, bytestring, conduit, conduit-combinators
+     , conduit-extra, crypton, exceptions, memory, resourcet, tasty
+     , tasty-hunit, tasty-quickcheck, transformers
+     }:
+     mkDerivation {
+       pname = "crypton-conduit";
+       version = "0.2.3";
+       sha256 = "1kkizzapdv1lnkijmygpr3jdh2wiszcjhbi9byjzjphinpwlaply";
+       libraryHaskellDepends = [
+         base bytestring conduit conduit-extra crypton exceptions memory
+         resourcet transformers
+       ];
+       testHaskellDepends = [
+         base bytestring conduit conduit-combinators crypton memory tasty
+         tasty-hunit tasty-quickcheck
+       ];
+       description = "crypton conduit";
+       license = lib.licenses.bsd3;
+     }) {};
+
   "crypton-connection" = callPackage
     ({ mkDerivation, base, basement, bytestring, containers
      , crypton-x509, crypton-x509-store, crypton-x509-system
@@ -73111,7 +76701,6 @@ self: {
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "csg-raycaster";
-       broken = true;
      }) {};
 
   "csound-catalog" = callPackage
@@ -73745,8 +77334,8 @@ self: {
      }:
      mkDerivation {
        pname = "cuda";
-       version = "0.11.0.0";
-       sha256 = "0j35p4i611jkxa3i59gvc7vgbkzx7ckri1fd1n0ryv8akn4gl9m8";
+       version = "0.11.0.1";
+       sha256 = "0zfxzmixla3cmzkxrb0amndhhfllsw532ys96r9vc00lfrqlsqqb";
        isLibrary = true;
        isExecutable = true;
        setupHaskellDepends = [ base Cabal directory filepath ];
@@ -74122,7 +77711,6 @@ self: {
        description = "Fast, Haskell RPC";
        license = lib.licenses.publicDomain;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "curryrs" = callPackage
@@ -75854,8 +79442,6 @@ self: {
        benchmarkHaskellDepends = [ base criterion ];
        description = "Extensible records and polymorphic variants";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "data-diverse-lens" = callPackage
@@ -75873,6 +79459,7 @@ self: {
        description = "Isos & Lens for Data.Diverse.Many and Prisms for Data.Diverse.Which";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "data-dword" = callPackage
@@ -76412,15 +79999,14 @@ self: {
        description = "A Lens for IxSet";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "data-lens-light" = callPackage
     ({ mkDerivation, base, mtl, template-haskell }:
      mkDerivation {
        pname = "data-lens-light";
-       version = "0.1.2.3";
-       sha256 = "1xczbmgin315qh9wpl6v2vvnp6hv1irfbfqs7pk034qcpx61fwdl";
+       version = "0.1.2.4";
+       sha256 = "07gli8w7k2h5v4ih7iq2rlp0xbd7vpqbpp9xvw95n6l7z67qfsyx";
        libraryHaskellDepends = [ base mtl template-haskell ];
        description = "Simple lenses, minimum dependencies";
        license = lib.licenses.mit;
@@ -78834,7 +82420,6 @@ self: {
        testHaskellDepends = [ base mwc-probability ];
        description = "DIY Markov Chains";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "decode-utf8" = callPackage
@@ -78998,12 +82583,12 @@ self: {
        mainProgram = "deeplearning_demonstration";
      }) {};
 
-  "deepseq_1_4_8_1" = callPackage
+  "deepseq_1_5_0_0" = callPackage
     ({ mkDerivation, array, base, ghc-prim }:
      mkDerivation {
        pname = "deepseq";
-       version = "1.4.8.1";
-       sha256 = "0p8nmji6r9171mrmnnsm1x396pz6q0vks0afy475vny73i1rx1a7";
+       version = "1.5.0.0";
+       sha256 = "12w6zflnkgn757psx1ips3fh3yxscil5x0jil6gir3dj9279mwd0";
        libraryHaskellDepends = [ array base ghc-prim ];
        testHaskellDepends = [ array base ghc-prim ];
        description = "Deep evaluation of data structures";
@@ -79646,7 +83231,6 @@ self: {
        description = "A dynamic environment for dependency injection";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "dep-t-value" = callPackage
@@ -79669,7 +83253,6 @@ self: {
        description = "Pair resources files with types within your program";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "dependency" = callPackage
@@ -79817,6 +83400,8 @@ self: {
        pname = "dependent-sum";
        version = "0.4";
        sha256 = "07hs9s78wiybwjwkal2yq65hdavq0gg1h2ld7wbph61s2nsfrpm8";
+       revision = "1";
+       editedCabalFile = "01l176qjk728kyjbmwanjw2avx14bkrr34ncs5daxrifw6wq00w7";
        libraryHaskellDepends = [ base ];
        description = "Dependent sum type";
        license = lib.licenses.publicDomain;
@@ -79868,14 +83453,14 @@ self: {
        license = lib.licenses.publicDomain;
      }) {};
 
-  "dependent-sum-template_0_1_2_0" = callPackage
+  "dependent-sum-template_0_2_0_0" = callPackage
     ({ mkDerivation, base, constraints-extras, containers, mtl, some
      , template-haskell, th-abstraction
      }:
      mkDerivation {
        pname = "dependent-sum-template";
-       version = "0.1.2.0";
-       sha256 = "1xi8qpi16z06flj3pdy7fhiyrr0wlrh9kxrsj3glw0bwq2b1hyp1";
+       version = "0.2.0.0";
+       sha256 = "10as7ywsm83xaz6glxqpghla1zsqxqy980i1rdiiia1k3j1jsqy9";
        libraryHaskellDepends = [
          base containers mtl some template-haskell th-abstraction
        ];
@@ -80239,6 +83824,8 @@ self: {
        pname = "deriving-aeson";
        version = "0.2.9";
        sha256 = "0cqq4ri9dgqkdh9wybf3wf5zxb9nihql591bk1lacnzdyxfrgcn0";
+       revision = "1";
+       editedCabalFile = "14iqkk7vs0lb0sgq159z0xw95pa87r60i1f4m17gfh2gbbddcywm";
        libraryHaskellDepends = [ aeson base ];
        testHaskellDepends = [ aeson base bytestring ];
        description = "Type driven generic aeson instance customisation";
@@ -80253,8 +83840,8 @@ self: {
      }:
      mkDerivation {
        pname = "deriving-compat";
-       version = "0.6.3";
-       sha256 = "0ak9csg3843wppjgdh2lvfhszdxgahscn4sbmxs2l0dr5l0rggxi";
+       version = "0.6.5";
+       sha256 = "1wrjapgp6sy2h8jql05ryyzmiadlkfy5qw1brka466j6ag7jwha7";
        libraryHaskellDepends = [
          base containers ghc-boot-th ghc-prim template-haskell
          th-abstraction transformers transformers-compat
@@ -80283,7 +83870,6 @@ self: {
        description = "DerivingVia for OpenAPI 3";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "deriving-show-simple" = callPackage
@@ -80313,8 +83899,6 @@ self: {
        ];
        description = "Derive instances for monad transformer stacks";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "deriving-trans_0_9_1_0" = callPackage
@@ -80334,7 +83918,6 @@ self: {
        description = "Derive instances for monad transformer stacks";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "derivingvia-extras" = callPackage
@@ -80475,8 +84058,6 @@ self: {
        ];
        description = "Self-describing consumers/parsers; forms, cmd-line args, JSON, etc";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "desert" = callPackage
@@ -81541,6 +85122,7 @@ self: {
        description = "Convert recursive ADTs from and to Dhall";
        license = lib.licenses.cc0;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "dhall-secret" = callPackage
@@ -81990,8 +85572,6 @@ self: {
        ];
        description = "hint-based build service for the diagrams graphics EDSL";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "diagrams-cairo" = callPackage
@@ -82004,6 +85584,8 @@ self: {
        pname = "diagrams-cairo";
        version = "1.4.2.1";
        sha256 = "0fqma8m4xrqha079aqqynk23y252x47xfzvb0gss4bvgdmwa0lzc";
+       revision = "1";
+       editedCabalFile = "11a0y68w0gnp7vfbqzh4wnmi514axx6zpcih5byrbanx4w5b0qhh";
        libraryHaskellDepends = [
          array base bytestring cairo colour containers data-default-class
          diagrams-core diagrams-lib filepath hashable JuicyPixels lens mtl
@@ -82156,7 +85738,6 @@ self: {
        ];
        description = "Preprocessor for embedding diagrams in Haddock documentation";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "diagrams-haddock";
      }) {};
 
@@ -82195,7 +85776,6 @@ self: {
        ];
        description = "HTML5 canvas backend for diagrams drawing EDSL";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "diagrams-input" = callPackage
@@ -82235,8 +85815,8 @@ self: {
        pname = "diagrams-lib";
        version = "1.4.6";
        sha256 = "1a0wl8lspwkby5x45j1wa1xq27bs67x5vwj8jzavym56a3f2pjcb";
-       revision = "1";
-       editedCabalFile = "1ph3rcxlanyahgszsw0zqqx799i9samw7pyrard24rxs0xp3981n";
+       revision = "2";
+       editedCabalFile = "0dxs255ryr1wl3b1ba797290xg0qf22j2n89047ispzsk0n6scjb";
        libraryHaskellDepends = [
          active adjunctions array base bytestring cereal colour containers
          data-default-class diagrams-core diagrams-solve directory
@@ -82277,7 +85857,6 @@ self: {
        ];
        description = "A Pandoc filter to express diagrams inline using the Haskell EDSL _Diagrams_";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "diagrams-pandoc";
      }) {};
 
@@ -82878,7 +86457,6 @@ self: {
        license = lib.licenses.gpl3Only;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "differential";
-       broken = true;
      }) {};
 
   "diffmap" = callPackage
@@ -83007,7 +86585,6 @@ self: {
        description = "Speed up form designing using digestive functors and foundation";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "digestive-functors" = callPackage
@@ -83101,7 +86678,6 @@ self: {
        description = "Heist frontend for the digestive-functors library";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "digestive-functors-hsp" = callPackage
@@ -83234,8 +86810,6 @@ self: {
        testHaskellDepends = [ base fgl hashable massiv QuickCheck ];
        description = "Directed Graphs";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "dihaa" = callPackage
@@ -83425,8 +86999,8 @@ self: {
      }:
      mkDerivation {
        pname = "diohsc";
-       version = "0.1.14.2";
-       sha256 = "08ckfq19xysyr2kah3yccxzld189gwp0g50za7xmxx94glxkwdas";
+       version = "0.1.14.5";
+       sha256 = "1xfn2n2mzxs9r2p7gprqv8r1rmpvafjlc2hww48c87ldlfknw0yq";
        isLibrary = false;
        isExecutable = true;
        executableHaskellDepends = [
@@ -83659,6 +87233,8 @@ self: {
        pname = "directory";
        version = "1.3.7.1";
        sha256 = "1z8frwbr0kdk47x3xasq7ifzcrwl7ryh1aqgf202xv4cakb8a9yw";
+       revision = "1";
+       editedCabalFile = "1ibdacpflpg4drd1vbrk15lzj5aqdhabncy4v5lvs0xkgw9by5kx";
        libraryHaskellDepends = [ base filepath time unix ];
        testHaskellDepends = [ base filepath time unix ];
        description = "Platform-agnostic library for filesystem operations";
@@ -83980,28 +87556,26 @@ self: {
 
   "discord-haskell" = callPackage
     ({ mkDerivation, aeson, async, base, base64-bytestring, bytestring
-     , containers, data-default, emoji, http-api-data, http-client
+     , containers, data-default, emojis, http-api-data, http-client
      , iso8601-time, MonadRandom, mtl, network, req, safe-exceptions
      , scientific, text, time, unliftio, unordered-containers
      , websockets, wuss
      }:
      mkDerivation {
        pname = "discord-haskell";
-       version = "1.15.5";
-       sha256 = "17i4bnpg629lk0azvgh7cj41s3xv572yjf2xb94s6i89fl8vjlcz";
+       version = "1.15.6";
+       sha256 = "02vf4a9pz67s0l5y6il14vqsicifzj88ak8nw2sa758gccyjj6mv";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
          aeson async base base64-bytestring bytestring containers
-         data-default emoji http-api-data http-client iso8601-time
+         data-default emojis http-api-data http-client iso8601-time
          MonadRandom mtl network req safe-exceptions scientific text time
          unliftio unordered-containers websockets wuss
        ];
        executableHaskellDepends = [ base bytestring text unliftio ];
        description = "Write bots for Discord in Haskell";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "discord-haskell-voice" = callPackage
@@ -84080,7 +87654,6 @@ self: {
        license = lib.licenses.mpl20;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "discord-register-exe";
-       broken = true;
      }) {};
 
   "discord-rest" = callPackage
@@ -84379,7 +87952,6 @@ self: {
        libraryHaskellDepends = [ base ghcjs-base-stub stm ];
        description = "Allows storing different resource-releasing actions together";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "dist-upload" = callPackage
@@ -85283,32 +88855,6 @@ self: {
      }) {};
 
   "dl-fedora" = callPackage
-    ({ mkDerivation, base, bytestring, directory, extra, filepath
-     , http-client, http-client-tls, http-directory, http-types
-     , optparse-applicative, regex-posix, simple-cmd, simple-cmd-args
-     , text, time, unix, xdg-userdirs
-     }:
-     mkDerivation {
-       pname = "dl-fedora";
-       version = "0.9.5";
-       sha256 = "105vy7bnwbvp6pv8p1lk96qp1asck5wk3677l56snxyqds5qfx0i";
-       revision = "1";
-       editedCabalFile = "1fwlb1lp4bxxr78rnkgb110xvl1v6c1ndadjn8hd7c9pcj6vr429";
-       isLibrary = false;
-       isExecutable = true;
-       executableHaskellDepends = [
-         base bytestring directory extra filepath http-client
-         http-client-tls http-directory http-types optparse-applicative
-         regex-posix simple-cmd simple-cmd-args text time unix xdg-userdirs
-       ];
-       testHaskellDepends = [ base simple-cmd ];
-       description = "Fedora image download tool";
-       license = lib.licenses.gpl3Only;
-       hydraPlatforms = lib.platforms.none;
-       mainProgram = "dl-fedora";
-     }) {};
-
-  "dl-fedora_0_9_5_1" = callPackage
     ({ mkDerivation, ansi-wl-pprint, base, bytestring, directory, extra
      , filepath, http-client, http-client-tls, http-directory
      , http-types, optparse-applicative, regex-posix, simple-cmd
@@ -86364,8 +89910,8 @@ self: {
      }:
      mkDerivation {
        pname = "doctest-extract";
-       version = "0.1.1";
-       sha256 = "15hizi4m879c2rahxxl78smpr5iqwry05jma58ldsypmwrlyxniz";
+       version = "0.1.1.1";
+       sha256 = "025qaisbdvyc5k5b585h8d5c8xm4qyy6r6740czrnq69g6lkksnz";
        isLibrary = false;
        isExecutable = true;
        executableHaskellDepends = [
@@ -86561,7 +90107,6 @@ self: {
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "doi";
-       broken = true;
      }) {};
 
   "doldol" = callPackage
@@ -86691,7 +90236,6 @@ self: {
        ];
        description = "Codegen helping you define domain models";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "domain-aeson" = callPackage
@@ -86714,7 +90258,6 @@ self: {
        ];
        description = "Integration of domain with aeson";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "domain-auth" = callPackage
@@ -86751,7 +90294,6 @@ self: {
        testHaskellDepends = [ cereal cereal-text domain rerebase ];
        description = "Integration of domain with cereal";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "domain-core" = callPackage
@@ -87098,10 +90640,8 @@ self: {
      }:
      mkDerivation {
        pname = "dotparse";
-       version = "0.0.2";
-       sha256 = "0585iyxp8ykz55cqkf9ny6iwdf7yg4vws9kpyimp288nvw4jj9la";
-       revision = "1";
-       editedCabalFile = "1pvj5sf79bjki1zf3hxspvkmp2bnin8fa50n230j9744s99sb4rj";
+       version = "0.0.3";
+       sha256 = "024g3fkwp5042m8qmmli0y0dsqr9czvqbcjlvf61d6pi92cbm983";
        libraryHaskellDepends = [
          algebraic-graphs base bytestring chart-svg containers flatparse
          numhask-space optics-core process-extras string-interpolate
@@ -87110,7 +90650,6 @@ self: {
        description = "dot language parsing and printing";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "double-conversion" = callPackage
@@ -88038,7 +91577,6 @@ self: {
        description = "DSMC library for rarefied gas dynamics";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "dsmc-tools" = callPackage
@@ -88320,10 +91858,8 @@ self: {
      }:
      mkDerivation {
        pname = "dublincore-xml-conduit";
-       version = "0.1.0.2";
-       sha256 = "17jzyj49j88xwsz54higi81a6v8kvb8i338n5416z1ni475qsynl";
-       revision = "1";
-       editedCabalFile = "1rljgmi4jb6yhigfy394jb64q5f5qx7i1g68pw6zgq9ziz91p321";
+       version = "0.1.0.3";
+       sha256 = "1di6ilk2kxf7fh1lq488j061y4s1bk4dgm4y54ggixg37w5g23a0";
        libraryHaskellDepends = [
          base conduit conduit-combinators safe-exceptions text time timerep
          uri-bytestring xml-conduit xml-types
@@ -88416,8 +91952,6 @@ self: {
        testHaskellDepends = [ base tasty tasty-hunit ];
        description = "A computer “algebra” system that knows nothing about algebra, at the core";
        license = lib.licenses.gpl3Only;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "dump" = callPackage
@@ -89071,7 +92605,6 @@ self: {
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "examples";
-       broken = true;
      }) {};
 
   "dynamic-plot" = callPackage
@@ -89598,6 +93131,58 @@ self: {
        broken = true;
      }) {};
 
+  "ebird-api" = callPackage
+    ({ mkDerivation, aeson, attoparsec, attoparsec-iso8601, base
+     , optics, servant, text, time
+     }:
+     mkDerivation {
+       pname = "ebird-api";
+       version = "0.1.0.0";
+       sha256 = "1b50rdg3d3cam7g4xiklanamrfxhm8dl8kcg4h5nb4yj5f75dsad";
+       libraryHaskellDepends = [
+         aeson attoparsec attoparsec-iso8601 base optics servant text time
+       ];
+       description = "A Haskell description of the eBird API";
+       license = lib.licenses.mit;
+     }) {};
+
+  "ebird-cli" = callPackage
+    ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring
+     , directory, ebird-api, ebird-client, filepath
+     , optparse-applicative, text
+     }:
+     mkDerivation {
+       pname = "ebird-cli";
+       version = "0.1.0.0";
+       sha256 = "0h21yfda4hhs0kx05yfr20qwzdhfm5p2h280x3nr2kgj9wq889wi";
+       isLibrary = true;
+       isExecutable = true;
+       libraryHaskellDepends = [
+         aeson aeson-pretty attoparsec base bytestring directory ebird-api
+         ebird-client filepath optparse-applicative text
+       ];
+       executableHaskellDepends = [ base ];
+       description = "A command-line utility for interacting with the eBird API";
+       license = lib.licenses.mit;
+       mainProgram = "ebird";
+     }) {};
+
+  "ebird-client" = callPackage
+    ({ mkDerivation, base, data-default, ebird-api, http-client-tls
+     , optics, servant, servant-client, text
+     }:
+     mkDerivation {
+       pname = "ebird-client";
+       version = "0.1.0.0";
+       sha256 = "0gvrq86gj3ss74x3vnw9das8m6xzlblhfc25vphgzbywzwcrmvrk";
+       libraryHaskellDepends = [
+         base data-default ebird-api http-client-tls optics servant
+         servant-client text
+       ];
+       description = "Client functions for querying the eBird API";
+       license = lib.licenses.mit;
+     }) {};
+
   "ebml" = callPackage
     ({ mkDerivation, base, binary, bytestring, containers, split, tasty
      , tasty-golden, tasty-hunit, text
@@ -89695,8 +93280,6 @@ self: {
        benchmarkHaskellDepends = [ base bytestring criterion random ];
        description = "Elliptic Curve Cryptography for Haskell";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "eccrypto-ed25519-bindings" = callPackage
@@ -89709,6 +93292,7 @@ self: {
        description = "provides \"ed25519\" API using \"eccrypto\"";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "ecdsa" = callPackage
@@ -89810,7 +93394,6 @@ self: {
          pretty-simple text time unordered-containers vector
        ];
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "hectare";
      }) {};
 
@@ -90366,8 +93949,8 @@ self: {
        pname = "effectful-th";
        version = "1.0.0.1";
        sha256 = "19xbvfsglm4gsji303zj4f1nhhl4gls78cdbl4yalxm8c4m8iqsf";
-       revision = "2";
-       editedCabalFile = "15s8yvxf7sbi1vx5ylnrnxc1b694ndmdac0f5bi8v0cg6sjijkzw";
+       revision = "3";
+       editedCabalFile = "1v0p0rs241xqvqzvcqk3dyx68zyqbdqvfyprc0s4nhxzry8a9ka5";
        libraryHaskellDepends = [
          base containers effectful-core exceptions template-haskell
          th-abstraction
@@ -90500,7 +94083,6 @@ self: {
        description = "Simulation interpreter for FLINT policy descriptions";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "egison" = callPackage
@@ -90957,8 +94539,8 @@ self: {
        pname = "ekg-core";
        version = "0.1.1.7";
        sha256 = "04nv6iwzrb63fs97ixb0amj8p6zhabg3ggbrg4nbkq7xjhmkz0a5";
-       revision = "2";
-       editedCabalFile = "05h0jz42s1d3bjcvzbp3dv5rvil4ar244mdqdvzbf60z848ppygl";
+       revision = "3";
+       editedCabalFile = "1z5rhc6cd1jflax3g5c773vghwavid5va6zxmaxhdcs6lj9pgzdj";
        libraryHaskellDepends = [
          base containers ghc-prim text unordered-containers
        ];
@@ -91074,6 +94656,7 @@ self: {
        description = "Easily expose your EKG metrics to Prometheus";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "ekg-push" = callPackage
@@ -91313,8 +94896,6 @@ self: {
        testToolDepends = [ hspec-discover ];
        description = "Dependently typed elimination functions using singletons";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "eliminators_0_9_3" = callPackage
@@ -91335,7 +94916,6 @@ self: {
        description = "Dependently typed elimination functions using singletons";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "elision" = callPackage
@@ -91708,8 +95288,8 @@ self: {
      }:
      mkDerivation {
        pname = "elm-street";
-       version = "0.2.0.0";
-       sha256 = "1q8gyig2dsqxg2r139z99pnyy57zjzh9rnawxdk3g2wb175vpa2p";
+       version = "0.2.1.1";
+       sha256 = "0gv4ahpd7ds9yjy33pgqd1gixk36scz2r1h256jiynhgdyl81jlp";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -91722,8 +95302,6 @@ self: {
        doHaddock = false;
        description = "Crossing the road between Haskell and Elm";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "elm-syntax" = callPackage
@@ -92049,8 +95627,8 @@ self: {
      }:
      mkDerivation {
        pname = "ema";
-       version = "0.10.0.0";
-       sha256 = "0ayr42l8jwnapr6hkawjv7x9xx2b6dm4bhj2f4qy70jg2w1j6cv9";
+       version = "0.10.2.0";
+       sha256 = "197rdjsxmwxairp09jviy0h51j89n3da291bgfh8wg3xfs618vqh";
        enableSeparateDataOutput = true;
        libraryHaskellDepends = [
          aeson async base constraints-extras data-default dependent-sum
@@ -92224,17 +95802,17 @@ self: {
      }) {};
 
   "email-validate" = callPackage
-    ({ mkDerivation, attoparsec, base, bytestring, doctest, hspec
-     , QuickCheck, template-haskell
+    ({ mkDerivation, attoparsec, base, bytestring, hspec, QuickCheck
+     , template-haskell
      }:
      mkDerivation {
        pname = "email-validate";
-       version = "2.3.2.18";
-       sha256 = "11bi5y5qmri62nl34nl5pv4zs59bjpjknw560yw5ds62gsi2sjcp";
+       version = "2.3.2.19";
+       sha256 = "0q535zm58798jz1avz2mnip5rj742l9rqc7isqmbfb1zkfaaqr68";
        libraryHaskellDepends = [
          attoparsec base bytestring template-haskell
        ];
-       testHaskellDepends = [ base bytestring doctest hspec QuickCheck ];
+       testHaskellDepends = [ base bytestring hspec QuickCheck ];
        description = "Email address validation";
        license = lib.licenses.bsd3;
      }) {};
@@ -92538,8 +96116,8 @@ self: {
     ({ mkDerivation, base, containers, HUnit, text }:
      mkDerivation {
        pname = "emojis";
-       version = "0.1.2";
-       sha256 = "09x2xrppwypi369y7rzf3ln2g7c3g9qfckn2gydxpfzglcp9rziw";
+       version = "0.1.3";
+       sha256 = "1y0sv7hq652xzrqdqdq31v7bcvani7ilj8xqh7cih104s32cczw1";
        libraryHaskellDepends = [ base containers text ];
        testHaskellDepends = [ base HUnit text ];
        description = "Conversion between emoji characters and their names";
@@ -92910,8 +96488,6 @@ self: {
        ];
        description = "Generate an ADT being a subset of another ADT, and the corresponding mappings";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "enum-text" = callPackage
@@ -93214,8 +96790,6 @@ self: {
        ];
        description = "Safe helpers for accessing and modifying environment variables";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "env-guard" = callPackage
@@ -93494,8 +97068,8 @@ self: {
      }:
      mkDerivation {
        pname = "epub-metadata";
-       version = "5.1";
-       sha256 = "0xmlw4wpwlgyyms0lwvnnhs8mdwjrrlww3sxhvyrgmn0jz41zczj";
+       version = "5.2";
+       sha256 = "0gz8qkkphyarwnrccxp0ws87scgx6906ilcx0zs3chw65ai3v9gh";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -94317,8 +97891,8 @@ self: {
      }:
      mkDerivation {
        pname = "esqueleto";
-       version = "3.5.10.0";
-       sha256 = "0nbb6l4q22y8rwcjsrwqri3ndjn4rslpnglj3nkh00rixdm9jhsr";
+       version = "3.5.10.1";
+       sha256 = "09lwrvlxr6isfk1b9qkhsg268grbnjw7lqh3fxjpks84yq7ymc2y";
        libraryHaskellDepends = [
          aeson attoparsec base blaze-html bytestring conduit containers
          monad-logger persistent resourcet tagged template-haskell text time
@@ -94371,6 +97945,31 @@ self: {
        hydraPlatforms = lib.platforms.none;
      }) {};
 
+  "esqueleto-textsearch" = callPackage
+    ({ mkDerivation, base, data-default, esqueleto, hspec, HUnit
+     , monad-control, monad-logger, parsec, persistent
+     , persistent-postgresql, persistent-template, QuickCheck, resourcet
+     , text, transformers
+     }:
+     mkDerivation {
+       pname = "esqueleto-textsearch";
+       version = "1.0.0.3";
+       sha256 = "1jyyc691pydxhd1xp9bc9jdva09ak2280p40q7cmb9j2bj9bnpfk";
+       libraryHaskellDepends = [
+         base data-default esqueleto parsec persistent persistent-postgresql
+         text
+       ];
+       testHaskellDepends = [
+         base esqueleto hspec HUnit monad-control monad-logger persistent
+         persistent-postgresql persistent-template QuickCheck resourcet text
+         transformers
+       ];
+       description = "PostgreSQL full text search for Esqueleto";
+       license = lib.licenses.mit;
+       hydraPlatforms = lib.platforms.none;
+       broken = true;
+     }) {};
+
   "ess" = callPackage
     ({ mkDerivation, base }:
      mkDerivation {
@@ -95057,7 +98656,6 @@ self: {
        license = lib.licenses.bsd3;
        platforms = lib.platforms.linux;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "eve" = callPackage
@@ -95608,6 +99206,43 @@ self: {
        broken = true;
      }) {};
 
+  "eventstore_1_4_3" = callPackage
+    ({ mkDerivation, aeson, array, async, base, bifunctors, bytestring
+     , cereal, clock, containers, crypton-connection, dns
+     , dotnet-timespan, exceptions, fast-logger, file-embed, hashable
+     , hspec, http-client, interpolate, lifted-async, lifted-base
+     , monad-control, monad-logger, mono-traversable, mtl, protobuf
+     , random, safe, safe-exceptions, semigroups, stm, stm-chans
+     , streaming, tasty, tasty-hspec, tasty-hunit, text, time
+     , transformers-base, unordered-containers, uuid, vector
+     }:
+     mkDerivation {
+       pname = "eventstore";
+       version = "1.4.3";
+       sha256 = "12j6csdm0w6j1arhp4h4s8xwg7brsya3l6rjaz4msr89gk8xn342";
+       libraryHaskellDepends = [
+         aeson array base bifunctors bytestring cereal clock containers
+         crypton-connection dns dotnet-timespan exceptions fast-logger
+         hashable http-client interpolate lifted-async lifted-base
+         monad-control monad-logger mono-traversable mtl protobuf random
+         safe safe-exceptions semigroups stm stm-chans streaming text time
+         transformers-base unordered-containers uuid vector
+       ];
+       testHaskellDepends = [
+         aeson async base bytestring cereal containers crypton-connection
+         dotnet-timespan exceptions fast-logger file-embed hashable hspec
+         lifted-async lifted-base monad-control mono-traversable protobuf
+         safe safe-exceptions semigroups stm stm-chans streaming tasty
+         tasty-hspec tasty-hunit text time transformers-base
+         unordered-containers uuid vector
+       ];
+       description = "EventStore TCP Client";
+       license = lib.licenses.bsd3;
+       platforms = lib.platforms.x86_64;
+       hydraPlatforms = lib.platforms.none;
+       broken = true;
+     }) {};
+
   "eventuo11y" = callPackage
     ({ mkDerivation, base, exceptions, general-allocate, monad-control
      , mtl, primitive, time, transformers, transformers-base
@@ -96355,8 +99990,6 @@ self: {
        ];
        description = "Dependent pairs and their instances";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "exinst-aeson" = callPackage
@@ -96376,7 +100009,6 @@ self: {
        ];
        description = "@exinst@ support for @aeson@ package";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "exinst-base" = callPackage
@@ -96397,7 +100029,6 @@ self: {
        ];
        description = "@exinst@ support for @base@ package";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "exinst-bytes" = callPackage
@@ -96418,7 +100049,6 @@ self: {
        ];
        description = "@exinst@ support for @bytes@ package";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "exinst-cereal" = callPackage
@@ -96439,7 +100069,6 @@ self: {
        ];
        description = "@exinst@ support for @cereal@ package";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "exinst-deepseq" = callPackage
@@ -96452,6 +100081,7 @@ self: {
        description = "Derive instances for the `deepseq` library for your existential types";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "exinst-hashable" = callPackage
@@ -96466,6 +100096,7 @@ self: {
        description = "Derive instances for the `hashable` library for your existential types";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "exinst-serialise" = callPackage
@@ -96485,7 +100116,6 @@ self: {
        ];
        description = "Dependent pairs and their instances";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "exist" = callPackage
@@ -96617,8 +100247,6 @@ self: {
        benchmarkHaskellDepends = [ base criterion incipit-base ];
        description = "Customizable Quasiquote Interpolation";
        license = "BSD-2-Clause-Patent";
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "exotic-list-monads" = callPackage
@@ -96844,6 +100472,8 @@ self: {
        pname = "explainable-predicates";
        version = "0.1.2.3";
        sha256 = "1ch86wb7bz9ydvrbdd2arskaj5pdc2x9vby4pbvnwv1r4d8n40la";
+       revision = "1";
+       editedCabalFile = "1qc1ys87q05q4mibqncvidb2v6988qk7fikhz52f40l3sbrydrcp";
        libraryHaskellDepends = [
          array base HUnit mono-traversable QuickCheck regex-tdfa syb
          template-haskell
@@ -97345,7 +100975,6 @@ self: {
        description = "Operational-based extensible effect library";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "extensible-sp" = callPackage
@@ -98046,6 +101675,35 @@ self: {
        broken = true;
      }) {};
 
+  "faktory_1_1_2_5" = callPackage
+    ({ mkDerivation, aeson, aeson-casing, aeson-qq, async, base
+     , bytestring, crypton-connection, cryptonite, errors, hspec
+     , markdown-unlit, megaparsec, memory, mtl, network, random
+     , safe-exceptions, scanner, semigroups, text, time, unix
+     , unordered-containers
+     }:
+     mkDerivation {
+       pname = "faktory";
+       version = "1.1.2.5";
+       sha256 = "0ax5hk98k4v8vnhv6rvbjxhynqkzijb5l7dbaxp15mh6yd2y981f";
+       isLibrary = true;
+       isExecutable = true;
+       libraryHaskellDepends = [
+         aeson aeson-casing base bytestring crypton-connection cryptonite
+         errors megaparsec memory mtl network random safe-exceptions scanner
+         semigroups text time unix unordered-containers
+       ];
+       executableHaskellDepends = [ aeson base safe-exceptions ];
+       testHaskellDepends = [
+         aeson aeson-qq async base hspec markdown-unlit mtl time
+       ];
+       testToolDepends = [ markdown-unlit ];
+       description = "Faktory Worker for Haskell";
+       license = lib.licenses.mit;
+       hydraPlatforms = lib.platforms.none;
+       broken = true;
+     }) {};
+
   "fallible" = callPackage
     ({ mkDerivation, base, transformers }:
      mkDerivation {
@@ -98076,7 +101734,6 @@ self: {
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "falling-turnip";
-       broken = true;
      }) {};
 
   "fallingblocks" = callPackage
@@ -98244,14 +101901,14 @@ self: {
      }) {};
 
   "fast-digits" = callPackage
-    ({ mkDerivation, base, integer-gmp, QuickCheck, smallcheck, tasty
+    ({ mkDerivation, base, ghc-bignum, QuickCheck, smallcheck, tasty
      , tasty-bench, tasty-quickcheck, tasty-smallcheck
      }:
      mkDerivation {
        pname = "fast-digits";
-       version = "0.3.1.0";
-       sha256 = "1q6kq5rrd4ivg4s8yhzqsc3gx4n554nz7285mgfqwxgfx8r4mmki";
-       libraryHaskellDepends = [ base integer-gmp ];
+       version = "0.3.2.0";
+       sha256 = "1kwgqxfsm4y7f8cr4zzbwyd9fk6v10hykgqc271k41zf0h6k0pq8";
+       libraryHaskellDepends = [ base ghc-bignum ];
        testHaskellDepends = [
          base QuickCheck smallcheck tasty tasty-quickcheck tasty-smallcheck
        ];
@@ -98274,8 +101931,6 @@ self: {
        ];
        description = "Solve classical planning problems (STRIPS/SAS+) using Haskell & Fast Downward";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "fast-logger" = callPackage
@@ -98320,6 +101975,18 @@ self: {
        license = lib.licenses.bsd3;
      }) {};
 
+  "fast-myers-diff" = callPackage
+    ({ mkDerivation, base, dlist, hspec, text, vector }:
+     mkDerivation {
+       pname = "fast-myers-diff";
+       version = "0.0.0";
+       sha256 = "0biyv3x889c536dcb9ylglidlpi32v861586yhsjszshmpj38iz3";
+       libraryHaskellDepends = [ base dlist text vector ];
+       testHaskellDepends = [ base hspec text vector ];
+       description = "A fast implementation of the Myers diff algorithm";
+       license = lib.licenses.mit;
+     }) {};
+
   "fast-nats" = callPackage
     ({ mkDerivation, base }:
      mkDerivation {
@@ -98448,7 +102115,6 @@ self: {
        librarySystemDepends = [ fcgi ];
        description = "A Haskell library for writing FastCGI programs";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {inherit (pkgs) fcgi;};
 
   "fastedit" = callPackage
@@ -98566,8 +102232,6 @@ self: {
        benchmarkHaskellDepends = [ base bytestring ];
        description = "A fast, but bare bones, bytestring parser combinators library";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "fastpbkdf2" = callPackage
@@ -99110,6 +102774,7 @@ self: {
        description = "Server-Side Integration for FCKeditor";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "fclabels" = callPackage
@@ -99440,8 +103105,8 @@ self: {
        pname = "feed";
        version = "1.3.2.1";
        sha256 = "0marh7qmggq1z5339nid3gil7k786d3yk79b0rwfkxxaxmr41xd8";
-       revision = "1";
-       editedCabalFile = "032578cqdl7c7ibmbn92z6b72r8yvnwlhxwnr709pzdjc9qd4ghr";
+       revision = "2";
+       editedCabalFile = "16k73p6csq9spbiwxwkfwzms71if9fyjj4g4zpvpz8psj0n7wcdj";
        enableSeparateDataOutput = true;
        libraryHaskellDepends = [
          base base-compat bytestring old-locale old-time safe text time
@@ -99697,7 +103362,6 @@ self: {
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "imageutils";
-       broken = true;
      }) {};
 
   "fei-dataiter" = callPackage
@@ -99869,7 +103533,6 @@ self: {
        description = "A functional embedded language for DSP and parallelism";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "feldspar-signal" = callPackage
@@ -100066,8 +103729,8 @@ self: {
      }:
      mkDerivation {
        pname = "fficxx";
-       version = "0.7.0.0";
-       sha256 = "11ppih6vxvw9a5wmb7cni1jyprzbas1xy6i2zzqqxas3ik9i9sin";
+       version = "0.7.0.1";
+       sha256 = "0n95vdab8hz0g3y6sh6fvs2pngjb6iwjn3nfc5s1m4vj6256578b";
        libraryHaskellDepends = [
          aeson aeson-pretty array base bytestring Cabal containers
          data-default directory dotgen errors fficxx-runtime filepath
@@ -100080,14 +103743,12 @@ self: {
      }) {};
 
   "fficxx-runtime" = callPackage
-    ({ mkDerivation, base, bytestring, hashable, template-haskell }:
+    ({ mkDerivation, base, bytestring, template-haskell }:
      mkDerivation {
        pname = "fficxx-runtime";
-       version = "0.7.0.0";
-       sha256 = "1igchjkbmdl3skqnf5aqa4zv1bz5kk1wvgrxwvhq2xdshyflvzkk";
-       libraryHaskellDepends = [
-         base bytestring hashable template-haskell
-       ];
+       version = "0.7.0.1";
+       sha256 = "1idqfcg2qazzr477fmjbsga7pac98sx5lia1qxsnbdb15hblwjmy";
+       libraryHaskellDepends = [ base bytestring template-haskell ];
        description = "Runtime for fficxx-generated library";
        license = lib.licenses.bsd2;
      }) {};
@@ -100633,8 +104294,8 @@ self: {
     ({ mkDerivation, async, base, process, unix }:
      mkDerivation {
        pname = "filelock";
-       version = "0.1.1.6";
-       sha256 = "122v6nv13rgi7nprdcpz8zc534i85yz6lshx0jx5mfqjam4zcx5g";
+       version = "0.1.1.7";
+       sha256 = "1041fjqk4i97qxiymm4vlcl27vqajxd8hf12sal7l2sgvxf68dad";
        libraryHaskellDepends = [ base unix ];
        testHaskellDepends = [ async base process ];
        description = "Portable interface to file locking (flock / LockFileEx)";
@@ -101678,6 +105339,31 @@ self: {
        mainProgram = "fix-whitespace";
      }) {};
 
+  "fix-whitespace_0_1" = callPackage
+    ({ mkDerivation, base, bytestring, directory, extra, filepath
+     , filepattern, QuickCheck, tasty, tasty-golden, tasty-quickcheck
+     , text, transformers, yaml
+     }:
+     mkDerivation {
+       pname = "fix-whitespace";
+       version = "0.1";
+       sha256 = "0ml8ggis3a4hdgl069864bxqqm74bs9yzbyb7imp02g2zywqsr1g";
+       isLibrary = true;
+       isExecutable = true;
+       libraryHaskellDepends = [ base text transformers ];
+       executableHaskellDepends = [
+         base directory extra filepath filepattern text yaml
+       ];
+       testHaskellDepends = [
+         base bytestring filepath QuickCheck tasty tasty-golden
+         tasty-quickcheck text
+       ];
+       description = "Fixes whitespace issues";
+       license = lib.licenses.mit;
+       hydraPlatforms = lib.platforms.none;
+       mainProgram = "fix-whitespace";
+     }) {};
+
   "fixed" = callPackage
     ({ mkDerivation, base }:
      mkDerivation {
@@ -102414,6 +106100,32 @@ self: {
        maintainers = [ lib.maintainers.raehik ];
      }) {};
 
+  "flatparse_0_5_0_1" = callPackage
+    ({ mkDerivation, attoparsec, base, bytestring, containers, gauge
+     , hspec, HUnit, integer-gmp, megaparsec, parsec, primitive
+     , QuickCheck, quickcheck-instances, template-haskell, utf8-string
+     }:
+     mkDerivation {
+       pname = "flatparse";
+       version = "0.5.0.1";
+       sha256 = "08km6zw6p3xhqcbmfgksc6rgws08zj828cnn21zqq3kriq47amvc";
+       libraryHaskellDepends = [
+         base bytestring containers integer-gmp template-haskell utf8-string
+       ];
+       testHaskellDepends = [
+         base bytestring hspec HUnit QuickCheck quickcheck-instances
+         utf8-string
+       ];
+       benchmarkHaskellDepends = [
+         attoparsec base bytestring gauge integer-gmp megaparsec parsec
+         primitive utf8-string
+       ];
+       description = "High-performance parsing from strict bytestrings";
+       license = lib.licenses.mit;
+       hydraPlatforms = lib.platforms.none;
+       maintainers = [ lib.maintainers.raehik ];
+     }) {};
+
   "flay" = callPackage
     ({ mkDerivation, base, constraints, tasty, tasty-quickcheck
      , transformers
@@ -102603,7 +106315,6 @@ self: {
        description = "Flink stateful functions SDK";
        license = lib.licenses.mpl20;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "flip-cmd" = callPackage
@@ -102757,8 +106468,8 @@ self: {
      }:
      mkDerivation {
        pname = "floskell";
-       version = "0.10.7";
-       sha256 = "0v52x4h52ack88f98n9yrnybmlmp2fqpsvsn9lbjq2krl2p1n2az";
+       version = "0.10.8";
+       sha256 = "1mj4c3q9jw161jzzlz7aa9lw58g6a8j9cnk3974n3bbwxbzqrfdq";
        isLibrary = true;
        isExecutable = true;
        enableSeparateDataOutput = true;
@@ -103417,7 +107128,6 @@ self: {
        description = "Extras for Fn, a functional web framework";
        license = lib.licenses.isc;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "focus" = callPackage
@@ -103531,8 +107241,8 @@ self: {
        pname = "foldable1-classes-compat";
        version = "0.1";
        sha256 = "04pzjppmb195ffgxdzh8dh39z5dalr5wd6sifcnbg9p1b3rw6myh";
-       revision = "2";
-       editedCabalFile = "05sdpi0c503xgrgg2cg4922r5ja5154lfwzi9mgcmxncsk02a4l5";
+       revision = "3";
+       editedCabalFile = "0ggamxlpw70njjb7rc8xxb432ra7drmjnfgazb5zqbb1a32bjjfh";
        libraryHaskellDepends = [
          base containers ghc-prim tagged transformers
        ];
@@ -104191,7 +107901,6 @@ self: {
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "formal";
-       broken = true;
      }) {};
 
   "format" = callPackage
@@ -104313,7 +108022,6 @@ self: {
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "forml";
-       broken = true;
      }) {};
 
   "formlets" = callPackage
@@ -104509,9 +108217,7 @@ self: {
        testToolDepends = [ hspec-discover ];
        description = "Common functions and utils for fortran-src";
        license = lib.licenses.asl20;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "fortran-src-extras";
-       broken = true;
      }) {};
 
   "fortran-vars" = callPackage
@@ -104542,6 +108248,7 @@ self: {
        license = lib.licenses.asl20;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "fortran-vars";
+       broken = true;
      }) {};
 
   "fortytwo" = callPackage
@@ -104809,6 +108516,8 @@ self: {
        pname = "fourmolu";
        version = "0.13.1.0";
        sha256 = "05vkqygrmgfgmsd8a4vxq8mq0c1z9cb3hja28aszd6llfv427dm1";
+       revision = "1";
+       editedCabalFile = "0jqgixycw8cv0q7amx5fs4ml9knql70ghg31br3hjkcy0vb2hi5v";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -104847,8 +108556,6 @@ self: {
        benchmarkHaskellDepends = [ base tasty-bench ];
        description = "IEEE 754-2019 compliant operations";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "fpco-api" = callPackage
@@ -104905,8 +108612,6 @@ self: {
        ];
        description = "Format-preserving encryption";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "fpipe" = callPackage
@@ -105226,8 +108931,8 @@ self: {
      }:
      mkDerivation {
        pname = "freckle-app";
-       version = "1.9.1.1";
-       sha256 = "1nzij1lbcclyfq8g9lv21yn6m3d3d0gws27gl7yjvc0il6fljg0a";
+       version = "1.9.2.1";
+       sha256 = "1rpdfl09v88g5lliilhd5y6rkbq30dz3b899r5yj4cmqi16kbjb5";
        libraryHaskellDepends = [
          aeson aws-xray-client-persistent aws-xray-client-wai base Blammo
          bugsnag bytestring case-insensitive cassava conduit conduit-extra
@@ -105304,8 +109009,8 @@ self: {
        pname = "free";
        version = "5.2";
        sha256 = "12agp68cwwixcwfwnvk2xamg34a2x6ax7s1naxv66chpi5y7z1kj";
-       revision = "1";
-       editedCabalFile = "0gpz9jlvdnds3988naqxn1dn1hr4zk3md1dhkky4hv0a2b69z7nh";
+       revision = "2";
+       editedCabalFile = "0gpw6n6pzy12ycwhi47cdzf90lxn94ajkqrvc12yvypzh2k5yaqk";
        libraryHaskellDepends = [
          base comonad containers distributive exceptions indexed-traversable
          mtl profunctors semigroupoids template-haskell th-abstraction
@@ -105492,8 +109197,6 @@ self: {
        ];
        description = "Automatic generation of free theorems";
        license = lib.licenses.publicDomain;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "free-theorems-counterexamples" = callPackage
@@ -105514,6 +109217,7 @@ self: {
        license = lib.licenses.publicDomain;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "counterexamples.cgi";
+       broken = true;
      }) {};
 
   "free-theorems-seq" = callPackage
@@ -105532,6 +109236,7 @@ self: {
        description = "Taming Selective Strictness";
        license = lib.licenses.publicDomain;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "free-theorems-seq-webui" = callPackage
@@ -105572,6 +109277,7 @@ self: {
        description = "CGI-based web interface for the free-theorems package";
        license = lib.licenses.publicDomain;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "free-v-bucks-generator-no-survey" = callPackage
@@ -105815,7 +109521,6 @@ self: {
        description = "Checked runtime exceptions with freer-simple";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "freer-simple-http" = callPackage
@@ -105837,7 +109542,6 @@ self: {
        description = "Make HTTP requests with freer-simple!";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "freer-simple-profiling" = callPackage
@@ -105851,7 +109555,6 @@ self: {
        description = "Automatic profling of freer-simple programs";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "freer-simple-random" = callPackage
@@ -105865,7 +109568,6 @@ self: {
        description = "Random number generators using freer-simple";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "freer-simple-time" = callPackage
@@ -105879,7 +109581,6 @@ self: {
        description = "freer-simple interface to IO based time functions";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "freesect" = callPackage
@@ -106101,7 +109802,6 @@ self: {
        description = "Uses the DevIL C library to read and write images from and to files and memory buffers";
        license = lib.licenses.lgpl3Only;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {inherit (pkgs) libdevil;};
 
   "friday-juicypixels" = callPackage
@@ -106135,7 +109835,6 @@ self: {
        description = "Scale Friday images with DCT";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "friendly" = callPackage
@@ -106185,6 +109884,21 @@ self: {
        license = lib.licenses.bsd3;
      }) {};
 
+  "from-env" = callPackage
+    ({ mkDerivation, base, casing, hspec, hspec-discover, text }:
+     mkDerivation {
+       pname = "from-env";
+       version = "0.1.2.0";
+       sha256 = "0xpqzk9vc9nsqimjh35w6xjhgkxxj2arzyj038nxv199045ffn1q";
+       libraryHaskellDepends = [ base casing text ];
+       testHaskellDepends = [ base hspec ];
+       testToolDepends = [ hspec-discover ];
+       description = "Provides a generic way to construct values from environment variables";
+       license = lib.licenses.mit;
+       hydraPlatforms = lib.platforms.none;
+       broken = true;
+     }) {};
+
   "from-sum" = callPackage
     ({ mkDerivation, base, doctest, Glob, transformers }:
      mkDerivation {
@@ -106945,7 +110659,6 @@ self: {
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "lambda-cbv";
-       broken = true;
      }) {};
 
   "funcons-simple" = callPackage
@@ -107055,7 +110768,6 @@ self: {
        description = "Combinators that allow for a more functional/monadic style of Arrow programming";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "functional-kmp" = callPackage
@@ -107133,8 +110845,6 @@ self: {
        ];
        description = "Tools for functor combinator-based program design";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "functor-combo" = callPackage
@@ -107980,6 +111690,8 @@ self: {
        testHaskellDepends = [ async base hspec ];
        description = "Fast Mutable Vars";
        license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "fwgl" = callPackage
@@ -108053,7 +111765,6 @@ self: {
        description = "Interface to the FXPak/FXPak Pro USB interface";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "g-npm" = callPackage
@@ -108221,7 +111932,6 @@ self: {
        description = "Galois field library";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "gambler" = callPackage
@@ -108345,7 +112055,6 @@ self: {
        description = "Gamma function and related functions";
        license = lib.licenses.publicDomain;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "gang-of-threads" = callPackage
@@ -108462,7 +112171,6 @@ self: {
        description = "Manage PostgreSQL servers with gargoyle and nix";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "garlic-bread" = callPackage
@@ -108912,7 +112620,6 @@ self: {
        description = "Haskell bindings to GEGL library";
        license = lib.licenses.lgpl3Only;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {inherit (pkgs) gegl;};
 
   "gelatin" = callPackage
@@ -109082,7 +112789,6 @@ self: {
        ];
        description = "A simple Happstack-style Gemini router";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "gemini-server" = callPackage
@@ -109101,8 +112807,6 @@ self: {
        ];
        description = "A lightweight server for the Gemini protocol";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "gemini-textboard" = callPackage
@@ -109202,7 +112906,6 @@ self: {
        description = "A testing framework inspired by QuickCheck and SmallCheck";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "gender" = callPackage
@@ -109454,8 +113157,8 @@ self: {
     ({ mkDerivation, base, text }:
      mkDerivation {
        pname = "generic-data-functions";
-       version = "0.1.1";
-       sha256 = "15qnz56p58vximfd1r1pd2hq5y2npkklinr3mb6r00jp19s9hxmb";
+       version = "0.2.0";
+       sha256 = "1vpjj61lw0bqngxvsqlljq71b773krwiw80vdff0fy94y1d2arj8";
        libraryHaskellDepends = [ base text ];
        description = "Familiar functions lifted to generic data types";
        license = lib.licenses.mit;
@@ -109497,8 +113200,8 @@ self: {
      }:
      mkDerivation {
        pname = "generic-deriving";
-       version = "1.14.4";
-       sha256 = "0p0rv3z6icjw7f05arq6aqs6bx249544l0h2hvzwxm0yr6r8farp";
+       version = "1.14.5";
+       sha256 = "0jcl6cdf3pdg57yhf90rhdscszna0znvwhlffdcq3bnzkc2797za";
        libraryHaskellDepends = [
          base containers ghc-prim template-haskell th-abstraction
        ];
@@ -109930,7 +113633,6 @@ self: {
        description = "Marshalling Haskell values to/from XML";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "generic-xmlpickler" = callPackage
@@ -110229,8 +113931,6 @@ self: {
        libraryHaskellDepends = [ base mtl template-haskell ];
        description = "Use Template Haskell to generate Uniplate-like functions";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "geniserver" = callPackage
@@ -111036,6 +114736,7 @@ self: {
        description = "High precision conversion between GPS and UK Grid";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "geocalc" = callPackage
@@ -111403,6 +115104,7 @@ self: {
        license = "unknown";
        hydraPlatforms = lib.platforms.none;
        mainProgram = "gf";
+       broken = true;
      }) {};
 
   "ggtsTC" = callPackage
@@ -111544,11 +115246,11 @@ self: {
        pname = "ghc-bignum-orphans";
        version = "0.1.1";
        sha256 = "1ns129cx6b2di2w66r38cwiirqcpkvwk6xn64hzbm202p73igim4";
+       revision = "1";
+       editedCabalFile = "0d7zmxnwv8ql6isp5hwwqkb5xxa2nla9fb9rn2zby9dxhb4hlkwy";
        libraryHaskellDepends = [ base ghc-bignum ];
        description = "Backwards-compatible orphan instances for ghc-bignum";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "ghc-boot_9_6_1" = callPackage
@@ -112289,7 +115991,7 @@ self: {
        hydraPlatforms = lib.platforms.none;
      }) {};
 
-  "ghc-lib_9_2_7_20230228" = callPackage
+  "ghc-lib_9_2_8_20230729" = callPackage
     ({ mkDerivation, alex, array, base, binary, bytestring, containers
      , deepseq, directory, exceptions, filepath, ghc-lib-parser
      , ghc-prim, happy, hpc, parsec, pretty, process, rts, time
@@ -112297,8 +115999,8 @@ self: {
      }:
      mkDerivation {
        pname = "ghc-lib";
-       version = "9.2.7.20230228";
-       sha256 = "0z9bgkrvr7v12444cq4mkms5f0p5g3jpm2ni1ra0iqcw014r3w78";
+       version = "9.2.8.20230729";
+       sha256 = "0jxfbzz7w28jcfpd6x5480ml7zp7pza20mr2zqdvzjdidnxqvlml";
        enableSeparateDataOutput = true;
        libraryHaskellDepends = [
          array base binary bytestring containers deepseq directory
@@ -112319,8 +116021,8 @@ self: {
      }:
      mkDerivation {
        pname = "ghc-lib";
-       version = "9.4.5.20230430";
-       sha256 = "1f0jhzz51zwxprvswk9nfs4xd4i3zvh8pd4qd586gjq5j3virpf2";
+       version = "9.4.6.20230808";
+       sha256 = "1dyz7cby2ap4nii1g32f31hcqlxri880h33vr30sixms5zzy400j";
        enableSeparateDataOutput = true;
        libraryHaskellDepends = [
          array base binary bytestring containers deepseq directory
@@ -112374,15 +116076,15 @@ self: {
        hydraPlatforms = lib.platforms.none;
      }) {};
 
-  "ghc-lib-parser_9_2_7_20230228" = callPackage
+  "ghc-lib-parser_9_2_8_20230729" = callPackage
     ({ mkDerivation, alex, array, base, binary, bytestring, containers
      , deepseq, directory, exceptions, filepath, ghc-prim, happy, parsec
      , pretty, process, time, transformers, unix
      }:
      mkDerivation {
        pname = "ghc-lib-parser";
-       version = "9.2.7.20230228";
-       sha256 = "1bny37dny7jv37mpynp3zwdlp8993xikc1c4p6h5f2zwjb7nx2ny";
+       version = "9.2.8.20230729";
+       sha256 = "0lk6s6ka0yhqph6wlijlyzgj47r5j7cw6mnn02vgvqdvlmrkwkkl";
        enableSeparateDataOutput = true;
        libraryHaskellDepends = [
          array base binary bytestring containers deepseq directory
@@ -112402,8 +116104,8 @@ self: {
      }:
      mkDerivation {
        pname = "ghc-lib-parser";
-       version = "9.4.5.20230430";
-       sha256 = "1f4d2mkk04an6i3xr5gi6qb1v5qg1lmwd5sfhl2by3pmy6vl8baw";
+       version = "9.4.6.20230808";
+       sha256 = "1s3lmmaj9aw1ykccqf7rdfnmsgbcilxavwgqm9xkhpfnzri06mqq";
        enableSeparateDataOutput = true;
        libraryHaskellDepends = [
          array base binary bytestring containers deepseq directory
@@ -112495,14 +116197,14 @@ self: {
        license = lib.licenses.bsd3;
      }) {};
 
-  "ghc-lib-parser-ex_9_6_0_0" = callPackage
+  "ghc-lib-parser-ex_9_6_0_1" = callPackage
     ({ mkDerivation, base, bytestring, containers, directory, extra
      , filepath, ghc-lib-parser, tasty, tasty-hunit, uniplate
      }:
      mkDerivation {
        pname = "ghc-lib-parser-ex";
-       version = "9.6.0.0";
-       sha256 = "0k84r37xfj9xhx2rl4kxx9imlnwpmxvnf3kadh8ysz3pl4hknnl5";
+       version = "9.6.0.1";
+       sha256 = "0a9dmn5qhy0h1zxkq03mv6w9a2g1a1difxwvg55ix8ig1r6mbr0g";
        libraryHaskellDepends = [
          base bytestring containers ghc-lib-parser uniplate
        ];
@@ -112752,7 +116454,6 @@ self: {
        description = "Type checker plugins without the type checking";
        license = lib.licenses.mpl20;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "ghc-prim_0_10_0" = callPackage
@@ -113103,8 +116804,6 @@ self: {
        ];
        description = "CTags and ETags from Haskell syntax tree";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "ghc-tags-pipes" = callPackage
@@ -113121,7 +116820,6 @@ self: {
        ];
        description = "Streaming interface for ghc-tags-core";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "ghc-tags-plugin" = callPackage
@@ -113131,10 +116829,8 @@ self: {
      }:
      mkDerivation {
        pname = "ghc-tags-plugin";
-       version = "0.6.0.0";
-       sha256 = "0ir9cbvcc6gmhc6a8sn29qagw08xvsxy7qqab00hjyq2nca8xd4i";
-       revision = "2";
-       editedCabalFile = "18ic4sc88sgl915v53kzzmib38b4wd3z68ra5flcnrbbk6hgd9hq";
+       version = "0.6.0.1";
+       sha256 = "0wzk3slkla62n3yywckdcfyl3lizfh9psxxp0vai0699c6396cwq";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -113145,6 +116841,7 @@ self: {
        description = "A compiler plugin which generates tags file from GHC parsed syntax tree";
        license = lib.licenses.mpl20;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "ghc-tcplugin-api" = callPackage
@@ -113344,8 +117041,6 @@ self: {
        libraryHaskellDepends = [ base directory ghc time ];
        description = "Dump the ghc flags during compilation";
        license = lib.licenses.bsd2;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "ghci_8_10_2" = callPackage
@@ -113559,16 +117254,16 @@ self: {
      , monoid-subclasses, mtl, network-uri, opentelemetry
      , optparse-applicative, parallel, prettyprinter
      , prettyprinter-ansi-terminal, QuickCheck, random, regex-tdfa
-     , safe-exceptions, shake, sorted-list, sqlite-simple, stm
-     , stm-containers, syb, tasty, tasty-expected-failure, tasty-hunit
-     , tasty-quickcheck, tasty-rerun, text, text-rope, time
+     , row-types, safe-exceptions, shake, sorted-list, sqlite-simple
+     , stm, stm-containers, syb, tasty, tasty-expected-failure
+     , tasty-hunit, tasty-quickcheck, tasty-rerun, text, text-rope, time
      , transformers, unix, unliftio, unliftio-core, unordered-containers
      , vector
      }:
      mkDerivation {
        pname = "ghcide";
-       version = "2.0.0.1";
-       sha256 = "1yjsrnwriga1zfwygbr1301prijmi9wavniwlincdmf622aglzwj";
+       version = "2.1.0.0";
+       sha256 = "1886k12lad3gm5848380q6s08hb0fmfhhbsr0azi3n2vcycc1mcy";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -113581,9 +117276,9 @@ self: {
          hls-plugin-api implicit-hie implicit-hie-cradle lens list-t lsp
          lsp-types mtl opentelemetry optparse-applicative parallel
          prettyprinter prettyprinter-ansi-terminal random regex-tdfa
-         safe-exceptions sorted-list sqlite-simple stm stm-containers syb
-         text text-rope time transformers unix unliftio unliftio-core
-         unordered-containers vector
+         row-types safe-exceptions sorted-list sqlite-simple stm
+         stm-containers syb text text-rope time transformers unix unliftio
+         unliftio-core unordered-containers vector
        ];
        executableHaskellDepends = [
          base data-default extra gitrev hls-plugin-api lsp lsp-types
@@ -113592,10 +117287,10 @@ self: {
        testHaskellDepends = [
          aeson async base containers data-default directory extra filepath
          fuzzy ghc hls-plugin-api lens list-t lsp lsp-test lsp-types
-         monoid-subclasses network-uri QuickCheck random regex-tdfa shake
-         sqlite-simple stm stm-containers tasty tasty-expected-failure
-         tasty-hunit tasty-quickcheck tasty-rerun text text-rope
-         unordered-containers
+         monoid-subclasses mtl network-uri QuickCheck random regex-tdfa
+         row-types shake sqlite-simple stm stm-containers tasty
+         tasty-expected-failure tasty-hunit tasty-quickcheck tasty-rerun
+         text text-rope unordered-containers
        ];
        testToolDepends = [ implicit-hie ];
        description = "The core of an IDE";
@@ -113607,20 +117302,20 @@ self: {
      , data-default, deepseq, directory, extra, filepath, ghcide
      , ghcide-test-utils, hashable, hls-graph, hls-plugin-api
      , implicit-hie, lens, lsp-test, lsp-types, optparse-applicative
-     , parser-combinators, process, safe-exceptions, shake, tasty
-     , tasty-hunit, tasty-rerun, text
+     , parser-combinators, process, row-types, safe-exceptions, shake
+     , tasty, tasty-hunit, tasty-rerun, text
      }:
      mkDerivation {
        pname = "ghcide-bench";
-       version = "2.0.0.1";
-       sha256 = "10si4phkbds83x8br6cnq0ysp832yshf7k4p4p9a8fi9cmb3lczl";
+       version = "2.1.0.0";
+       sha256 = "1ka6yfjrdam9jlgmkmirpbqr4yjhm372l7qlfby11cvjcq13bbh0";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
          aeson async base binary bytestring deepseq directory extra filepath
          ghcide ghcide-test-utils hashable lens lsp-test lsp-types
-         optparse-applicative parser-combinators process safe-exceptions
-         shake text
+         optparse-applicative parser-combinators process row-types
+         safe-exceptions shake text
        ];
        executableHaskellDepends = [
          aeson base bytestring containers data-default directory extra
@@ -113633,6 +117328,7 @@ self: {
        testToolDepends = [ ghcide implicit-hie ];
        description = "An LSP client for running performance experiments on HLS";
        license = lib.licenses.asl20;
+       hydraPlatforms = lib.platforms.none;
        mainProgram = "ghcide-bench";
      }) {};
 
@@ -113651,6 +117347,8 @@ self: {
        ];
        description = "Test utils for ghcide";
        license = lib.licenses.asl20;
+       hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "ghcjs-ajax" = callPackage
@@ -113690,8 +117388,6 @@ self: {
        ];
        description = "Allow GHCJS projects to compile under GHC and develop using intero";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "ghcjs-codemirror" = callPackage
@@ -113798,7 +117494,6 @@ self: {
        ];
        description = "GHCJS bindings for the JavaScript Fetch API";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "ghcjs-hplay" = callPackage
@@ -114067,8 +117762,6 @@ self: {
        description = "Adwaita bindings";
        license = lib.licenses.lgpl21Only;
        badPlatforms = lib.platforms.darwin;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {inherit (pkgs) libadwaita;};
 
   "gi-atk" = callPackage
@@ -114184,6 +117877,7 @@ self: {
        description = "clutter GObject bindings";
        license = lib.licenses.lgpl21Only;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {inherit (pkgs) clutter;};
 
   "gi-cogl" = callPackage
@@ -114203,8 +117897,6 @@ self: {
        libraryPkgconfigDepends = [ cogl ];
        description = "COGL GObject bindings";
        license = lib.licenses.lgpl21Only;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {inherit (pkgs) cogl;};
 
   "gi-coglpango" = callPackage
@@ -114229,6 +117921,7 @@ self: {
        description = "Cogl Pango GObject bindings";
        license = lib.licenses.lgpl21Only;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {cogl-pango = null;};
 
   "gi-dbusmenu" = callPackage
@@ -114876,8 +118569,7 @@ self: {
        libraryPkgconfigDepends = [ gtk-layer-shell ];
        description = "gtk-layer-shell bindings";
        license = lib.licenses.lgpl21Only;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
+       badPlatforms = lib.platforms.darwin;
      }) {inherit (pkgs) gtk-layer-shell;};
 
   "gi-gtkosxapplication" = callPackage
@@ -114976,8 +118668,6 @@ self: {
        libraryPkgconfigDepends = [ libhandy ];
        description = "libhandy bindings";
        license = lib.licenses.lgpl21Only;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {inherit (pkgs) libhandy;};
 
   "gi-harfbuzz" = callPackage
@@ -115536,8 +119226,8 @@ self: {
      }:
      mkDerivation {
        pname = "ginger";
-       version = "0.10.4.0";
-       sha256 = "1bl2cmr8sp9vnsvqq5wa0c56yljrhj3s09k2j5gyhp5xsskxa0gp";
+       version = "0.10.5.2";
+       sha256 = "0nwcppbfxj3nvq3hm9gj8gh076399zkksj2k39nb9zdm8dws79sf";
        isLibrary = true;
        isExecutable = true;
        enableSeparateDataOutput = true;
@@ -115547,8 +119237,8 @@ self: {
          transformers unordered-containers utf8-string vector
        ];
        executableHaskellDepends = [
-         aeson base bytestring data-default optparse-applicative process
-         text transformers unordered-containers utf8-string yaml
+         aeson base bytestring data-default mtl optparse-applicative process
+         text time transformers unordered-containers utf8-string yaml
        ];
        testHaskellDepends = [
          aeson base bytestring data-default mtl tasty tasty-hunit
@@ -115750,19 +119440,19 @@ self: {
     ({ mkDerivation, aeson, ansi-terminal, async, attoparsec, aws, base
      , blaze-builder, bloomfilter, bup, byteable, bytestring, Cabal
      , case-insensitive, clientsession, concurrent-output, conduit
-     , connection, containers, crypto-api, cryptonite, curl
-     , data-default, DAV, dbus, deepseq, directory, disk-free-space
-     , dlist, edit-distance, exceptions, fdo-notify, feed, filepath
-     , filepath-bytestring, free, git, git-lfs, gnupg, hinotify
-     , http-client, http-client-restricted, http-client-tls
-     , http-conduit, http-types, IfElse, lsof, magic, memory, microlens
-     , monad-control, monad-logger, mountpoints, mtl, network
-     , network-bsd, network-info, network-multicast, network-uri
-     , old-locale, openssh, optparse-applicative, path-pieces, perl
-     , persistent, persistent-sqlite, persistent-template, process
-     , QuickCheck, random, regex-tdfa, resourcet, rsync, SafeSemaphore
-     , sandi, securemem, shakespeare, socks, split, stm, stm-chans
-     , tagsoup, tasty, tasty-hunit, tasty-quickcheck, tasty-rerun
+     , containers, crypto-api, cryptonite, curl, data-default, DAV, dbus
+     , deepseq, directory, disk-free-space, dlist, edit-distance
+     , exceptions, fdo-notify, feed, filepath, filepath-bytestring, free
+     , git, git-lfs, gnupg, hinotify, http-client
+     , http-client-restricted, http-client-tls, http-conduit, http-types
+     , IfElse, lsof, magic, memory, microlens, monad-control
+     , monad-logger, mountpoints, mtl, network, network-bsd
+     , network-info, network-multicast, network-uri, old-locale, openssh
+     , optparse-applicative, path-pieces, perl, persistent
+     , persistent-sqlite, persistent-template, process, QuickCheck
+     , random, regex-tdfa, resourcet, rsync, SafeSemaphore, sandi
+     , securemem, shakespeare, socks, split, stm, stm-chans, tagsoup
+     , tasty, tasty-hunit, tasty-quickcheck, tasty-rerun
      , template-haskell, text, time, torrent, transformers, unix
      , unix-compat, unliftio-core, unordered-containers, utf8-string
      , uuid, vector, wai, wai-extra, warp, warp-tls, wget, which, yesod
@@ -115770,8 +119460,8 @@ self: {
      }:
      mkDerivation {
        pname = "git-annex";
-       version = "10.20230626";
-       sha256 = "1z16alb5193y4m70rq0bcxx1rn6lnlgswigdnv5lqybjq1fw1z99";
+       version = "10.20230802";
+       sha256 = "05vjc3wg7yxh37pwffc9afjrbmza3yjc8yzy4kcid5fbkpnrrs67";
        configureFlags = [
          "-fassistant" "-f-benchmark" "-fdbus" "-f-debuglocks" "-fmagicmime"
          "-fnetworkbsd" "-fpairing" "-fproduction" "-fs3" "-ftorrentparser"
@@ -115780,16 +119470,15 @@ self: {
        isLibrary = false;
        isExecutable = true;
        setupHaskellDepends = [
-         async base bytestring Cabal data-default directory exceptions
-         filepath filepath-bytestring IfElse process split time transformers
-         unix-compat utf8-string
+         async base bytestring Cabal directory exceptions filepath
+         filepath-bytestring process split time utf8-string
        ];
        executableHaskellDepends = [
          aeson ansi-terminal async attoparsec aws base blaze-builder
          bloomfilter byteable bytestring case-insensitive clientsession
-         concurrent-output conduit connection containers crypto-api
-         cryptonite data-default DAV dbus deepseq directory disk-free-space
-         dlist edit-distance exceptions fdo-notify feed filepath
+         concurrent-output conduit containers crypto-api cryptonite
+         data-default DAV dbus deepseq directory disk-free-space dlist
+         edit-distance exceptions fdo-notify feed filepath
          filepath-bytestring free git-lfs hinotify http-client
          http-client-restricted http-client-tls http-conduit http-types
          IfElse magic memory microlens monad-control monad-logger
@@ -116054,17 +119743,18 @@ self: {
 
   "git-mediate" = callPackage
     ({ mkDerivation, ansi-terminal, base, base-compat, Diff, directory
-     , filepath, mtl, optparse-applicative, process, unix-compat
+     , filepath, generic-data, mtl, optparse-applicative, process
+     , unix-compat
      }:
      mkDerivation {
        pname = "git-mediate";
-       version = "1.0.8.1";
-       sha256 = "0ry437v01vc3d462zgg0jn113l24lcry5lgdv2y0rmyy6wfq8i7f";
+       version = "1.0.9";
+       sha256 = "1b9ad7hn9q87zlgg1bpyyvjm2qcss0p90s1v1wpwd55v21psg6i9";
        isLibrary = false;
        isExecutable = true;
        executableHaskellDepends = [
-         ansi-terminal base base-compat Diff directory filepath mtl
-         optparse-applicative process unix-compat
+         ansi-terminal base base-compat Diff directory filepath generic-data
+         mtl optparse-applicative process unix-compat
        ];
        description = "Tool to help resolving git conflicts";
        license = lib.licenses.gpl2Only;
@@ -116154,8 +119844,8 @@ self: {
      }:
      mkDerivation {
        pname = "git-repair";
-       version = "1.20220404";
-       sha256 = "1rf0x9biyvmf808p5sq1ym3zdzgz003ravwpzpbnlr55wksxp1fc";
+       version = "1.20230814";
+       sha256 = "1aymf3aq51lng0scpd5bql3nm9azrnp85mvl44sj2qixawgyvkr1";
        isLibrary = false;
        isExecutable = true;
        setupHaskellDepends = [
@@ -116353,8 +120043,8 @@ self: {
        pname = "github";
        version = "0.29";
        sha256 = "1hki9lvf5vcq980ky98vwc7rh86rgf3z8pvqfgpb6jinc7jylcpx";
-       revision = "2";
-       editedCabalFile = "1g3b2ppx2n5nxpn00sk6i413w99vmb95sz1v9g3anh9g9x6mgv21";
+       revision = "3";
+       editedCabalFile = "17dfigfd2p2h8zpvxfnr1y1ghl7a2f89k50rni4ibh1mn6x1j49r";
        libraryHaskellDepends = [
          aeson base base-compat base16-bytestring binary binary-instances
          bytestring containers cryptohash-sha1 deepseq deepseq-generics
@@ -116425,7 +120115,6 @@ self: {
        description = "Access to the GitHub API, v3";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "github-post-receive" = callPackage
@@ -116480,6 +120169,8 @@ self: {
        pname = "github-rest";
        version = "1.1.4";
        sha256 = "156mqc9748ypinwm8xb46b40ysqpgyb5p2jaiyc34jpxd74g3148";
+       revision = "1";
+       editedCabalFile = "13h1s60mqp198vl7cf2pjhx957mg2jd3zrwdfyj79fp87vfsz0fp";
        libraryHaskellDepends = [
          aeson base bytestring http-client http-client-tls http-types jwt
          mtl scientific text time transformers unliftio unliftio-core
@@ -117720,6 +121411,23 @@ self: {
        hydraPlatforms = lib.platforms.none;
      }) {};
 
+  "gloss-raster-massiv" = callPackage
+    ({ mkDerivation, base, derive-storable, derive-storable-plugin
+     , generic-deriving, gloss, gloss-rendering, massiv
+     }:
+     mkDerivation {
+       pname = "gloss-raster-massiv";
+       version = "0.1.1.5";
+       sha256 = "19smcfb1wq3193m19zaj4i3sfv9k8y7z3npjyrfwv4i3x32gydbq";
+       libraryHaskellDepends = [
+         base derive-storable derive-storable-plugin generic-deriving gloss
+         gloss-rendering massiv
+       ];
+       testHaskellDepends = [ base ];
+       description = "Massiv-based alternative for gloss-raster";
+       license = lib.licenses.bsd3;
+     }) {};
+
   "gloss-rendering" = callPackage
     ({ mkDerivation, base, bmp, bytestring, containers, GLUT, OpenGL }:
      mkDerivation {
@@ -120769,8 +124477,8 @@ self: {
        pname = "goldplate";
        version = "0.2.1.1";
        sha256 = "1cisak5ng6v0iq24djyg4jp87diay02m0k2saac49saxmk29jsr6";
-       revision = "2";
-       editedCabalFile = "1gcdgybp6dgdr46p22cm84i9b1p1p0afil616ni7kqrsb7vgssjy";
+       revision = "3";
+       editedCabalFile = "17v3xw6jqx74nfzgd4snqgj560i0v822vfvwkp5rq0xn1a8p4nxz";
        isLibrary = false;
        isExecutable = true;
        executableHaskellDepends = [
@@ -121057,7 +124765,6 @@ self: {
        description = "Bindings to the Google Maps Static API (formerly Static Maps API)";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "google-translate" = callPackage
@@ -122526,8 +126233,6 @@ self: {
        ];
        description = "GraphQL with batteries";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "graphql-utils" = callPackage
@@ -122672,8 +126377,8 @@ self: {
        pname = "graphviz";
        version = "2999.20.1.0";
        sha256 = "0l0zxgb938hh09qirggbaskq79mgj3s081cnr42y5vm1rp1jir2s";
-       revision = "2";
-       editedCabalFile = "110yp1h2jrswllnx2ks772g10v9h4vqxc07b33wfaksyim9769bp";
+       revision = "3";
+       editedCabalFile = "16smnwf63z96myfw6yscxf1gpq3yn15634xh9xjkv4mf0zdl4f82";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -123050,7 +126755,6 @@ self: {
        license = lib.licenses.bsd3;
        badPlatforms = lib.platforms.darwin;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "gridbounds" = callPackage
@@ -123581,8 +127285,6 @@ self: {
        libraryHaskellDepends = [ base groups ];
        description = "Generically derive Group instances";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "grow-vector" = callPackage
@@ -123608,6 +127310,26 @@ self: {
        broken = true;
      }) {};
 
+  "growable-vector" = callPackage
+    ({ mkDerivation, base, contiguous, primitive, primitive-unlifted
+     , vector
+     }:
+     mkDerivation {
+       pname = "growable-vector";
+       version = "0.1";
+       sha256 = "03h9rl1h12nvgbav065ixl6r6kmdfkb32bzn23mkrmj5n0aacfh0";
+       revision = "1";
+       editedCabalFile = "0b9dbnk38sy4w29zhvn1qq0hjk5swwaw1qxs27s6knlvggrqxc9r";
+       libraryHaskellDepends = [
+         base contiguous primitive primitive-unlifted vector
+       ];
+       testHaskellDepends = [ base contiguous vector ];
+       description = "A contiguous growable array type";
+       license = lib.licenses.mit;
+       hydraPlatforms = lib.platforms.none;
+       broken = true;
+     }) {};
+
   "growler" = callPackage
     ({ mkDerivation, aeson, base, blaze-builder, bytestring
      , case-insensitive, either, http-types, lens, monad-control, mtl
@@ -124544,7 +128266,6 @@ self: {
        description = "Generate simple combinators given their type";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "guid" = callPackage
@@ -125060,7 +128781,6 @@ self: {
        ];
        description = "native Haskell implementation of OpenPGP (RFC4880)";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "hPDB" = callPackage
@@ -125466,7 +129186,6 @@ self: {
        libraryHaskellDepends = [ base bytestring cgi containers hack ];
        description = "Allows programs written against MonadCGI to run with any hack handler. (deprecated)";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "hack-handler-cgi" = callPackage
@@ -125549,6 +129268,7 @@ self: {
        description = "Hack Happstack server handler";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "hack-handler-hyena" = callPackage
@@ -125581,6 +129301,7 @@ self: {
        description = "Hack Kibro handler";
        license = "GPL";
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "hack-handler-simpleserver" = callPackage
@@ -125847,6 +129568,7 @@ self: {
        doHaddock = false;
        description = "CLI tool for Hackage";
        license = lib.licenses.gpl3Plus;
+       hydraPlatforms = lib.platforms.none;
        mainProgram = "hackage-cli";
      }) {};
 
@@ -126297,9 +130019,7 @@ self: {
        doHaddock = false;
        description = "Hackage and Portage integration tool";
        license = lib.licenses.gpl3Plus;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "hackport";
-       broken = true;
      }) {};
 
   "hactor" = callPackage
@@ -126571,7 +130291,6 @@ self: {
        testToolDepends = [ hspec-discover ];
        description = "Dockerfile Linter JavaScript API";
        license = lib.licenses.gpl3Only;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "hadolint";
      }) {};
 
@@ -127087,6 +130806,8 @@ self: {
        pname = "hakyll";
        version = "4.16.0.0";
        sha256 = "1cxhi1k2fzxzgx6wvplq90jx7mqdzpnab0qjf763s8ih8bf6zck4";
+       revision = "1";
+       editedCabalFile = "1lwfhzxg74fqzf5g61bldhwfdh3dhls3mxf02rrd32vgv6c60hk8";
        isLibrary = true;
        isExecutable = true;
        enableSeparateDataOutput = true;
@@ -127301,8 +131022,8 @@ self: {
        pname = "hakyll-convert";
        version = "0.3.0.4";
        sha256 = "09fqr05mvs0qs53psq97kn1s4axinwn1vr5d6af4sqj3zc5k6k39";
-       revision = "2";
-       editedCabalFile = "04j3f0p71y8hwx92daj31r609xj647r3v5yhxr9whzfn432wj7p1";
+       revision = "3";
+       editedCabalFile = "1nmcmc4vs4kwb521qvpxirgi1ykg8d6cx76d1v98prmrjnk2i9s5";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -127319,9 +131040,7 @@ self: {
        ];
        description = "Convert from other blog engines to Hakyll";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "hakyll-convert";
-       broken = true;
      }) {};
 
   "hakyll-dhall" = callPackage
@@ -127643,8 +131362,6 @@ self: {
        ];
        description = "Additive monoids generalising vector spaces";
        license = lib.licenses.gpl3Only;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "halfs" = callPackage
@@ -127676,8 +131393,8 @@ self: {
     ({ mkDerivation, base }:
      mkDerivation {
        pname = "halfsplit";
-       version = "0.2.0.0";
-       sha256 = "1z434f5zw6riqa6b5k0ism80j6wcx6sgvicz6wl9winz0mxzg9gv";
+       version = "0.3.0.0";
+       sha256 = "0yxi29jai57jgvw67c305lcmnyyh58a8pjz1yvmbmk5q20cmbkdc";
        libraryHaskellDepends = [ base ];
        description = "A library to provide special kind of two-column terminal output for Phladiprelio";
        license = lib.licenses.mit;
@@ -127947,7 +131664,6 @@ self: {
        license = "GPL";
        hydraPlatforms = lib.platforms.none;
        mainProgram = "hamlog";
-       broken = true;
      }) {};
 
   "hamid" = callPackage
@@ -128777,7 +132493,6 @@ self: {
        ];
        description = "Happstack extension for use with FastCGI";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "happstack-fay" = callPackage
@@ -128858,7 +132573,6 @@ self: {
        description = "Support for using Heist templates in Happstack";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "happstack-helpers" = callPackage
@@ -129213,8 +132927,6 @@ self: {
        libraryHaskellDepends = [ base Chart Chart-diagrams ];
        description = "Generate simple okay-looking bar plots without much effort";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "happy-meta" = callPackage
@@ -129393,7 +133105,6 @@ self: {
        description = "Deep embedding of hardware descriptions with code generation";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "harfbuzz-pure" = callPackage
@@ -129413,9 +133124,7 @@ self: {
        executableHaskellDepends = [ base bytestring parallel text ];
        description = "Pure-functional Harfbuzz language bindings";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "shape-text";
-       broken = true;
      }) {inherit (pkgs) harfbuzz;};
 
   "harg" = callPackage
@@ -129434,6 +133143,7 @@ self: {
        description = "Haskell program configuration using higher kinded data";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "hark" = callPackage
@@ -129640,8 +133350,6 @@ self: {
        ];
        description = "Haskell driver for Neo4j 3+ (BOLT protocol)";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "hasbolt-extras" = callPackage
@@ -129669,6 +133377,7 @@ self: {
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "example";
+       broken = true;
      }) {};
 
   "hascal" = callPackage
@@ -129962,10 +133671,8 @@ self: {
      }:
      mkDerivation {
        pname = "hashable";
-       version = "1.4.2.0";
-       sha256 = "1y73606pcrs7zi6f4f07a5rkhc6620n1bx0adpa6j7xqhbm00h0v";
-       revision = "1";
-       editedCabalFile = "12nmnmm2kyjalkvmz0l1l895ikc938lwppx8iykxnhamblrr4msq";
+       version = "1.4.3.0";
+       sha256 = "1xdhg8mn1i3bci7sbw9nx18sxadkz6fw7rfbnw4n4y4i51nb3vrj";
        libraryHaskellDepends = [
          base bytestring containers deepseq filepath ghc-bignum ghc-prim
          text
@@ -130435,7 +134142,6 @@ self: {
        license = "unknown";
        hydraPlatforms = lib.platforms.none;
        mainProgram = "haskanoid";
-       broken = true;
      }) {};
 
   "haskarrow" = callPackage
@@ -130634,7 +134340,6 @@ self: {
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "haskell-abci-counter";
-       broken = true;
      }) {};
 
   "haskell-admin" = callPackage
@@ -130884,8 +134589,8 @@ self: {
      }:
      mkDerivation {
        pname = "haskell-ci";
-       version = "0.16.3";
-       sha256 = "1f1k64w6hdgfns3a1pa09h4064ihfck2pdwr7fn0yqpynd0q6cq3";
+       version = "0.16.6";
+       sha256 = "150s3lp49rpg9x3wcqhlcb70afgvxfnfyjwhiwmypqd02xxb29dk";
        isLibrary = false;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -131451,19 +135156,19 @@ self: {
      , hls-module-name-plugin, hls-ormolu-plugin
      , hls-overloaded-record-dot-plugin, hls-plugin-api
      , hls-pragmas-plugin, hls-qualify-imported-names-plugin
-     , hls-refactor-plugin, hls-refine-imports-plugin, hls-rename-plugin
-     , hls-retrie-plugin, hls-splice-plugin, hls-stylish-haskell-plugin
-     , hls-test-utils, hp2pretty, hspec-expectations, implicit-hie, lens
-     , lens-aeson, lsp, lsp-test, lsp-types, mtl, optparse-applicative
-     , optparse-simple, prettyprinter, process, regex-tdfa
+     , hls-refactor-plugin, hls-rename-plugin, hls-retrie-plugin
+     , hls-splice-plugin, hls-stylish-haskell-plugin, hls-test-utils
+     , hp2pretty, hspec-expectations, implicit-hie, lens, lens-aeson
+     , lsp, lsp-test, lsp-types, mtl, optparse-applicative
+     , optparse-simple, prettyprinter, process, regex-tdfa, row-types
      , safe-exceptions, shake, shake-bench, sqlite-simple, stm
      , temporary, text, transformers, unix, unliftio-core
      , unordered-containers, yaml
      }:
      mkDerivation {
        pname = "haskell-language-server";
-       version = "2.0.0.1";
-       sha256 = "1d3cgsr842czd92ay30yf9xm6bm1q6yvi6yjxsmb42mncdgh3wqr";
+       version = "2.1.0.0";
+       sha256 = "0i8fwc4m0rc5dzs1rp14g20cz2awm2x9pc46rhkcql3x89kn6knf";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -131478,10 +135183,10 @@ self: {
          hls-hlint-plugin hls-module-name-plugin hls-ormolu-plugin
          hls-overloaded-record-dot-plugin hls-plugin-api hls-pragmas-plugin
          hls-qualify-imported-names-plugin hls-refactor-plugin
-         hls-refine-imports-plugin hls-rename-plugin hls-retrie-plugin
-         hls-splice-plugin hls-stylish-haskell-plugin lsp
-         optparse-applicative optparse-simple prettyprinter process
-         safe-exceptions sqlite-simple text unordered-containers
+         hls-rename-plugin hls-retrie-plugin hls-splice-plugin
+         hls-stylish-haskell-plugin lsp optparse-applicative optparse-simple
+         prettyprinter process safe-exceptions sqlite-simple text
+         unordered-containers
        ];
        executableHaskellDepends = [
          aeson async base base16-bytestring binary bytestring containers
@@ -131496,7 +135201,7 @@ self: {
          aeson base bytestring containers data-default deepseq directory
          extra filepath ghcide ghcide-test-utils hashable hls-plugin-api
          hls-refactor-plugin hls-test-utils hspec-expectations lens
-         lens-aeson lsp-test lsp-types prettyprinter process text
+         lens-aeson lsp-test lsp-types prettyprinter process row-types text
          unordered-containers
        ];
        testToolDepends = [ ghcide ];
@@ -132037,7 +135742,6 @@ self: {
        badPlatforms = lib.platforms.darwin;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "haskell-snake";
-       broken = true;
      }) {};
 
   "haskell-spacegoo" = callPackage
@@ -133380,7 +137084,6 @@ self: {
        description = "A transactional, ACID compliant, embeddable key-value store";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "haskey-btree" = callPackage
@@ -133632,7 +137335,7 @@ self: {
        license = lib.licenses.mit;
      }) {};
 
-  "haskoin-core_0_22_0" = callPackage
+  "haskoin-core_1_0_2" = callPackage
     ({ mkDerivation, aeson, array, base, base16, base64, binary, bytes
      , bytestring, cereal, conduit, containers, cryptonite, deepseq
      , entropy, hashable, hspec, hspec-discover, HUnit, lens, lens-aeson
@@ -133642,8 +137345,8 @@ self: {
      }:
      mkDerivation {
        pname = "haskoin-core";
-       version = "0.22.0";
-       sha256 = "1a8gzlpx7cgdsdsxxqmp7girm19aliszna08cpkk70jigkv2bmm9";
+       version = "1.0.2";
+       sha256 = "1abcidb3d18yb4h1p889xi2ffad0swbl0akvshlyvq6jm9gzqavy";
        libraryHaskellDepends = [
          aeson array base base16 binary bytes bytestring cereal conduit
          containers cryptonite deepseq entropy hashable hspec memory mtl
@@ -133718,7 +137421,7 @@ self: {
        license = lib.licenses.mit;
      }) {};
 
-  "haskoin-node_0_19_0" = callPackage
+  "haskoin-node_1_0_1" = callPackage
     ({ mkDerivation, base, base64, bytestring, cereal, conduit
      , conduit-extra, containers, data-default, hashable, haskoin-core
      , hspec, hspec-discover, HUnit, monad-logger, mtl, network, nqe
@@ -133728,8 +137431,8 @@ self: {
      }:
      mkDerivation {
        pname = "haskoin-node";
-       version = "0.19.0";
-       sha256 = "1r6kr7jysqm9rzmckd51v50q8z2vn5ygl9xxfgr02r4xvs8phvxh";
+       version = "1.0.1";
+       sha256 = "162lbwqbivcz1fqhfn7g265qinfnai270x6fsk7xp9zysqib2jc4";
        libraryHaskellDepends = [
          base bytestring cereal conduit conduit-extra containers
          data-default hashable haskoin-core monad-logger mtl network nqe
@@ -133812,8 +137515,8 @@ self: {
      }:
      mkDerivation {
        pname = "haskoin-store";
-       version = "0.65.10";
-       sha256 = "15zp67vxr8b593pgp989kfrp9cy8nybyyk8k5inqc42q7by1rz1y";
+       version = "1.0.1";
+       sha256 = "19i4m1hgf5gzlxq3pkq8wcn0z264b701xljzxsaq5zwdp9hvx9iy";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -133880,6 +137583,35 @@ self: {
        license = lib.licenses.mit;
      }) {};
 
+  "haskoin-store-data_1_0_1" = callPackage
+    ({ mkDerivation, aeson, base, binary, bytes, bytestring, cereal
+     , containers, data-default, deepseq, hashable, haskoin-core, hspec
+     , hspec-discover, http-client, http-types, lens, mtl, network
+     , QuickCheck, scotty, string-conversions, text, time
+     , unordered-containers, vector, wreq
+     }:
+     mkDerivation {
+       pname = "haskoin-store-data";
+       version = "1.0.1";
+       sha256 = "19jax9bz68qakjrx54fbsqz5h1jiad4cmn3g7xln8q1qaq0pyl08";
+       libraryHaskellDepends = [
+         aeson base binary bytes bytestring cereal containers data-default
+         deepseq hashable haskoin-core http-client http-types lens mtl
+         network scotty string-conversions text time unordered-containers
+         vector wreq
+       ];
+       testHaskellDepends = [
+         aeson base binary bytes bytestring cereal containers data-default
+         deepseq hashable haskoin-core hspec http-client http-types lens mtl
+         network QuickCheck scotty string-conversions text time
+         unordered-containers vector wreq
+       ];
+       testToolDepends = [ hspec-discover ];
+       description = "Data for Haskoin Store";
+       license = lib.licenses.mit;
+       hydraPlatforms = lib.platforms.none;
+     }) {};
+
   "haskoin-util" = callPackage
     ({ mkDerivation, base, binary, bytestring, containers, either
      , HUnit, mtl, QuickCheck, test-framework, test-framework-hunit
@@ -134157,6 +137889,36 @@ self: {
        mainProgram = "hasktags";
      }) {};
 
+  "hasktags_0_73_0" = callPackage
+    ({ mkDerivation, base, bytestring, containers, directory, filepath
+     , HUnit, json, microlens-platform, optparse-applicative
+     , utf8-string
+     }:
+     mkDerivation {
+       pname = "hasktags";
+       version = "0.73.0";
+       sha256 = "0w0g50ggdmkpxgwqdwdbizw3cz8q86l1xwhvj3bjczh72q5xa0nh";
+       revision = "1";
+       editedCabalFile = "1zxfnrrcbkv5if0sk8qq9f7bbhm8b7xcmavvl0ad5j1zhk9nlqy5";
+       isLibrary = true;
+       isExecutable = true;
+       libraryHaskellDepends = [
+         base bytestring directory filepath json microlens-platform
+         utf8-string
+       ];
+       executableHaskellDepends = [
+         base containers directory filepath optparse-applicative
+       ];
+       testHaskellDepends = [
+         base bytestring directory filepath HUnit json microlens-platform
+         utf8-string
+       ];
+       description = "Produces ctags \"tags\" and etags \"TAGS\" files for Haskell programs";
+       license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
+       mainProgram = "hasktags";
+     }) {};
+
   "hasktorch" = callPackage
     ({ mkDerivation, backprop, base, dimensions, generic-lens
      , ghc-typelits-natnormalise, hasktorch-ffi-th, hasktorch-ffi-thc
@@ -134745,8 +138507,8 @@ self: {
      }:
      mkDerivation {
        pname = "hasql";
-       version = "1.6.3";
-       sha256 = "04d4pa248pffqsj032m69wkv11cn0mdfc21qfygk3dcb1yfh0nnj";
+       version = "1.6.3.2";
+       sha256 = "0b5sawrcbyqin48vfg2nyrk55qdsxpdn4gmdj3mdb30vnrkns9pq";
        libraryHaskellDepends = [
          aeson attoparsec base bytestring bytestring-strict-builder
          contravariant dlist hashable hashtables mtl network-ip
@@ -134942,8 +138704,6 @@ self: {
        ];
        description = "QuasiQuoter that supports expression interpolation for hasql";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "hasql-listen-notify" = callPackage
@@ -135228,7 +138988,6 @@ self: {
        description = "Stream Hasql queries";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "hasql-streams-example" = callPackage
@@ -136113,17 +139872,15 @@ self: {
     ({ mkDerivation, base, blake3, bytestring, mmap }:
      mkDerivation {
        pname = "hb3sum";
-       version = "0";
-       sha256 = "1kkh92br8aazm90zffx33my8bp7fw9ldsvjw0327fjll08hs8l3x";
+       version = "0.0.0.1";
+       sha256 = "0z41vkzjwxfqdfh26q5qrvzivjfvkk1wq7lcg511b35mi4f10znw";
        isLibrary = false;
        isExecutable = true;
        executableHaskellDepends = [ base blake3 bytestring mmap ];
        description = "A command line tool to compute BLAKE3 hashes";
        license = lib.licenses.agpl3Only;
-       badPlatforms = [ "aarch64-linux" ];
-       hydraPlatforms = lib.platforms.none;
+       platforms = lib.platforms.x86;
        mainProgram = "hb3sum";
-       broken = true;
      }) {};
 
   "hback" = callPackage
@@ -136954,6 +140711,7 @@ self: {
        description = "HDF: Uniform Rate Audio Signal Processing in Haskell";
        license = "GPL";
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "hdf5" = callPackage
@@ -137046,6 +140804,7 @@ self: {
        description = "Server-side HTTP Digest (RFC2617) in the CGI monad";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "hdirect" = callPackage
@@ -137298,9 +141057,7 @@ self: {
        testToolDepends = [ hspec-discover ];
        description = "License Header Manager";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "headroom";
-       broken = true;
      }) {};
 
   "heap" = callPackage
@@ -137701,7 +141458,7 @@ self: {
        maintainers = [ lib.maintainers.maralorn ];
      }) {};
 
-  "hedgehog_1_3" = callPackage
+  "hedgehog_1_4" = callPackage
     ({ mkDerivation, ansi-terminal, async, barbies, base, bytestring
      , concurrent-output, containers, deepseq, directory, erf
      , exceptions, lifted-async, mmorph, monad-control, mtl, pretty-show
@@ -137711,8 +141468,8 @@ self: {
      }:
      mkDerivation {
        pname = "hedgehog";
-       version = "1.3";
-       sha256 = "1lkxmccjghdr7s02gwbzlhhwndpcrgi5a4a3yy2qq73xkcr3nqsg";
+       version = "1.4";
+       sha256 = "1sz685n2ljriqwfpfy57adbsc6gyrd4x7jmy628803rfalqznjpm";
        libraryHaskellDepends = [
          ansi-terminal async barbies base bytestring concurrent-output
          containers deepseq directory erf exceptions lifted-async mmorph
@@ -137855,7 +141612,6 @@ self: {
        description = "Customizable Gen for ADT using Generics";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "hedgehog-gen-json" = callPackage
@@ -137945,8 +141701,8 @@ self: {
        pname = "hedgehog-quickcheck";
        version = "0.1.1";
        sha256 = "1z2ja63wqz83qhwzh0zs98k502v8fjdpnsnhqk3srypx2nw5vdlp";
-       revision = "5";
-       editedCabalFile = "0l5fn4z4n80h99baxhsqsq3dqxli9hl0xwjgxbs12kz59w667ml1";
+       revision = "6";
+       editedCabalFile = "0ymfpbnywq83xbz1rmp8w3piikgvzriczwcvhir125nk50mgp0xz";
        libraryHaskellDepends = [ base hedgehog QuickCheck transformers ];
        description = "Use QuickCheck generators in Hedgehog and vice versa";
        license = lib.licenses.bsd3;
@@ -138183,6 +141939,8 @@ self: {
        pname = "hegg";
        version = "0.4.0.0";
        sha256 = "1nhxmf90965752skn3wcyjavi2amfxhlyrh60lmslm08w2wk14sk";
+       revision = "1";
+       editedCabalFile = "11c6ls164lr2bwjk0bbkzy8wiaazi8gd60pqyhf0in376ar2f6z5";
        libraryHaskellDepends = [ base containers transformers ];
        testHaskellDepends = [
          base containers tasty tasty-hunit tasty-quickcheck
@@ -138283,6 +142041,8 @@ self: {
        ];
        description = "An Haskell template system supporting both HTML5 and XML";
        license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "heist-aeson" = callPackage
@@ -138300,7 +142060,6 @@ self: {
        description = "Use JSON directly from Heist templates";
        license = lib.licenses.publicDomain;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "heist-async" = callPackage
@@ -138315,7 +142074,6 @@ self: {
        description = "Adding support for asynchronous updates (\"AJAX\") with heist";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "heist-emanote" = callPackage
@@ -138367,8 +142125,8 @@ self: {
      }:
      mkDerivation {
        pname = "heist-extra";
-       version = "0.2.0.0";
-       sha256 = "0rjlnj6ja7wfck1cpkfl9hh17kn0ghal8g4j8dh2dfzm6bnprqmk";
+       version = "0.3.0.0";
+       sha256 = "11gswvr4kmrci4xnl2sq0hhfg1mmrx8hnyd8lw74zv5vwhacl00m";
        libraryHaskellDepends = [
          base data-default filepath heist map-syntax mtl pandoc-types relude
          xmlhtml
@@ -138376,7 +142134,6 @@ self: {
        description = "Extra heist functionality";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "helf" = callPackage
@@ -139103,16 +142860,17 @@ self: {
      }) {inherit (pkgs) boost; inherit (pkgs) nix;};
 
   "here" = callPackage
-    ({ mkDerivation, base, haskell-src-meta, mtl, parsec
-     , template-haskell
+    ({ mkDerivation, base, bytestring, haskell-src-meta, hspec, mtl
+     , parsec, template-haskell, text
      }:
      mkDerivation {
        pname = "here";
-       version = "1.2.13";
-       sha256 = "001wfyvigl2xswqysnpignkl124hybf833875mkcsn8yp8krqvs0";
+       version = "1.2.14";
+       sha256 = "00gi4dji90z37igymyrwzwxq5d7q5dydb9lhr3iihin8sd83zvda";
        libraryHaskellDepends = [
          base haskell-src-meta mtl parsec template-haskell
        ];
+       testHaskellDepends = [ base bytestring hspec text ];
        description = "Here docs & interpolated strings via quasiquotation";
        license = lib.licenses.bsd3;
      }) {};
@@ -140339,20 +144097,19 @@ self: {
      }) {};
 
   "hgdal" = callPackage
-    ({ mkDerivation, base, fficxx, fficxx-runtime, gdal, stdcxx
+    ({ mkDerivation, base, fficxx-runtime, gdal, stdcxx
      , template-haskell
      }:
      mkDerivation {
        pname = "hgdal";
-       version = "1.0.0.0";
-       sha256 = "0zfqa1rgmkch0gj15w9gqavl1lyvyi2i7jsm3n7srnrrhfchxvfb";
+       version = "1.0.0.1";
+       sha256 = "1p2fr215mfihblzi0ky5w0wm8km0i3rh2z3pr8wjb777nkq09mn5";
        libraryHaskellDepends = [
-         base fficxx fficxx-runtime stdcxx template-haskell
+         base fficxx-runtime stdcxx template-haskell
        ];
        libraryPkgconfigDepends = [ gdal ];
        description = "Haskell binding to the GDAL library";
-       license = lib.licenses.bsd2;
-       hydraPlatforms = lib.platforms.none;
+       license = lib.licenses.bsd3;
      }) {inherit (pkgs) gdal;};
 
   "hgdbmi" = callPackage
@@ -140531,7 +144288,6 @@ self: {
        description = "Reading and Writing ipe7 files";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "hgeometry-svg" = callPackage
@@ -140886,7 +144642,6 @@ self: {
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "hi";
-       broken = true;
      }) {};
 
   "hi-file-parser" = callPackage
@@ -141365,8 +145120,6 @@ self: {
        testToolDepends = [ markdown-unlit ];
        description = "Partial types as a type constructor";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "highWaterMark" = callPackage
@@ -142251,7 +146004,6 @@ self: {
        description = "Support for reading and writing ipe7 files (http://ipe7.sourceforge.net)";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "hips" = callPackage
@@ -142675,7 +146427,6 @@ self: {
        ];
        description = "Haskell/Nix development build tools";
        license = "BSD-2-Clause-Patent";
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "hix";
      }) {};
 
@@ -143864,8 +147615,8 @@ self: {
      }:
      mkDerivation {
        pname = "hls-alternate-number-format-plugin";
-       version = "2.0.0.1";
-       sha256 = "1vszwiy8jgs8a2ggz04kn0d0y59fx6ji110j8pj1z5k40yx1a26a";
+       version = "2.1.0.0";
+       sha256 = "0zp5y6k5hk9xkc45nz64w550af2a881jbzpl3nwif9w3qx7q0966";
        libraryHaskellDepends = [
          aeson base containers extra ghc-boot-th ghcide hie-compat hls-graph
          hls-plugin-api lens lsp mtl regex-tdfa syb text
@@ -143893,14 +147644,14 @@ self: {
 
   "hls-cabal-fmt-plugin" = callPackage
     ({ mkDerivation, base, directory, filepath, ghcide, hls-plugin-api
-     , hls-test-utils, lens, lsp-types, process, text, transformers
+     , hls-test-utils, lens, lsp-types, mtl, process, text, transformers
      }:
      mkDerivation {
        pname = "hls-cabal-fmt-plugin";
-       version = "2.0.0.1";
-       sha256 = "1nmwnx2j1cnqsgw3bsdkdw8rp4dnf4fdclsr56viaz2qm4hqjc8k";
+       version = "2.1.0.0";
+       sha256 = "0qrjflj02y600y8793gwhkz13hgnl8dv1nmgv5ajlr59md0r8gvf";
        libraryHaskellDepends = [
-         base directory filepath ghcide hls-plugin-api lens lsp-types
+         base directory filepath ghcide hls-plugin-api lens lsp-types mtl
          process text transformers
        ];
        testHaskellDepends = [ base directory filepath hls-test-utils ];
@@ -143909,23 +147660,26 @@ self: {
      }) {};
 
   "hls-cabal-plugin" = callPackage
-    ({ mkDerivation, base, bytestring, Cabal, deepseq, directory, extra
-     , filepath, ghcide, hashable, hls-graph, hls-plugin-api
-     , hls-test-utils, lens, lsp, lsp-types, regex-tdfa, stm
-     , tasty-hunit, text, unordered-containers
+    ({ mkDerivation, base, bytestring, Cabal-syntax, containers
+     , deepseq, directory, extra, filepath, ghcide, hashable, hls-graph
+     , hls-plugin-api, hls-test-utils, lens, lsp, lsp-types, regex-tdfa
+     , row-types, stm, tasty-hunit, text, text-rope, transformers
+     , unordered-containers
      }:
      mkDerivation {
        pname = "hls-cabal-plugin";
-       version = "2.0.0.1";
-       sha256 = "17zccd6c16xq44al5iaj9zfp0gzjb03bclvyyr739ikh8vjb2j7b";
+       version = "2.1.0.0";
+       sha256 = "1qv70vj4znn5yswnsr41h313y8p6zx006hzqc7fzk3f2khz079rp";
        libraryHaskellDepends = [
-         base bytestring Cabal deepseq directory extra ghcide hashable
-         hls-graph hls-plugin-api lsp lsp-types regex-tdfa stm text
+         base bytestring Cabal-syntax containers deepseq directory extra
+         filepath ghcide hashable hls-graph hls-plugin-api lens lsp
+         lsp-types regex-tdfa stm text text-rope transformers
          unordered-containers
        ];
        testHaskellDepends = [
-         base bytestring filepath ghcide hls-test-utils lens lsp-types
-         tasty-hunit text
+         base bytestring Cabal-syntax directory filepath ghcide
+         hls-test-utils lens lsp lsp-types row-types tasty-hunit text
+         text-rope transformers
        ];
        description = "Cabal integration plugin with Haskell Language Server";
        license = lib.licenses.mit;
@@ -143938,8 +147692,8 @@ self: {
      }:
      mkDerivation {
        pname = "hls-call-hierarchy-plugin";
-       version = "2.0.0.1";
-       sha256 = "1bc3mwvj9k7bnhpf69ikzz206hr4sqp7k57mlqs1bpillai9sk1c";
+       version = "2.1.0.0";
+       sha256 = "1rlnx62y6271mfka1qp48fhfkv89dz4qbhiz6n7sh9mp5bplkkbh";
        libraryHaskellDepends = [
          aeson base containers extra ghcide hiedb hls-plugin-api lens lsp
          sqlite-simple text unordered-containers
@@ -143953,16 +147707,16 @@ self: {
      }) {};
 
   "hls-change-type-signature-plugin" = callPackage
-    ({ mkDerivation, base, filepath, ghcide, hls-plugin-api
+    ({ mkDerivation, base, containers, filepath, ghcide, hls-plugin-api
      , hls-test-utils, lsp, lsp-types, QuickCheck, regex-tdfa, syb, text
      , transformers, unordered-containers
      }:
      mkDerivation {
        pname = "hls-change-type-signature-plugin";
-       version = "2.0.0.1";
-       sha256 = "1mjckkjsl8r3mln9lbw4f59fwkss0p8lz9n73nppadrf61x4fkm5";
+       version = "2.1.0.0";
+       sha256 = "1hv0hdgqxkxs3lad29ikpswal08gvql4bd9qwsq3p94brc59c6nz";
        libraryHaskellDepends = [
-         base ghcide hls-plugin-api lsp-types regex-tdfa syb text
+         base containers ghcide hls-plugin-api lsp-types regex-tdfa syb text
          transformers unordered-containers
        ];
        testHaskellDepends = [
@@ -143975,20 +147729,20 @@ self: {
   "hls-class-plugin" = callPackage
     ({ mkDerivation, aeson, base, containers, deepseq, extra, filepath
      , ghc, ghc-boot-th, ghc-exactprint, ghcide, hls-graph
-     , hls-plugin-api, hls-test-utils, lens, lsp, lsp-types, text
-     , transformers
+     , hls-plugin-api, hls-test-utils, lens, lsp, lsp-types, mtl
+     , row-types, text, transformers
      }:
      mkDerivation {
        pname = "hls-class-plugin";
-       version = "2.0.0.1";
-       sha256 = "1hmp4apq1azds6bc2ri7i6q4d6aa52sz0c24pdwnzmb59blvgia4";
+       version = "2.1.0.0";
+       sha256 = "0m3aprgv1inmj9lq85g1vrngrqvgrq9r39jq2vy4rlm14cqlgjk2";
        libraryHaskellDepends = [
          aeson base containers deepseq extra ghc ghc-boot-th ghc-exactprint
-         ghcide hls-graph hls-plugin-api lens lsp text transformers
+         ghcide hls-graph hls-plugin-api lens lsp mtl text transformers
        ];
        testHaskellDepends = [
          aeson base filepath ghcide hls-plugin-api hls-test-utils lens
-         lsp-types text
+         lsp-types row-types text
        ];
        description = "Class/instance management plugin for Haskell Language Server";
        license = lib.licenses.asl20;
@@ -144002,42 +147756,44 @@ self: {
      }:
      mkDerivation {
        pname = "hls-code-range-plugin";
-       version = "2.0.0.1";
-       sha256 = "19vwzjkl2ihpc2c6dwnfnb6vi0jafbpqwhq24hi61pgiciqvvm7i";
+       version = "2.1.0.0";
+       sha256 = "1jqh37gd5hqznx4gjvbx0k077bryic1j15b843l02vy9iymsmaj5";
        libraryHaskellDepends = [
          aeson base containers deepseq extra ghcide hashable hls-plugin-api
          lens lsp mtl semigroupoids text transformers vector
        ];
        testHaskellDepends = [
-         base bytestring containers filepath ghcide hls-test-utils lens lsp
-         lsp-test tasty-hunit text transformers vector
+         base bytestring containers filepath ghcide hls-plugin-api
+         hls-test-utils lens lsp lsp-test tasty-hunit text transformers
+         vector
        ];
        description = "HLS Plugin to support smart selection range and Folding range";
        license = lib.licenses.asl20;
      }) {};
 
   "hls-eval-plugin" = callPackage
-    ({ mkDerivation, aeson, base, containers, data-default, deepseq
-     , Diff, directory, dlist, extra, filepath, ghc, ghc-boot-th
-     , ghc-paths, ghcide, hashable, hls-graph, hls-plugin-api
-     , hls-test-utils, lens, lsp, lsp-types, megaparsec, mtl
-     , parser-combinators, pretty-simple, QuickCheck, safe-exceptions
-     , text, time, transformers, unliftio, unordered-containers
+    ({ mkDerivation, aeson, base, bytestring, containers, data-default
+     , deepseq, Diff, directory, dlist, extra, filepath, ghc
+     , ghc-boot-th, ghc-paths, ghcide, hashable, hls-graph
+     , hls-plugin-api, hls-test-utils, lens, lsp, lsp-types, megaparsec
+     , mtl, parser-combinators, pretty-simple, QuickCheck, row-types
+     , safe-exceptions, text, time, transformers, unliftio
+     , unordered-containers
      }:
      mkDerivation {
        pname = "hls-eval-plugin";
-       version = "2.0.0.1";
-       sha256 = "0955f7zgd13c9nyx1s800aqk3fpysdfmhks9smlnaqg97b56yrzh";
+       version = "2.1.0.0";
+       sha256 = "1ic1giwwndmijbnbnani2xxfmxwpp66jh03l614wphvlxqchgf67";
        libraryHaskellDepends = [
-         aeson base containers data-default deepseq Diff directory dlist
-         extra filepath ghc ghc-boot-th ghc-paths ghcide hashable hls-graph
-         hls-plugin-api lens lsp lsp-types megaparsec mtl parser-combinators
-         pretty-simple QuickCheck safe-exceptions text time transformers
-         unliftio unordered-containers
+         aeson base bytestring containers data-default deepseq Diff
+         directory dlist extra filepath ghc ghc-boot-th ghc-paths ghcide
+         hashable hls-graph hls-plugin-api lens lsp lsp-types megaparsec mtl
+         parser-combinators pretty-simple QuickCheck safe-exceptions text
+         time transformers unliftio unordered-containers
        ];
        testHaskellDepends = [
          aeson base containers directory extra filepath hls-plugin-api
-         hls-test-utils lens lsp-types text
+         hls-test-utils lens lsp-types row-types text
        ];
        description = "Eval plugin for Haskell Language Server";
        license = lib.licenses.asl20;
@@ -144068,8 +147824,8 @@ self: {
      }:
      mkDerivation {
        pname = "hls-explicit-fixity-plugin";
-       version = "2.0.0.1";
-       sha256 = "1mrmh8g5zws4aa222k4sfwgh8whvmh94lljnhhiylk65zd5ib7mm";
+       version = "2.1.0.0";
+       sha256 = "12kv301kwl84xd30fz7s3mmcyf51kypwfl7nhcqx7829xjrsxkbb";
        libraryHaskellDepends = [
          base containers deepseq extra ghc ghcide hashable hls-plugin-api
          lsp text transformers
@@ -144080,19 +147836,22 @@ self: {
      }) {};
 
   "hls-explicit-imports-plugin" = callPackage
-    ({ mkDerivation, aeson, base, containers, deepseq, filepath, ghc
-     , ghcide, hls-graph, hls-plugin-api, hls-test-utils, lsp, text
+    ({ mkDerivation, aeson, base, containers, deepseq, extra, filepath
+     , ghc, ghcide, hls-graph, hls-plugin-api, hls-test-utils, lens, lsp
+     , lsp-types, mtl, row-types, text, transformers
      , unordered-containers
      }:
      mkDerivation {
        pname = "hls-explicit-imports-plugin";
-       version = "2.0.0.1";
-       sha256 = "0h76wg03lqsas0dmpvk2kcccrrj07qn3kxxr1fwxs137m73pfn1x";
+       version = "2.1.0.0";
+       sha256 = "12aj8px0sbi5qh9q4381rmh3p9nyk2x5mk91i0mm5m9as4gwbk4k";
        libraryHaskellDepends = [
          aeson base containers deepseq ghc ghcide hls-graph hls-plugin-api
-         lsp text unordered-containers
+         lens lsp mtl text transformers unordered-containers
+       ];
+       testHaskellDepends = [
+         base extra filepath hls-test-utils lens lsp-types row-types text
        ];
-       testHaskellDepends = [ base filepath hls-test-utils text ];
        description = "Explicit imports plugin for Haskell Language Server";
        license = lib.licenses.asl20;
      }) {};
@@ -144104,8 +147863,8 @@ self: {
      }:
      mkDerivation {
        pname = "hls-explicit-record-fields-plugin";
-       version = "2.0.0.1";
-       sha256 = "1543dvl9i1508f7fhl15skbnfcrs5vnpli0wixsckgn6297vz2g1";
+       version = "2.1.0.0";
+       sha256 = "0bnvc7sd6sn98m9y1kszlm7ca8ddwjl9106c895j28yq5pjxarff";
        libraryHaskellDepends = [
          base containers ghc-boot-th ghcide hls-graph hls-plugin-api lens
          lsp syb text transformers unordered-containers
@@ -144119,14 +147878,14 @@ self: {
 
   "hls-floskell-plugin" = callPackage
     ({ mkDerivation, base, filepath, floskell, ghcide, hls-plugin-api
-     , hls-test-utils, lsp-types, text, transformers
+     , hls-test-utils, lsp-types, mtl, text, transformers
      }:
      mkDerivation {
        pname = "hls-floskell-plugin";
-       version = "2.0.0.1";
-       sha256 = "1mm9qavr3qlrjv13m7a982faya13qnh0ddpcgckaydy3pr8hsqrm";
+       version = "2.1.0.0";
+       sha256 = "13igdc86qpk7j9cbc9cpfyhpahi8wcnxar45wl81piaqahqpn581";
        libraryHaskellDepends = [
-         base floskell ghcide hls-plugin-api lsp-types text transformers
+         base floskell ghcide hls-plugin-api lsp-types mtl text transformers
        ];
        testHaskellDepends = [ base filepath hls-test-utils ];
        description = "Integration with the Floskell code formatter";
@@ -144136,15 +147895,15 @@ self: {
   "hls-fourmolu-plugin" = callPackage
     ({ mkDerivation, aeson, base, containers, filepath, fourmolu, ghc
      , ghc-boot-th, ghcide, hls-plugin-api, hls-test-utils, lens, lsp
-     , lsp-test, process-extras, text
+     , lsp-test, mtl, process-extras, text, transformers
      }:
      mkDerivation {
        pname = "hls-fourmolu-plugin";
-       version = "2.0.0.1";
-       sha256 = "199kk08kzyfpxqv02j1q56fkqbbyn40v1dj8ijazv90an97qw8y8";
+       version = "2.1.0.0";
+       sha256 = "0lrm6f1npqplf1sw5a3pc7qyzd3clys5dylbywh6m66h2bns96yf";
        libraryHaskellDepends = [
          base filepath fourmolu ghc ghc-boot-th ghcide hls-plugin-api lens
-         lsp process-extras text
+         lsp mtl process-extras text transformers
        ];
        testHaskellDepends = [
          aeson base containers filepath hls-plugin-api hls-test-utils
@@ -144163,8 +147922,8 @@ self: {
      }:
      mkDerivation {
        pname = "hls-gadt-plugin";
-       version = "2.0.0.1";
-       sha256 = "1pabnzwh9zjyjidyri0mhn87dy2xhk7c88fj6r096riisj6wzp5g";
+       version = "2.1.0.0";
+       sha256 = "1lb5zk21gx620ywz1wb2034jvq4mc9amp2zmydfc1lwg5ad1my0b";
        libraryHaskellDepends = [
          aeson base containers extra ghc ghc-boot-th ghc-exactprint ghcide
          hls-plugin-api hls-refactor-plugin lens lsp mtl text transformers
@@ -144186,8 +147945,8 @@ self: {
      }:
      mkDerivation {
        pname = "hls-graph";
-       version = "2.0.0.1";
-       sha256 = "0kbhhnbjka5xlsa5vq0vlxg210fz4j7w524a11g6375br3vjfqnc";
+       version = "2.1.0.0";
+       sha256 = "0gsi7a2qpi9qybaig2manbd7pggg429hzwbiwlfjrlnmd4apvs6x";
        enableSeparateDataOutput = true;
        libraryHaskellDepends = [
          aeson async base bytestring containers deepseq directory exceptions
@@ -144208,8 +147967,8 @@ self: {
     ({ mkDerivation }:
      mkDerivation {
        pname = "hls-haddock-comments-plugin";
-       version = "2.0.0.1";
-       sha256 = "1w80jkb4n61v1lvbkpimdwvxi4w9h72zi8lr6p7f8r9fd7l41x35";
+       version = "2.1.0.0";
+       sha256 = "0xf38ikm0r0sx4b25g3ns8q421swmy7an4fbs5dmv86r4pr3999m";
        description = "Haddock comments plugin for Haskell Language Server";
        license = lib.licenses.asl20;
        hydraPlatforms = lib.platforms.none;
@@ -144221,40 +147980,40 @@ self: {
      , containers, data-default, deepseq, Diff, directory, extra
      , filepath, ghc-exactprint, ghc-lib-parser, ghc-lib-parser-ex
      , ghcide, hashable, hlint, hls-plugin-api, hls-test-utils, lens
-     , lsp, lsp-types, refact, regex-tdfa, stm, temporary, text
-     , transformers, unordered-containers
+     , lsp, lsp-types, mtl, refact, regex-tdfa, row-types, stm
+     , temporary, text, transformers, unordered-containers
      }:
      mkDerivation {
        pname = "hls-hlint-plugin";
-       version = "2.0.0.1";
-       sha256 = "0nrcr2xavq5fvq72mhl46y98w28hn64237z1kcx7i69svncwfpk0";
+       version = "2.1.0.0";
+       sha256 = "1z96hry723n236v8v05yzjrs5nxaxh58vqm2ixmkldpgf1i5qklq";
        libraryHaskellDepends = [
          aeson apply-refact base binary bytestring containers data-default
          deepseq Diff directory extra filepath ghc-exactprint ghc-lib-parser
-         ghc-lib-parser-ex ghcide hashable hlint hls-plugin-api lens lsp
+         ghc-lib-parser-ex ghcide hashable hlint hls-plugin-api lens lsp mtl
          refact regex-tdfa stm temporary text transformers
          unordered-containers
        ];
        testHaskellDepends = [
          aeson base containers filepath hls-plugin-api hls-test-utils lens
-         lsp-types text
+         lsp-types row-types text
        ];
        description = "Hlint integration plugin with Haskell Language Server";
        license = lib.licenses.asl20;
      }) {};
 
   "hls-module-name-plugin" = callPackage
-    ({ mkDerivation, aeson, base, directory, filepath, ghcide
-     , hls-plugin-api, hls-test-utils, lsp, text, transformers
+    ({ mkDerivation, aeson, base, containers, directory, filepath
+     , ghcide, hls-plugin-api, hls-test-utils, lsp, text, transformers
      , unordered-containers
      }:
      mkDerivation {
        pname = "hls-module-name-plugin";
-       version = "2.0.0.1";
-       sha256 = "0y4x27mna7adjvk6scnmz28m1ks6nz7lkbp29x1k7k5nj42kzcph";
+       version = "2.1.0.0";
+       sha256 = "1h34cy75mbpdzv4a63k3kcwds7d0c0k87a5fcvgyxbi6a0pkchps";
        libraryHaskellDepends = [
-         aeson base directory filepath ghcide hls-plugin-api lsp text
-         transformers unordered-containers
+         aeson base containers directory filepath ghcide hls-plugin-api lsp
+         text transformers unordered-containers
        ];
        testHaskellDepends = [ base filepath hls-test-utils ];
        description = "Module name plugin for Haskell Language Server";
@@ -144262,63 +148021,67 @@ self: {
      }) {};
 
   "hls-ormolu-plugin" = callPackage
-    ({ mkDerivation, base, filepath, ghc, ghc-boot-th, ghcide
-     , hls-plugin-api, hls-test-utils, lens, lsp, lsp-types, ormolu
+    ({ mkDerivation, base, extra, filepath, ghc, ghc-boot-th, ghcide
+     , hls-plugin-api, hls-test-utils, lens, lsp, lsp-types, mtl, ormolu
      , text
      }:
      mkDerivation {
        pname = "hls-ormolu-plugin";
-       version = "2.0.0.1";
-       sha256 = "0bdcaqcd2k8ha6wvp7w5wda1nsczcawc8n74i11s40r68qq3j0xq";
+       version = "2.1.0.0";
+       sha256 = "0ianjskwbvh3lshp74mwddc3b3k472zn8gpa1fwglhcixv1i4d92";
        libraryHaskellDepends = [
-         base filepath ghc ghc-boot-th ghcide hls-plugin-api lens lsp ormolu
-         text
+         base extra filepath ghc ghc-boot-th ghcide hls-plugin-api lens lsp
+         mtl ormolu text
        ];
        testHaskellDepends = [
-         base filepath hls-test-utils lsp-types ormolu
+         base filepath hls-test-utils lsp-types ormolu text
        ];
        description = "Integration with the Ormolu code formatter";
        license = lib.licenses.asl20;
      }) {};
 
   "hls-overloaded-record-dot-plugin" = callPackage
-    ({ mkDerivation, base, containers, deepseq, filepath, ghc-boot-th
-     , ghcide, hls-graph, hls-plugin-api, hls-test-utils, lens, lsp
-     , lsp-test, syb, text, transformers, unordered-containers
+    ({ mkDerivation, aeson, base, containers, deepseq, filepath
+     , ghc-boot-th, ghcide, hls-graph, hls-plugin-api, hls-test-utils
+     , lens, lsp, lsp-test, lsp-types, row-types, syb, text
+     , transformers, unordered-containers
      }:
      mkDerivation {
        pname = "hls-overloaded-record-dot-plugin";
-       version = "2.0.0.1";
-       sha256 = "1ilmiw0lrd8rkmplwfm6lf5hckjg2ak7x2payr2x90bhhbjzg9fa";
+       version = "2.1.0.0";
+       sha256 = "1x575xdqlynghnirqik6w8mm84jdwlm8wvaigkhhnqw2fqii991i";
        libraryHaskellDepends = [
-         base containers deepseq ghc-boot-th ghcide hls-graph hls-plugin-api
-         lens lsp syb text transformers unordered-containers
+         aeson base containers deepseq ghc-boot-th ghcide hls-graph
+         hls-plugin-api lens lsp syb text transformers unordered-containers
        ];
        testHaskellDepends = [
-         base filepath hls-test-utils lsp-test text
+         base filepath ghcide hls-plugin-api hls-test-utils lens lsp-test
+         lsp-types row-types text
        ];
        description = "Overloaded record dot plugin for Haskell Language Server";
        license = lib.licenses.bsd3;
      }) {};
 
   "hls-plugin-api" = callPackage
-    ({ mkDerivation, aeson, base, containers, criterion, data-default
-     , deepseq, dependent-map, dependent-sum, Diff, dlist, extra
-     , filepath, ghc, hashable, hls-graph, hw-fingertree, lens
-     , lens-aeson, lsp, lsp-types, megaparsec, opentelemetry
-     , optparse-applicative, random, random-fu, regex-tdfa, tasty
-     , tasty-hunit, tasty-quickcheck, tasty-rerun, text, transformers
-     , unix, unordered-containers
+    ({ mkDerivation, aeson, base, co-log-core, containers, criterion
+     , data-default, deepseq, dependent-map, dependent-sum, Diff, dlist
+     , extra, filepath, ghc, hashable, hls-graph, hw-fingertree, lens
+     , lens-aeson, lsp, lsp-types, megaparsec, mtl, opentelemetry
+     , optparse-applicative, prettyprinter, random, random-fu
+     , regex-tdfa, row-types, stm, tasty, tasty-hunit, tasty-quickcheck
+     , tasty-rerun, text, time, transformers, unix, unliftio
+     , unordered-containers
      }:
      mkDerivation {
        pname = "hls-plugin-api";
-       version = "2.0.0.1";
-       sha256 = "1rahsz7yl8vd7wcwag76dmmvnysagn6s6iabijlpp2v7z6kkr5y9";
+       version = "2.1.0.0";
+       sha256 = "0s2pnvakmvahwrxm7mvdrs5gmhds0i3yak6axfw8ng0f139lglhx";
        libraryHaskellDepends = [
-         aeson base containers data-default dependent-map dependent-sum Diff
-         dlist extra filepath ghc hashable hls-graph hw-fingertree lens
-         lens-aeson lsp megaparsec opentelemetry optparse-applicative
-         regex-tdfa text transformers unix unordered-containers
+         aeson base co-log-core containers data-default dependent-map
+         dependent-sum Diff dlist extra filepath ghc hashable hls-graph
+         hw-fingertree lens lens-aeson lsp megaparsec mtl opentelemetry
+         optparse-applicative prettyprinter regex-tdfa row-types stm text
+         time transformers unix unliftio unordered-containers
        ];
        testHaskellDepends = [
          base containers lsp-types tasty tasty-hunit tasty-quickcheck
@@ -144332,20 +148095,20 @@ self: {
      }) {};
 
   "hls-pragmas-plugin" = callPackage
-    ({ mkDerivation, base, containers, extra, filepath, fuzzy, ghc
-     , ghcide, hls-plugin-api, hls-test-utils, lens, lsp, lsp-types
+    ({ mkDerivation, aeson, base, containers, extra, filepath, fuzzy
+     , ghc, ghcide, hls-plugin-api, hls-test-utils, lens, lsp, lsp-types
      , text, transformers, unordered-containers
      }:
      mkDerivation {
        pname = "hls-pragmas-plugin";
-       version = "2.0.0.1";
-       sha256 = "1mgq746zz4v348218qn4cifjcxm85a6zxzizhzanpv3xg15g30m4";
+       version = "2.1.0.0";
+       sha256 = "1ny20jpzf7qhvc80pz80drjpkljr07nbriy5f9nfd5izhdkdbjp6";
        libraryHaskellDepends = [
          base containers extra fuzzy ghc ghcide hls-plugin-api lens lsp text
          transformers unordered-containers
        ];
        testHaskellDepends = [
-         base filepath hls-test-utils lens lsp-types text
+         aeson base filepath hls-test-utils lens lsp-types text
        ];
        description = "Pragmas plugin for Haskell Language Server";
        license = lib.licenses.asl20;
@@ -144353,16 +148116,16 @@ self: {
 
   "hls-qualify-imported-names-plugin" = callPackage
     ({ mkDerivation, aeson, base, containers, deepseq, dlist, filepath
-     , ghc, ghcide, hls-graph, hls-plugin-api, hls-test-utils, lsp, text
-     , transformers, unordered-containers
+     , ghc, ghcide, hls-graph, hls-plugin-api, hls-test-utils, lens, lsp
+     , text, transformers, unordered-containers
      }:
      mkDerivation {
        pname = "hls-qualify-imported-names-plugin";
-       version = "2.0.0.1";
-       sha256 = "0ra3r31b0f5g38fwxm1j7bljwph00c7r963fn1py7g9ib2rv476k";
+       version = "2.1.0.0";
+       sha256 = "1lcc2ga264p79shd26rpl961rqr583p4ncgb38f1wx6c6jl7r251";
        libraryHaskellDepends = [
          aeson base containers deepseq dlist ghc ghcide hls-graph
-         hls-plugin-api lsp text transformers unordered-containers
+         hls-plugin-api lens lsp text transformers unordered-containers
        ];
        testHaskellDepends = [ base filepath hls-test-utils text ];
        description = "A Haskell Language Server plugin that qualifies imported names";
@@ -144374,19 +148137,20 @@ self: {
      , data-default, deepseq, directory, dlist, extra, filepath, ghc
      , ghc-boot, ghc-exactprint, ghcide, ghcide-test-utils, hls-graph
      , hls-plugin-api, hls-test-utils, lens, lsp, lsp-test, lsp-types
-     , mtl, network-uri, parser-combinators, regex-tdfa, retrie, shake
-     , syb, tasty, tasty-expected-failure, tasty-hunit, tasty-rerun
-     , text, text-rope, time, transformers, unordered-containers
+     , mtl, network-uri, parser-combinators, regex-applicative
+     , regex-tdfa, retrie, shake, syb, tasty, tasty-expected-failure
+     , tasty-hunit, tasty-rerun, text, text-rope, time, transformers
+     , unordered-containers
      }:
      mkDerivation {
        pname = "hls-refactor-plugin";
-       version = "2.0.0.1";
-       sha256 = "0ww7ijagiy4lyhsp5ljph09s6mixc0jyh7794cgmbxvwgc4nv89p";
+       version = "2.1.0.0";
+       sha256 = "0v96fgsx2hh45xiby0q9jxg2px927v7rynl4qq0mcrsidfwrwaqd";
        libraryHaskellDepends = [
          aeson base bytestring containers data-default deepseq dlist extra
          ghc ghc-boot ghc-exactprint ghcide hls-graph hls-plugin-api lens
-         lsp mtl regex-tdfa retrie syb text text-rope time transformers
-         unordered-containers
+         lsp mtl parser-combinators regex-applicative regex-tdfa retrie syb
+         text text-rope time transformers unordered-containers
        ];
        testHaskellDepends = [
          aeson async base containers data-default directory extra filepath
@@ -144415,22 +148179,25 @@ self: {
        testHaskellDepends = [ base filepath hls-test-utils text ];
        description = "Refine imports plugin for Haskell Language Server";
        license = lib.licenses.asl20;
+       hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "hls-rename-plugin" = callPackage
     ({ mkDerivation, aeson, base, containers, extra, filepath, ghc
      , ghc-exactprint, ghcide, hashable, hie-compat, hiedb
-     , hls-plugin-api, hls-refactor-plugin, hls-test-utils, lsp
-     , lsp-types, mod, syb, text, transformers, unordered-containers
+     , hls-plugin-api, hls-refactor-plugin, hls-test-utils, lens, lsp
+     , lsp-types, mod, mtl, syb, text, transformers
+     , unordered-containers
      }:
      mkDerivation {
        pname = "hls-rename-plugin";
-       version = "2.0.0.1";
-       sha256 = "0b3c7h151rn9awkjc0iq2fnir3g9kvj79b4mdigrarzi8g695agn";
+       version = "2.1.0.0";
+       sha256 = "07bnc1d05hd8pjwxgxhrkrxaiqg2f082vzvh0c942ri2knpf6f2g";
        libraryHaskellDepends = [
          base containers extra ghc ghc-exactprint ghcide hashable hie-compat
-         hiedb hls-plugin-api hls-refactor-plugin lsp lsp-types mod syb text
-         transformers unordered-containers
+         hiedb hls-plugin-api hls-refactor-plugin lens lsp lsp-types mod mtl
+         syb text transformers unordered-containers
        ];
        testHaskellDepends = [
          aeson base containers filepath hls-plugin-api hls-test-utils
@@ -144442,17 +148209,18 @@ self: {
   "hls-retrie-plugin" = callPackage
     ({ mkDerivation, aeson, base, bytestring, containers, deepseq
      , directory, extra, filepath, ghc, ghcide, hashable, hls-plugin-api
-     , hls-refactor-plugin, hls-test-utils, lsp, lsp-types, retrie
-     , safe-exceptions, stm, text, transformers, unordered-containers
+     , hls-refactor-plugin, hls-test-utils, lens, lsp, lsp-types, mtl
+     , retrie, safe-exceptions, stm, text, transformers
+     , unordered-containers
      }:
      mkDerivation {
        pname = "hls-retrie-plugin";
-       version = "2.0.0.1";
-       sha256 = "0rq49n8ryp8x1jk9lwm2lcih0kx8lc0snlmclp6jky503n33vkf8";
+       version = "2.1.0.0";
+       sha256 = "1lq1bb73cp8sp846ib3apynk6iy3v1qn47hlj8spiq4lx7wa2an9";
        libraryHaskellDepends = [
          aeson base bytestring containers deepseq directory extra ghc ghcide
-         hashable hls-plugin-api hls-refactor-plugin lsp lsp-types retrie
-         safe-exceptions stm text transformers unordered-containers
+         hashable hls-plugin-api hls-refactor-plugin lens lsp lsp-types mtl
+         retrie safe-exceptions stm text transformers unordered-containers
        ];
        testHaskellDepends = [
          aeson base containers filepath hls-plugin-api hls-refactor-plugin
@@ -144490,19 +148258,22 @@ self: {
   "hls-splice-plugin" = callPackage
     ({ mkDerivation, aeson, base, containers, dlist, extra, filepath
      , foldl, ghc, ghc-exactprint, ghcide, hls-plugin-api
-     , hls-refactor-plugin, hls-test-utils, lens, lsp, retrie, syb, text
-     , transformers, unliftio-core, unordered-containers
+     , hls-refactor-plugin, hls-test-utils, lens, lsp, mtl, retrie
+     , row-types, syb, text, transformers, unliftio-core
+     , unordered-containers
      }:
      mkDerivation {
        pname = "hls-splice-plugin";
-       version = "2.0.0.1";
-       sha256 = "0scjc5rd01ns8ifyscvzlxsb6r307j9p2cv8d77vh0akm6jrjiq3";
+       version = "2.1.0.0";
+       sha256 = "03b4l49g8c3z45c3my0b50m0960snip17w3p3r6wa04afm9r6g6f";
        libraryHaskellDepends = [
          aeson base containers dlist extra foldl ghc ghc-exactprint ghcide
-         hls-plugin-api hls-refactor-plugin lens lsp retrie syb text
+         hls-plugin-api hls-refactor-plugin lens lsp mtl retrie syb text
          transformers unliftio-core unordered-containers
        ];
-       testHaskellDepends = [ base filepath hls-test-utils text ];
+       testHaskellDepends = [
+         base filepath hls-test-utils row-types text
+       ];
        description = "HLS Plugin to expand TemplateHaskell Splices and QuasiQuotes";
        license = lib.licenses.asl20;
      }) {};
@@ -144511,8 +148282,8 @@ self: {
     ({ mkDerivation }:
      mkDerivation {
        pname = "hls-stan-plugin";
-       version = "2.0.0.1";
-       sha256 = "12100gj5hiqsjx71syww45nv4pnrhq0a1zhpmh2ac1kslgdajij1";
+       version = "2.1.0.0";
+       sha256 = "0azlvn5mibmsj3w5pwfkgaydji58bb88bvhzyc49y7gzg24cm23s";
        description = "Stan integration plugin with Haskell Language Server";
        license = lib.licenses.asl20;
        hydraPlatforms = lib.platforms.none;
@@ -144521,16 +148292,16 @@ self: {
 
   "hls-stylish-haskell-plugin" = callPackage
     ({ mkDerivation, base, directory, filepath, ghc, ghc-boot-th
-     , ghcide, hls-plugin-api, hls-test-utils, lsp-types
+     , ghcide, hls-plugin-api, hls-test-utils, lsp-types, mtl
      , stylish-haskell, text
      }:
      mkDerivation {
        pname = "hls-stylish-haskell-plugin";
-       version = "2.0.0.1";
-       sha256 = "0g2gpldgd9g9mpxnzbi5amsl9v277n2wdn1yd4bammq5dc80prvz";
+       version = "2.1.0.0";
+       sha256 = "025g6laxsffdp5alvilpq71slqkybwfak5ayr3m8h2ymylhf4vy3";
        libraryHaskellDepends = [
          base directory filepath ghc ghc-boot-th ghcide hls-plugin-api
-         lsp-types stylish-haskell text
+         lsp-types mtl stylish-haskell text
        ];
        testHaskellDepends = [ base filepath hls-test-utils ];
        description = "Integration with the Stylish Haskell code formatter";
@@ -144541,8 +148312,8 @@ self: {
     ({ mkDerivation }:
      mkDerivation {
        pname = "hls-tactics-plugin";
-       version = "2.0.0.1";
-       sha256 = "0kzyjsgc4j03ayjq79nd3kkv8x3nf0c9wk12m0fix0ik9fr35idh";
+       version = "2.1.0.0";
+       sha256 = "0mry1y7p26lraina8ynsrnm441wprrrp4wcl5ys6xs6z860kxaqf";
        description = "Wingman plugin for Haskell Language Server";
        license = lib.licenses.asl20;
        hydraPlatforms = lib.platforms.none;
@@ -144552,19 +148323,20 @@ self: {
   "hls-test-utils" = callPackage
     ({ mkDerivation, aeson, async, base, blaze-markup, bytestring
      , containers, data-default, directory, extra, filepath, ghcide
-     , hls-graph, hls-plugin-api, lens, lsp, lsp-test, lsp-types, tasty
-     , tasty-expected-failure, tasty-golden, tasty-hunit, tasty-rerun
-     , temporary, text, unordered-containers
+     , hls-graph, hls-plugin-api, lens, lsp, lsp-test, lsp-types
+     , row-types, tasty, tasty-expected-failure, tasty-golden
+     , tasty-hunit, tasty-rerun, temporary, text, unordered-containers
      }:
      mkDerivation {
        pname = "hls-test-utils";
-       version = "2.0.0.1";
-       sha256 = "0s2418lv3kg5zs8zr4a1j90503c6alcpr6q5d7cs6ravdq6s0qvi";
+       version = "2.1.0.0";
+       sha256 = "1dmnbnlz4yk8w1ln6dc2gqv10gsjb8mkzv89lv3h3vc5q6pqimpw";
        libraryHaskellDepends = [
          aeson async base blaze-markup bytestring containers data-default
          directory extra filepath ghcide hls-graph hls-plugin-api lens lsp
-         lsp-test lsp-types tasty tasty-expected-failure tasty-golden
-         tasty-hunit tasty-rerun temporary text unordered-containers
+         lsp-test lsp-types row-types tasty tasty-expected-failure
+         tasty-golden tasty-hunit tasty-rerun temporary text
+         unordered-containers
        ];
        description = "Utilities used in the tests of Haskell Language Server";
        license = lib.licenses.asl20;
@@ -144680,7 +148452,6 @@ self: {
        ];
        description = "hmatrix operations lifted for backprop";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "hmatrix-banded" = callPackage
@@ -145159,7 +148930,6 @@ self: {
        doHaddock = false;
        description = "Hidden Markov Models using LAPACK primitives";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        maintainers = [ lib.maintainers.thielema ];
      }) {};
 
@@ -145326,7 +149096,6 @@ self: {
        description = "Haskell NetCDF library";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {inherit (pkgs) netcdf;};
 
   "hnix" = callPackage
@@ -145608,6 +149377,7 @@ self: {
        description = "Generic rewrite rules with safe treatment of variables and binders";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "hoauth" = callPackage
@@ -147149,6 +150919,7 @@ self: {
        description = "Generate nix expressions from horizon-spec definitions";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "horizon-spec" = callPackage
@@ -147165,8 +150936,6 @@ self: {
        ];
        description = "Horizon Stable Package Set Type Definitions";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "horizon-spec-lens" = callPackage
@@ -147179,6 +150948,7 @@ self: {
        description = "Horizon Stable Package Set Lenses";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "horizon-spec-pretty" = callPackage
@@ -147195,6 +150965,7 @@ self: {
        description = "Horizon Stable Package Set Pretty Printer";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "horizontal-rule" = callPackage
@@ -147214,7 +150985,6 @@ self: {
        testHaskellDepends = [ base HMock tasty tasty-hunit ];
        description = "horizontal rule for the terminal";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "hr";
      }) {};
 
@@ -147619,7 +151389,7 @@ self: {
        mainProgram = "hpack";
      }) {};
 
-  "hpack_0_35_3" = callPackage
+  "hpack_0_35_4" = callPackage
     ({ mkDerivation, aeson, base, bifunctors, bytestring, Cabal
      , containers, crypton, deepseq, directory, filepath, Glob, hspec
      , hspec-discover, http-client, http-client-tls, http-types, HUnit
@@ -147629,8 +151399,8 @@ self: {
      }:
      mkDerivation {
        pname = "hpack";
-       version = "0.35.3";
-       sha256 = "1kh5v2hj4y3f73hjcqxr4q60cbva4lmi43iahrrnhj789h5b5k94";
+       version = "0.35.4";
+       sha256 = "13zz10c3nc9lfr6n7xjb4j05vin9r3mg1aribpz26sx6y83lpy7y";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -147890,7 +151660,6 @@ self: {
        description = "Alternative to 'directory' package with ByteString based filepaths";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "hpath-filepath" = callPackage
@@ -147933,14 +151702,14 @@ self: {
        license = lib.licenses.bsd3;
      }) {};
 
-  "hpc_0_6_2_0" = callPackage
+  "hpc_0_7_0_0" = callPackage
     ({ mkDerivation, base, containers, deepseq, directory, filepath
      , time
      }:
      mkDerivation {
        pname = "hpc";
-       version = "0.6.2.0";
-       sha256 = "0igq0x3hsdfh4sw40ac8ld5xmsdqxykfz1jmzmwf142za6q7k964";
+       version = "0.7.0.0";
+       sha256 = "0y3d43r4wl07w9wl6fgrnmpi0lpv0ai61r4wb3cmnx2divqmm3q0";
        libraryHaskellDepends = [
          base containers deepseq directory filepath time
        ];
@@ -148409,9 +152178,7 @@ self: {
        ];
        description = "a lightweight HTTP proxy server, and more";
        license = lib.licenses.asl20;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "hprox";
-       broken = true;
      }) {};
 
   "hps" = callPackage
@@ -149370,9 +153137,7 @@ self: {
        executableHaskellDepends = [ base containers emojis text ];
        description = "The OpenMoji emoji dataset";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "readme";
-       broken = true;
      }) {};
 
   "hs-opentelemetry-api" = callPackage
@@ -150391,6 +154156,7 @@ self: {
        description = "OASIS Security Assertion Markup Language (SAML) V2.0";
        license = lib.licenses.asl20;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {inherit (pkgs) libxml2;};
 
   "hsass" = callPackage
@@ -150632,8 +154398,6 @@ self: {
        ];
        description = "Haskell SuperCollider";
        license = lib.licenses.gpl3Only;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "hsc3-auditor" = callPackage
@@ -150663,6 +154427,7 @@ self: {
        description = "haskell supercollider cairo drawing";
        license = "GPL";
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "hsc3-data" = callPackage
@@ -150694,6 +154459,7 @@ self: {
        description = "Haskell SuperCollider Unit Generator Database";
        license = "GPL";
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "hsc3-dot" = callPackage
@@ -150707,6 +154473,7 @@ self: {
        description = "haskell supercollider graph drawing";
        license = "GPL";
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "hsc3-forth" = callPackage
@@ -150775,6 +154542,7 @@ self: {
        description = "Haskell SuperCollider Language";
        license = "GPL";
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "hsc3-lisp" = callPackage
@@ -150834,6 +154602,7 @@ self: {
        description = "Create and control scsynth processes";
        license = "GPL";
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "hsc3-rec" = callPackage
@@ -150847,6 +154616,7 @@ self: {
        description = "Haskell SuperCollider Record Variants";
        license = "GPL";
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "hsc3-rw" = callPackage
@@ -150937,6 +154707,7 @@ self: {
        description = "Unsafe Haskell SuperCollider";
        license = "GPL";
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "hsc3-utils" = callPackage
@@ -151803,43 +155574,19 @@ self: {
      }) {};
 
   "hsini" = callPackage
-    ({ mkDerivation, base, bytestring, containers, mtl, parsec, tasty
-     , tasty-hunit, tasty-quickcheck, tasty-th
-     }:
-     mkDerivation {
-       pname = "hsini";
-       version = "0.5.1.2";
-       sha256 = "1r6qksnrmk18ndxs5zaga8b7kvmk34kp0kh5hwqmq797qrlax9pa";
-       revision = "3";
-       editedCabalFile = "0wkx1syrx45ivs9lqhh7wfzwr1a0a3fq3km83amvl2a877yaqrjm";
-       libraryHaskellDepends = [ base bytestring containers mtl parsec ];
-       testHaskellDepends = [
-         base bytestring containers mtl parsec tasty tasty-hunit
-         tasty-quickcheck tasty-th
-       ];
-       description = "ini configuration files";
-       license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
-     }) {};
-
-  "hsini_0_5_2" = callPackage
-    ({ mkDerivation, base, bytestring, containers, mtl, parsec, tasty
-     , tasty-hunit, tasty-quickcheck, tasty-th
+    ({ mkDerivation, base, containers, mtl, parsec, tasty, tasty-hunit
+     , tasty-quickcheck, tasty-th
      }:
      mkDerivation {
        pname = "hsini";
-       version = "0.5.2";
-       sha256 = "14mybpf6qkcwrji9j2bvajqfb4p3ybi3n8rvblggpxd9fvm5gak2";
-       libraryHaskellDepends = [ base bytestring containers mtl parsec ];
+       version = "0.5.2.1";
+       sha256 = "1j4kcmqx4cq0zjimdn1fvm7a26phwl95bh405d68n5qc2qmncyyb";
+       libraryHaskellDepends = [ base containers mtl parsec ];
        testHaskellDepends = [
-         base bytestring containers mtl parsec tasty tasty-hunit
-         tasty-quickcheck tasty-th
+         base parsec tasty tasty-hunit tasty-quickcheck tasty-th
        ];
        description = "ini configuration files";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "hsinspect" = callPackage
@@ -151862,9 +155609,7 @@ self: {
        ];
        description = "Inspect Haskell source files";
        license = lib.licenses.gpl3Plus;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "hsinspect";
-       broken = true;
      }) {};
 
   "hsinspect-lsp" = callPackage
@@ -151994,8 +155739,8 @@ self: {
        pname = "hslogger";
        version = "1.3.1.0";
        sha256 = "0nyar9xcblx5jwks85y8f4jfy9k1h4ss6rvj4mdbiidrq3v688vz";
-       revision = "7";
-       editedCabalFile = "1jvh7zs0a2n47785bpq9bf3nba0gvbbvhhq1ban87prlhr0j3r2k";
+       revision = "8";
+       editedCabalFile = "10lqpvvg1fsv69v8v4nynwimln1flhd32d173pgpywmniaf40yy7";
        libraryHaskellDepends = [
          base bytestring containers deepseq network network-bsd old-locale
          time unix
@@ -152198,8 +155943,6 @@ self: {
        executableHaskellDepends = [ base bytestring hslua lua text ];
        description = "Examples of how to combine Haskell and Lua";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "hslua-list" = callPackage
@@ -152767,7 +156510,6 @@ self: {
        description = "A SPARQL query generator and DSL, and a client to query a SPARQL server";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "hspear" = callPackage
@@ -153112,17 +156854,17 @@ self: {
 
   "hspec-expectations-json" = callPackage
     ({ mkDerivation, aeson, aeson-pretty, aeson-qq, base, Diff, hspec
-     , HUnit, scientific, text, unordered-containers, vector
+     , HUnit, QuickCheck, scientific, text, unordered-containers, vector
      }:
      mkDerivation {
        pname = "hspec-expectations-json";
-       version = "1.0.0.7";
-       sha256 = "0042xf11w74bx7mlly2ca98778jqyb4p2l9iy92gyys85zn5219v";
+       version = "1.0.2.0";
+       sha256 = "0vl5brjbvjdbv2i4zq2ww7l0gg11l0ssmr4m7xqdn7as2798q1q1";
        libraryHaskellDepends = [
          aeson aeson-pretty base Diff HUnit scientific text
          unordered-containers vector
        ];
-       testHaskellDepends = [ aeson-qq base hspec ];
+       testHaskellDepends = [ aeson aeson-qq base hspec QuickCheck ];
        description = "Hspec expectations for JSON Values";
        license = lib.licenses.mit;
      }) {};
@@ -153675,7 +157417,6 @@ self: {
        description = "A library for testing with Hspec and the Snap Web Framework";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "hspec-stack-rerun" = callPackage
@@ -153840,8 +157581,6 @@ self: {
        ];
        description = "Write end2end web application tests using webdriver and hspec";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "hspec2" = callPackage
@@ -154899,6 +158638,7 @@ self: {
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "htar";
+       broken = true;
      }) {};
 
   "htaut" = callPackage
@@ -155825,6 +159565,23 @@ self: {
        license = lib.licenses.mit;
      }) {};
 
+  "http-client-restricted_0_1_0" = callPackage
+    ({ mkDerivation, base, crypton-connection, data-default
+     , http-client, http-client-tls, network, network-bsd, utf8-string
+     }:
+     mkDerivation {
+       pname = "http-client-restricted";
+       version = "0.1.0";
+       sha256 = "12rzkzqgv32rw0z1m38d0mi5dbdn07j3myqp3wfdqfaygib0a6i4";
+       libraryHaskellDepends = [
+         base crypton-connection data-default http-client http-client-tls
+         network network-bsd utf8-string
+       ];
+       description = "restricting the servers that http-client will use";
+       license = lib.licenses.mit;
+       hydraPlatforms = lib.platforms.none;
+     }) {};
+
   "http-client-rustls" = callPackage
     ({ mkDerivation, base, bytestring, directory, filepath, http-client
      , http-types, network, port-utils, process, resourcet, rustls
@@ -155907,7 +159664,7 @@ self: {
        license = lib.licenses.mit;
      }) {};
 
-  "http-client-tls_0_3_6_2" = callPackage
+  "http-client-tls_0_3_6_3" = callPackage
     ({ mkDerivation, base, bytestring, case-insensitive, containers
      , crypton, crypton-connection, data-default-class, exceptions
      , gauge, hspec, http-client, http-types, memory, network
@@ -155915,14 +159672,16 @@ self: {
      }:
      mkDerivation {
        pname = "http-client-tls";
-       version = "0.3.6.2";
-       sha256 = "19mbjh1rh46zmra4s7ybqvmwffmp3z5x7xlw9hsv55rbxsz8whr8";
+       version = "0.3.6.3";
+       sha256 = "15chmlnq0nk2kxhk65r9xdjkzl94k0axcml89a5qkdiffwyzrp1q";
        libraryHaskellDepends = [
          base bytestring case-insensitive containers crypton
          crypton-connection data-default-class exceptions http-client
          http-types memory network network-uri text tls transformers
        ];
-       testHaskellDepends = [ base hspec http-client http-types ];
+       testHaskellDepends = [
+         base crypton-connection hspec http-client http-types
+       ];
        benchmarkHaskellDepends = [ base gauge http-client ];
        doCheck = false;
        description = "http-client backend using the connection package and tls library";
@@ -156154,6 +159913,32 @@ self: {
        license = lib.licenses.bsd3;
      }) {};
 
+  "http-download_0_2_1_0" = callPackage
+    ({ mkDerivation, base, base64-bytestring, bytestring, conduit
+     , conduit-extra, crypton, crypton-conduit, directory, exceptions
+     , filepath, hspec, hspec-discover, http-client, http-conduit
+     , http-types, memory, path, path-io, retry, rio, rio-prettyprint
+     }:
+     mkDerivation {
+       pname = "http-download";
+       version = "0.2.1.0";
+       sha256 = "09689xpjw0r66x6239ncpcjpxpjyl6jp8pg3zwmridp80fnx5ph5";
+       libraryHaskellDepends = [
+         base base64-bytestring bytestring conduit conduit-extra crypton
+         crypton-conduit directory exceptions filepath http-client
+         http-conduit http-types memory path path-io retry rio
+         rio-prettyprint
+       ];
+       testHaskellDepends = [
+         base crypton hspec hspec-discover http-client path path-io retry
+         rio rio-prettyprint
+       ];
+       testToolDepends = [ hspec-discover ];
+       description = "Verified downloads with retries";
+       license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
+     }) {};
+
   "http-encodings" = callPackage
     ({ mkDerivation, base, bytestring, HTTP, iconv, mime, mtl, parsec
      , text, utf8-string, zlib
@@ -156211,6 +159996,28 @@ self: {
        broken = true;
      }) {};
 
+  "http-interchange" = callPackage
+    ({ mkDerivation, aeson, base, bytebuild, byteslice, bytesmith
+     , bytestring, contiguous, filepath, pretty-show, primitive, tasty
+     , tasty-golden, text
+     }:
+     mkDerivation {
+       pname = "http-interchange";
+       version = "0.3.1.0";
+       sha256 = "1qz7ims2n51db6lcv4lg22z0w36abgn9yzpqc7jd438xlc40j137";
+       libraryHaskellDepends = [
+         base bytebuild byteslice bytesmith contiguous primitive text
+       ];
+       testHaskellDepends = [
+         aeson base byteslice bytestring filepath pretty-show primitive
+         tasty tasty-golden
+       ];
+       description = "Types and serialization for HTTP";
+       license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
+       broken = true;
+     }) {};
+
   "http-io-streams" = callPackage
     ({ mkDerivation, aeson, aeson-pretty, attoparsec, base
      , base64-bytestring, binary, blaze-builder, brotli-streams
@@ -156242,6 +160049,7 @@ self: {
        ];
        description = "HTTP and WebSocket client based on io-streams";
        license = "BSD-3-Clause AND GPL-2.0-or-later";
+       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "http-kinder" = callPackage
@@ -156389,8 +160197,6 @@ self: {
        ];
        description = "Monad abstraction for HTTP allowing lazy transfer and non-I/O simulation";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "http-pony" = callPackage
@@ -156555,7 +160361,6 @@ self: {
        description = "Declarative DSL for parsing an HTTP response";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "http-reverse-proxy" = callPackage
@@ -156736,6 +160541,41 @@ self: {
        broken = true;
      }) {};
 
+  "http2_3_0_3" = callPackage
+    ({ mkDerivation, aeson, aeson-pretty, array, async, base
+     , base16-bytestring, bytestring, case-insensitive, containers
+     , cryptonite, directory, filepath, gauge, Glob, heaps, hspec
+     , hspec-discover, http-types, mwc-random, network
+     , network-byte-order, network-run, psqueues, stm, text
+     , time-manager, typed-process, unix-time, unordered-containers
+     , vector
+     }:
+     mkDerivation {
+       pname = "http2";
+       version = "3.0.3";
+       sha256 = "1kv99i3pnnx31xndlkaczrpd2j5mvzbqlfz1kaw6cwlwkdnl5bhv";
+       isLibrary = true;
+       isExecutable = true;
+       libraryHaskellDepends = [
+         array async base bytestring case-insensitive containers http-types
+         network network-byte-order psqueues stm time-manager unix-time
+       ];
+       testHaskellDepends = [
+         aeson aeson-pretty async base base16-bytestring bytestring
+         cryptonite directory filepath Glob hspec http-types network
+         network-byte-order network-run text typed-process
+         unordered-containers vector
+       ];
+       testToolDepends = [ hspec-discover ];
+       benchmarkHaskellDepends = [
+         array base bytestring case-insensitive containers gauge heaps
+         mwc-random network-byte-order psqueues stm
+       ];
+       description = "HTTP/2 library";
+       license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
+     }) {};
+
   "http2" = callPackage
     ({ mkDerivation, aeson, aeson-pretty, array, async, base
      , base16-bytestring, bytestring, case-insensitive, containers
@@ -156810,7 +160650,6 @@ self: {
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "http2-client-exe";
-       broken = true;
      }) {};
 
   "http2-client-grpc" = callPackage
@@ -156891,14 +160730,16 @@ self: {
      }:
      mkDerivation {
        pname = "http2-tls";
-       version = "0.0.0";
-       sha256 = "0grd4i90wpdrd8k0dvm56hzfc2pncx0hjfy7678v9w8r524rbcqh";
+       version = "0.0.1";
+       sha256 = "104qqirzg4q3gy4qw8d0mhp94xiavzzr6ziwnwjc1xm1zv8m37nb";
        libraryHaskellDepends = [
          base bytestring data-default-class http2 network network-run recv
          time-manager tls unliftio
        ];
        description = "Library for HTTP/2 over TLS";
        license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "http3" = callPackage
@@ -156927,7 +160768,6 @@ self: {
        description = "HTTP/3 library";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "httpd-shed" = callPackage
@@ -157033,6 +160873,7 @@ self: {
        executableHaskellDepends = [ alsa-pcm base carray fft gloss ];
        description = "harmonic analyser and tuner for musical instruments";
        license = lib.licenses.bsd3;
+       platforms = lib.platforms.linux;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "htune";
        broken = true;
@@ -157638,8 +161479,6 @@ self: {
        ];
        description = "Haskell URL resolver";
        license = lib.licenses.gpl3Only;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "hurl-xml" = callPackage
@@ -158393,7 +162232,6 @@ self: {
        description = "Memory efficient JSON parser";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "hw-json-lens" = callPackage
@@ -158424,7 +162262,6 @@ self: {
        description = "Lens for hw-json";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "hw-json-simd" = callPackage
@@ -158580,15 +162417,15 @@ self: {
        license = lib.licenses.mit;
      }) {inherit (pkgs) rdkafka;};
 
-  "hw-kafka-client_5_0_0" = callPackage
+  "hw-kafka-client_5_3_0" = callPackage
     ({ mkDerivation, base, bifunctors, bytestring, c2hs, containers
      , either, hspec, hspec-discover, monad-loops, rdkafka, text
      , transformers, unix
      }:
      mkDerivation {
        pname = "hw-kafka-client";
-       version = "5.0.0";
-       sha256 = "1w0c80pn43xg4rrmwwq37yya96fil124sdly9djjnxm1g0brwjz6";
+       version = "5.3.0";
+       sha256 = "0cs7pvp1fvh8k52x2qln7skynpbg9h71p83fgr7wbjf4xx0fs994";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -158757,6 +162594,8 @@ self: {
        pname = "hw-prim";
        version = "0.6.3.2";
        sha256 = "07a442g1fjzrfnz3y9mx3d2hv0ffjnbfdkmbiard8bn78vf5z80z";
+       revision = "1";
+       editedCabalFile = "1wga8ghc001lz9y76ffrdrpqkxpj1lz7qpkykfl66lsqf5pvng32";
        libraryHaskellDepends = [
          base bytestring deepseq ghc-prim mmap transformers unliftio-core
          vector
@@ -159741,10 +163580,10 @@ self: {
     ({ mkDerivation, base, deepseq, primitive, semigroups, vector }:
      mkDerivation {
        pname = "hybrid-vectors";
-       version = "0.2.3";
-       sha256 = "0g3z482sd0j930ja3g9cyc4xnjby03d4cq8x56crsl61arr81r1c";
+       version = "0.2.4";
+       sha256 = "02sxx9263b9z4q9xh8d2mhg3g6mihydhzn7rjvpi3gp4bld2hg9m";
        revision = "1";
-       editedCabalFile = "0w0kajygmrbwds5cmfkvk50x51msds61cia3kch3q8rfvdc0v9gl";
+       editedCabalFile = "023f8i8110nm051wi372b9m21lpkxmdp0zp37fmimama9yv8rmxl";
        libraryHaskellDepends = [
          base deepseq primitive semigroups vector
        ];
@@ -160107,8 +163946,6 @@ self: {
        libraryHaskellDepends = [ base blaze-html deepseq text ];
        description = "Display class for the HyperHaskell graphical Haskell interpreter";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "hyper-extra" = callPackage
@@ -160125,6 +163962,7 @@ self: {
        description = "Display instances for the HyperHaskell graphical Haskell interpreter";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "hyper-haskell-server" = callPackage
@@ -160146,6 +163984,7 @@ self: {
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "hyper-haskell-server";
+       broken = true;
      }) {};
 
   "hyperdrive" = callPackage
@@ -160250,8 +164089,8 @@ self: {
        pname = "hyperloglog";
        version = "0.4.6";
        sha256 = "0zwg4dhgasa9sx7pbjjjb9kz2bnhb3r2daij2b572cszv65l91nv";
-       revision = "3";
-       editedCabalFile = "12gq3v5xpw8rn0hr7kqc4ji7byw675mnhjawlvmz6d2hr8hdrcmd";
+       revision = "4";
+       editedCabalFile = "0bw7bj4kq7nsmzsmiwngg32zhjfpcy1zmzpslp9h0i1m12hxh4c9";
        libraryHaskellDepends = [
          approximate base binary bits bytes bytestring cereal cereal-vector
          comonad cpu deepseq distributive hashable lens reflection
@@ -160316,32 +164155,28 @@ self: {
   "hypertypes" = callPackage
     ({ mkDerivation, array, base, base-compat, binary, constraints
      , containers, criterion, deepseq, generic-constraints, generic-data
-     , lattices, lens, monad-st, mtl, pretty, QuickCheck
-     , show-combinators, template-haskell, text, th-abstraction
-     , transformers
+     , lattices, lens, monad-st, mtl, pretty, show-combinators, tasty
+     , tasty-hunit, template-haskell, text, th-abstraction, transformers
      }:
      mkDerivation {
        pname = "hypertypes";
-       version = "0.1.0.2";
-       sha256 = "1zh10884a2fvj06ndh4hz2vk97x4nibr57b30kgq731x4q50zgfs";
+       version = "0.2.2";
+       sha256 = "1xnhrrd114hbzg6nvlzz0kkhs8y3f62dzi2yllk5x52588ik7dlj";
        libraryHaskellDepends = [
          array base base-compat binary constraints containers deepseq
          generic-constraints generic-data lattices lens monad-st mtl pretty
-         QuickCheck show-combinators template-haskell th-abstraction
-         transformers
+         show-combinators template-haskell th-abstraction transformers
        ];
        testHaskellDepends = [
          base constraints containers generic-constraints generic-data
-         lattices lens monad-st mtl pretty text transformers
+         lattices lens monad-st mtl pretty tasty tasty-hunit text
        ];
        benchmarkHaskellDepends = [
          base constraints containers criterion generic-constraints
-         generic-data lattices lens monad-st mtl pretty transformers
+         generic-data lattices lens monad-st mtl pretty
        ];
        description = "Typed ASTs";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "hyphenate" = callPackage
@@ -160841,6 +164676,8 @@ self: {
        pname = "iconv";
        version = "0.4.1.3";
        sha256 = "0m5m0ph5im443xcz60wm1zp98bnmf8l1b5gfllxwhjriwdl52hin";
+       revision = "1";
+       editedCabalFile = "001p7djangjm0d6fm3c7pfiw9w95a3dfipd3iaac42zk9bp6plsf";
        libraryHaskellDepends = [ base bytestring ];
        description = "String encoding conversion";
        license = lib.licenses.bsd3;
@@ -161349,15 +165186,13 @@ self: {
     ({ mkDerivation, base, ghc, ghc-tcplugin-api }:
      mkDerivation {
        pname = "if-instance";
-       version = "0.3.1.0";
-       sha256 = "112f1nz684wdsmbg5srizb4j9lizrfwgdzm1fpyb5vsbj3ib0fh9";
+       version = "0.4.0.0";
+       sha256 = "09q3l2fz2ym89cpah6gm3db47i2m7cwzz0wgz2c6sfycxfq6vzp8";
        libraryHaskellDepends = [ base ghc ghc-tcplugin-api ];
        testHaskellDepends = [ base ghc ];
        doHaddock = false;
        description = "Branch on whether a constraint is satisfied";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "ifcxt" = callPackage
@@ -161872,8 +165707,8 @@ self: {
        pname = "ilist";
        version = "0.4.0.1";
        sha256 = "016wa9n4glxcyvbifvfz2khk9i1i5wzfyl952vp1fhwpjrr8aj04";
-       revision = "2";
-       editedCabalFile = "0iq78rqv6w6vir85p921sawbvkn8lrlhfqd5yx4j2laljcmg2isr";
+       revision = "3";
+       editedCabalFile = "04c1cwli9bbh293ag8ak24lpdgqwpq19dbk2axf30byhygx1jq0j";
        libraryHaskellDepends = [ base ];
        testHaskellDepends = [ base hspec transformers ];
        benchmarkHaskellDepends = [
@@ -161881,8 +165716,6 @@ self: {
        ];
        description = "Optimised list functions for doing index-related things";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "illuminate" = callPackage
@@ -162238,7 +166071,6 @@ self: {
        description = "Execute arbitrary actions for each item from RSS/Atom feeds";
        license = lib.licenses.cc0;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "immortal_0_2_2_1" = callPackage
@@ -162355,7 +166187,6 @@ self: {
        description = "Deep embedding of imperative programs with code generation";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "imperative-edsl-vhdl" = callPackage
@@ -162373,7 +166204,6 @@ self: {
        description = "Deep embedding of VHDL programs with code generation";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "impl" = callPackage
@@ -162797,7 +166627,6 @@ self: {
        ];
        description = "A Prelude for Polysemy";
        license = "BSD-2-Clause-Patent";
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "incipit-base" = callPackage
@@ -163326,6 +167155,8 @@ self: {
        pname = "indigo";
        version = "0.6.0";
        sha256 = "071jrmyywzkc9i2m0m68kvvwdlimcwscgxq1ik1x42dx3x6mws68";
+       revision = "1";
+       editedCabalFile = "0a5hzj5m3qnbv7f4385lb3f308gj6r4pr8r0dncqqc6bav4gfqaf";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -163627,23 +167458,22 @@ self: {
 
   "inflections" = callPackage
     ({ mkDerivation, base, containers, exceptions, hspec
-     , hspec-megaparsec, megaparsec, QuickCheck, text
+     , hspec-discover, hspec-megaparsec, megaparsec, QuickCheck, text
      , unordered-containers
      }:
      mkDerivation {
        pname = "inflections";
-       version = "0.4.0.6";
-       sha256 = "1054v250p86gb1kvbrp60fzwds8v8nsqap1970j7hgk5hjwq1xj1";
+       version = "0.4.0.7";
+       sha256 = "0gafsyv4k45ff61jym29vp02zyirml8j9pkp507ssr0zz5jasgjr";
        libraryHaskellDepends = [
          base exceptions megaparsec text unordered-containers
        ];
        testHaskellDepends = [
          base containers hspec hspec-megaparsec megaparsec QuickCheck text
        ];
+       testToolDepends = [ hspec-discover ];
        description = "Inflections library for Haskell";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "inflist" = callPackage
@@ -164864,10 +168694,8 @@ self: {
      }:
      mkDerivation {
        pname = "intern";
-       version = "0.9.4";
-       sha256 = "00c74apc2ap1pjxmzk1c975zzqrc94p69l7v1fvfakv87mbrg8j0";
-       revision = "3";
-       editedCabalFile = "03a2z3vs7rk666qhpc5avrpga8pgz8giml743zw6i7470ikznrkg";
+       version = "0.9.5";
+       sha256 = "0jsylr86vlwn7pqzpkbja84br6i2r7d4a1vgqb3zcl92n306wzln";
        libraryHaskellDepends = [
          array base bytestring hashable text unordered-containers
        ];
@@ -165232,8 +169060,6 @@ self: {
        ];
        description = "Intervals, and monoids thereof";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "interval-tree-clock" = callPackage
@@ -165437,8 +169263,8 @@ self: {
      }:
      mkDerivation {
        pname = "invariant";
-       version = "0.6.1";
-       sha256 = "1w6ln343d72hx8q4i7h1ca7gfqyb79ghc3q2fxp9qkjmwsnr8wpv";
+       version = "0.6.2";
+       sha256 = "0271grdzgjfa86hvy50vrqh8k7n0l48i524k3bgyjmwa13l8ar63";
        libraryHaskellDepends = [
          array base bifunctors comonad containers contravariant ghc-prim
          profunctors StateVar stm tagged template-haskell th-abstraction
@@ -165474,9 +169300,7 @@ self: {
        ];
        description = "Project statistics and definition analysis";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "inventory";
-       broken = true;
      }) {};
 
   "invert" = callPackage
@@ -165519,8 +169343,6 @@ self: {
        testHaskellDepends = [ base QuickCheck transformers ];
        description = "bidirectional arrows, bijective functions, and invariant functors";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "invertible-grammar" = callPackage
@@ -165565,7 +169387,6 @@ self: {
        ];
        description = "invertible transformer instances for HXT Picklers";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "invertible-syntax" = callPackage
@@ -165639,8 +169460,8 @@ self: {
     ({ mkDerivation, array, async, base, bytestring, mtl, stm, time }:
      mkDerivation {
        pname = "io-classes";
-       version = "1.1.0.0";
-       sha256 = "11mnmz3wvgp4vw3djlyyixxjzzqfk0qk4k3pfdywkbya2mb4n4mn";
+       version = "1.2.0.0";
+       sha256 = "136i6py474i1wv0fvav9qb9wrz3clljxixsd4z42qcrzpyry80nn";
        libraryHaskellDepends = [
          array async base bytestring mtl stm time
        ];
@@ -165654,8 +169475,8 @@ self: {
        pname = "io-classes-mtl";
        version = "0.1.0.1";
        sha256 = "0kqq14jgpkxaz106ahr20apizgdnxz2q0ih9kwgz0q4l1v106698";
-       revision = "1";
-       editedCabalFile = "0a5y6pch1pb7ml7cr22xl3gh6am7xcs87ad9yqamlpy4765g3ihh";
+       revision = "2";
+       editedCabalFile = "15z9s5gx4z9f9sg7fjgi83ri2hpk970sjjigwpdc7ask4f2j9ff4";
        libraryHaskellDepends = [ array base io-classes mtl si-timers ];
        description = "Experimental MTL instances for io-classes";
        license = lib.licenses.asl20;
@@ -165729,17 +169550,18 @@ self: {
      }) {};
 
   "io-sim" = callPackage
-    ({ mkDerivation, array, base, containers, criterion, exceptions
-     , io-classes, nothunks, parallel, psqueues, QuickCheck, quiet
-     , si-timers, strict-stm, tasty, tasty-hunit, tasty-quickcheck, time
+    ({ mkDerivation, array, base, containers, criterion, deepseq
+     , exceptions, io-classes, nothunks, parallel, psqueues, QuickCheck
+     , quiet, si-timers, strict-stm, tasty, tasty-hunit
+     , tasty-quickcheck, time
      }:
      mkDerivation {
        pname = "io-sim";
-       version = "1.1.0.0";
-       sha256 = "0pb9b08mj6zm45r5ka67y3wjvk767bqha8gpyzvgld5p743pgn8i";
+       version = "1.2.0.0";
+       sha256 = "1h765ab2853k5q7pg0f9mp65925xs0j2sfm4c87qmiwgy53ac6gb";
        libraryHaskellDepends = [
-         base containers exceptions io-classes nothunks parallel psqueues
-         QuickCheck quiet si-timers strict-stm time
+         base containers deepseq exceptions io-classes nothunks parallel
+         psqueues QuickCheck quiet si-timers strict-stm time
        ];
        testHaskellDepends = [
          array base containers io-classes parallel QuickCheck si-timers
@@ -167738,6 +171560,8 @@ self: {
        pname = "ixset-typed";
        version = "0.5.1.0";
        sha256 = "033rm2sik1qz4dmqlabjzwwqw38vj3hrwlkmhm554yvk1n3v9dq8";
+       revision = "1";
+       editedCabalFile = "16xmr7rlxjq89r2zsq88781r95ayf56bw36gial7hfjjcknqvgxk";
        libraryHaskellDepends = [
          base containers deepseq safecopy syb template-haskell
        ];
@@ -167746,8 +171570,6 @@ self: {
        ];
        description = "Efficient relational queries on Haskell sets";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "ixset-typed-binary-instance" = callPackage
@@ -167759,7 +171581,6 @@ self: {
        libraryHaskellDepends = [ base binary ixset-typed ];
        description = "Binary instance for ixset-typed";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "ixset-typed-cassava" = callPackage
@@ -167775,7 +171596,6 @@ self: {
        ];
        description = "cassava encoding and decoding via ixset-typed";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "ixset-typed-conversions" = callPackage
@@ -167792,7 +171612,6 @@ self: {
        ];
        description = "Conversions from ixset-typed to other containers";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "ixset-typed-hashable-instance" = callPackage
@@ -167804,7 +171623,6 @@ self: {
        libraryHaskellDepends = [ base hashable ixset-typed ];
        description = "Hashable instance for ixset-typed";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "ixshader" = callPackage
@@ -167861,7 +171679,6 @@ self: {
        description = "J in Haskell";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "j2hs" = callPackage
@@ -168000,7 +171817,6 @@ self: {
        ];
        description = "Jack, zonal, and Schur polynomials";
        license = lib.licenses.gpl3Only;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "jacobi-elliptic" = callPackage
@@ -168314,6 +172130,7 @@ self: {
        description = "Bindings to the JNI and a high level interface generator";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "java-bridge-extras" = callPackage
@@ -168429,7 +172246,6 @@ self: {
        executableHaskellDepends = [ base ghcjs-base-stub ];
        description = "Extra javascript functions when using GHCJS";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "javascript-extras-test";
      }) {};
 
@@ -168906,7 +172722,6 @@ self: {
        description = "A job queue library";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "jobs-ui" = callPackage
@@ -170108,10 +173923,8 @@ self: {
      }:
      mkDerivation {
        pname = "json-query";
-       version = "0.2.1.0";
-       sha256 = "1cla0jwqdbiifl7h8xr61nh0p2d9df77ds8npllik1n4b4wi5v5p";
-       revision = "3";
-       editedCabalFile = "14w6nrjg764l422zc6vbxrbqy0b8s5yynr2bf0lv674qipq7026k";
+       version = "0.2.2.0";
+       sha256 = "1k0rxrki8qa6gx0kqrhn9k98pn8hz3xg4kxn045r920bacfgsvi2";
        libraryHaskellDepends = [
          array-chunks base bytebuild bytestring contiguous json-syntax
          primitive primitive-unlifted profunctors scientific-notation
@@ -170155,8 +173968,6 @@ self: {
        ];
        description = "Fully-featured JSON-RPC 2.0 library";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "json-rpc-client" = callPackage
@@ -170259,7 +174070,6 @@ self: {
        description = "Types and type classes for defining JSON schemas";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "json-sop" = callPackage
@@ -170271,6 +174081,8 @@ self: {
        pname = "json-sop";
        version = "0.2.2";
        sha256 = "17smxridqmbj1ic2b25kv1byr07lw6phqa1jx98a5yccflwhvmq4";
+       revision = "1";
+       editedCabalFile = "0k5cxbqf062f2slqq57vm4qr32kd3xa8kn9zmvl06iwwb2fd6zjf";
        libraryHaskellDepends = [
          aeson base generics-sop lens-sop tagged text time transformers
          unordered-containers vector
@@ -170369,12 +174181,12 @@ self: {
      }:
      mkDerivation {
        pname = "json-syntax";
-       version = "0.2.4.0";
-       sha256 = "0mhlz6w7zzp97l675jxcwlwhz1r10d4m5mqmdmq12qyamsj8l7hg";
+       version = "0.2.6.1";
+       sha256 = "0zhmzpxcv4jybw669kaz93am46l4da3v0sa14avmvw7z8yd08mqm";
        libraryHaskellDepends = [
          array-builder array-chunks base bytebuild byteslice bytesmith
          bytestring contiguous natural-arithmetic primitive run-st
-         scientific-notation text-short word-compat zigzag
+         scientific-notation text text-short word-compat zigzag
        ];
        testHaskellDepends = [
          aeson array-chunks base bytebuild byteslice bytestring containers
@@ -170827,6 +174639,7 @@ self: {
        description = "JSON-RPC 2.0 server over a Conduit.";
        license = lib.licenses.gpl3Only;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "jsonrpc-tinyclient" = callPackage
@@ -171118,9 +174931,7 @@ self: {
        ];
        description = "SVG to G-Code converter";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "juicy-gcode";
-       broken = true;
      }) {};
 
   "jukebox" = callPackage
@@ -171708,8 +175519,8 @@ self: {
        pname = "kansas-comet";
        version = "0.4.1";
        sha256 = "1j54rsqna8xrw1si8i74v0c9k4jjv8a2q001aa8sx4rxb7d1qbzy";
-       revision = "6";
-       editedCabalFile = "1zmxwppdm0mpc0sh8h35vrp259wig4k11gx1zx6s1089mncrp12f";
+       revision = "7";
+       editedCabalFile = "15i4wiqpxhmx80n5wavwgyvwlv8sn6z8xiq3h61rksjlacjq05jw";
        enableSeparateDataOutput = true;
        libraryHaskellDepends = [
          aeson base containers data-default-class scotty stm text time
@@ -172965,7 +176776,6 @@ self: {
        license = lib.licenses.bsd3;
        platforms = [ "x86_64-linux" ];
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "keiretsu" = callPackage
@@ -173089,8 +176899,8 @@ self: {
      }:
      mkDerivation {
        pname = "keter";
-       version = "2.1.1";
-       sha256 = "1wsg1jd8gllbkxw6czh02c03s6lbfmw05giq2d4jp6vckpq3yqla";
+       version = "2.1.2";
+       sha256 = "1ig64jc9xk4cy1s5ip38nvdp1jsnp122gkrlnah8rh6pw56qcdfc";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -173115,6 +176925,18 @@ self: {
        mainProgram = "keter";
      }) {};
 
+  "keuringsdienst" = callPackage
+    ({ mkDerivation, aeson, base, containers, HTF, text }:
+     mkDerivation {
+       pname = "keuringsdienst";
+       version = "0.1.0.5";
+       sha256 = "111f7895mqrvmdnpm7n4h7q1z5vyb6mdgy33abvrib9x0rsjyqbi";
+       libraryHaskellDepends = [ aeson base containers text ];
+       testHaskellDepends = [ aeson base containers HTF text ];
+       description = "Data validation in Haskell made easy";
+       license = lib.licenses.gpl3Only;
+     }) {};
+
   "kevin" = callPackage
     ({ mkDerivation, attoparsec, base, bytestring, containers
      , cprng-aes, damnpacket, data-default, exceptions, HTTP, lens, mtl
@@ -173226,8 +177048,8 @@ self: {
        pname = "keycode";
        version = "0.2.2";
        sha256 = "046k8d1h5wwadf5z4pppjkc3g7v2zxlzb06s1xgixc42y5y41yan";
-       revision = "9";
-       editedCabalFile = "17k52bhfyx2vpj6wpsmfjw9gbxwhc1zi1jq005lfa7hgc4ly5iw2";
+       revision = "10";
+       editedCabalFile = "1k2vh3pyxvhfxcx8ra16dl6jrgc5hz0wc4hn9w20z347v1hr51nq";
        libraryHaskellDepends = [
          base containers ghc-prim template-haskell
        ];
@@ -173261,8 +177083,6 @@ self: {
        ];
        description = "An abstract Handle for accessing collections in stores like Redis";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "keyed-vals-hspec-tests" = callPackage
@@ -173279,7 +177099,6 @@ self: {
        ];
        description = "Validate a keyed-vals Handle";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "keyed-vals-mem" = callPackage
@@ -173296,7 +177115,6 @@ self: {
        testHaskellDepends = [ base hspec keyed-vals-hspec-tests ];
        description = "Implements a keyed-vals Handle using in-process memory";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "keyed-vals-redis" = callPackage
@@ -173318,7 +177136,6 @@ self: {
        ];
        description = "Access Redis using a keyed-vals Handle";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "keylayouts" = callPackage
@@ -173668,8 +177485,6 @@ self: {
        ];
        description = "Generic programming in GHC style for arbitrary kinds and GADTs";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "kind-generics-th" = callPackage
@@ -173678,8 +177493,8 @@ self: {
      }:
      mkDerivation {
        pname = "kind-generics-th";
-       version = "0.2.3.2";
-       sha256 = "1k7byznlp3xnxmgw8dh5bgdjf3ygxki76xbq7m6w33bcd0gp98l4";
+       version = "0.2.3.3";
+       sha256 = "1jilhnjqgcnaip9i8n6mff0zs91m4b8aciy1a0pi9jvqz2jdaxrz";
        libraryHaskellDepends = [
          base fcf-family ghc-prim kind-generics template-haskell
          th-abstraction
@@ -173690,13 +177505,13 @@ self: {
      }) {};
 
   "kind-integer" = callPackage
-    ({ mkDerivation, base, singletons }:
+    ({ mkDerivation, base, singletons, singletons-base }:
      mkDerivation {
        pname = "kind-integer";
-       version = "0.5";
-       sha256 = "08xc905lhpxyimr6g4lk88z6w03bs7wqhamgggchvn63j9yk8pln";
-       libraryHaskellDepends = [ base singletons ];
-       testHaskellDepends = [ base ];
+       version = "0.6.0";
+       sha256 = "0kb7ys5ig24h1yrbalwyi14mb53g3djl61m1f412w3440yxk7kyb";
+       libraryHaskellDepends = [ base singletons singletons-base ];
+       testHaskellDepends = [ base singletons singletons-base ];
        description = "Type-level integers. Like KnownNat, but for integers.";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
@@ -173704,13 +177519,17 @@ self: {
      }) {};
 
   "kind-rational" = callPackage
-    ({ mkDerivation, base, kind-integer, singletons }:
+    ({ mkDerivation, base, kind-integer, singletons, singletons-base }:
      mkDerivation {
        pname = "kind-rational";
-       version = "0.4";
-       sha256 = "070jks3hwn59f9bm0y0fllyzx0qbps4i5bh96rnjnq3x8xlf3ad1";
-       libraryHaskellDepends = [ base kind-integer singletons ];
-       testHaskellDepends = [ base kind-integer singletons ];
+       version = "0.5.0";
+       sha256 = "17b13iyx8wpmfw07zi3rg5hc2d2bbfpw0qzgzdd0rz92krlj8wbx";
+       libraryHaskellDepends = [
+         base kind-integer singletons singletons-base
+       ];
+       testHaskellDepends = [
+         base kind-integer singletons singletons-base
+       ];
        description = "Type-level rationals. Like KnownNat, but for rationals.";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
@@ -174810,7 +178629,6 @@ self: {
        testHaskellDepends = [ base hspec servant servant-foreign text ];
        description = "Generate Ruby clients from Servant APIs";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "lacroix" = callPackage
@@ -174843,7 +178661,6 @@ self: {
        description = "Solve Lagrange multiplier problems";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "laika" = callPackage
@@ -175322,6 +179139,7 @@ self: {
        license = lib.licenses.gpl2Plus;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "telegram-lambdabot";
+       broken = true;
      }) {};
 
   "lambdabot-trusted" = callPackage
@@ -175775,7 +179593,6 @@ self: {
        description = "A strange and unnecessary selective test-running library";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "landlock" = callPackage
@@ -177295,7 +181112,6 @@ self: {
        ];
        description = "Numerical Linear Algebra using LAPACK";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        maintainers = [ lib.maintainers.thielema ];
      }) {};
 
@@ -177389,7 +181205,6 @@ self: {
        ];
        description = "Conversion of objects between 'lapack' and 'hmatrix'";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        maintainers = [ lib.maintainers.thielema ];
      }) {};
 
@@ -177918,8 +181733,6 @@ self: {
        ];
        description = "Hedgehog support for lawful-classes";
        license = lib.licenses.asl20;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "lawful-classes-quickcheck" = callPackage
@@ -177998,6 +181811,26 @@ self: {
        license = lib.licenses.bsd3;
      }) {};
 
+  "layered-graph-drawing" = callPackage
+    ({ mkDerivation, aeson, base, containers, data-ordlist
+     , intmap-graph, text, vector, vector-algorithms
+     }:
+     mkDerivation {
+       pname = "layered-graph-drawing";
+       version = "0.1.0.0";
+       sha256 = "01fivjy6nf2zvcc20djyklq71pcl7mp9167ijc8vjxn75vq5scls";
+       isLibrary = true;
+       isExecutable = true;
+       libraryHaskellDepends = [
+         aeson base containers data-ordlist intmap-graph text vector
+         vector-algorithms
+       ];
+       executableHaskellDepends = [ base containers intmap-graph text ];
+       description = "Layered Graph Drawing after Sugiyama";
+       license = lib.licenses.bsd3;
+       mainProgram = "graph-drawing-exe";
+     }) {};
+
   "layered-state" = callPackage
     ({ mkDerivation, base, constraints, criterion, data-default
      , deepseq, either, exceptions, kan-extensions, lens, lens-utils
@@ -178218,6 +182051,7 @@ self: {
        description = "Identifiers for not-yet-computed values";
        license = lib.licenses.gpl3Only;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "lazy-hash-cache" = callPackage
@@ -179662,28 +183496,28 @@ self: {
      }) {};
 
   "lentil" = callPackage
-    ({ mkDerivation, ansi-wl-pprint, base, csv, deepseq, directory
-     , dlist, filemanip, filepath, hspec, hspec-discover, megaparsec
-     , mtl, natural-sort, optparse-applicative, regex-tdfa, semigroups
-     , terminal-progress-bar, text
+    ({ mkDerivation, base, csv, deepseq, directory, dlist, filemanip
+     , filepath, hspec, hspec-discover, megaparsec, mtl, natural-sort
+     , optparse-applicative, prettyprinter, prettyprinter-ansi-terminal
+     , regex-tdfa, semigroups, terminal-progress-bar, text
      }:
      mkDerivation {
        pname = "lentil";
-       version = "1.5.5.4";
-       sha256 = "04srkha0nv4k7gxma3q09p9zph6z6v0blpvqivn46g071zdf76cj";
-       revision = "1";
-       editedCabalFile = "1hnx82b18hys661im4gdv19nr5ngdhip23lrb2m61qqng473g83r";
+       version = "1.5.6.0";
+       sha256 = "0sjhhvrw3xbisg8mi1g67yj5r43wzyhqav61wm0ynb1wakc7das1";
        isLibrary = false;
        isExecutable = true;
        executableHaskellDepends = [
-         ansi-wl-pprint base csv deepseq directory dlist filemanip filepath
-         megaparsec mtl natural-sort optparse-applicative regex-tdfa
-         semigroups terminal-progress-bar text
+         base csv deepseq directory dlist filemanip filepath megaparsec mtl
+         natural-sort optparse-applicative prettyprinter
+         prettyprinter-ansi-terminal regex-tdfa semigroups
+         terminal-progress-bar text
        ];
        testHaskellDepends = [
-         ansi-wl-pprint base csv deepseq directory dlist filemanip filepath
-         hspec megaparsec mtl natural-sort optparse-applicative regex-tdfa
-         semigroups terminal-progress-bar text
+         base csv deepseq directory dlist filemanip filepath hspec
+         megaparsec mtl natural-sort optparse-applicative prettyprinter
+         prettyprinter-ansi-terminal regex-tdfa semigroups
+         terminal-progress-bar text
        ];
        testToolDepends = [ hspec-discover ];
        description = "frugal issue tracker";
@@ -180099,22 +183933,6 @@ self: {
     ({ mkDerivation, base, deepseq, hashable }:
      mkDerivation {
        pname = "libBF";
-       version = "0.6.5.1";
-       sha256 = "1l5qpdzzld6drbnh2lax5dw5whqbadr93lkps85m81xlsa5vvrin";
-       isLibrary = true;
-       isExecutable = true;
-       libraryHaskellDepends = [ base deepseq hashable ];
-       executableHaskellDepends = [ base ];
-       testHaskellDepends = [ base ];
-       description = "A binding to the libBF library";
-       license = lib.licenses.mit;
-       mainProgram = "bf-test";
-     }) {};
-
-  "libBF_0_6_6" = callPackage
-    ({ mkDerivation, base, deepseq, hashable }:
-     mkDerivation {
-       pname = "libBF";
        version = "0.6.6";
        sha256 = "1wjfcpvcp749mipyj7j9s8qwj68kvhn1516l43gnq2hhfy9bpsvs";
        isLibrary = true;
@@ -180124,7 +183942,6 @@ self: {
        testHaskellDepends = [ base ];
        description = "A binding to the libBF library";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "bf-test";
      }) {};
 
@@ -180176,8 +183993,6 @@ self: {
        ];
        description = "Haskell interface to libarchive";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {inherit (pkgs) libarchive;};
 
   "libarchive-conduit" = callPackage
@@ -181014,8 +184829,6 @@ self: {
        libraryToolDepends = [ c2hs ];
        description = "FFI bindings to libssh2 SSH2 client library (http://libssh2.org/)";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {inherit (pkgs) libssh2;};
 
   "libssh2-conduit" = callPackage
@@ -181033,7 +184846,6 @@ self: {
        ];
        description = "Conduit wrappers for libssh2 FFI bindings (see libssh2 package)";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "libstackexchange" = callPackage
@@ -181082,8 +184894,8 @@ self: {
      }:
      mkDerivation {
        pname = "libsystemd-journal";
-       version = "1.4.5";
-       sha256 = "01lgfysjclmjhfd1vl36r6xb7zl5i1pzzivzi1qwnih01laa5ix8";
+       version = "1.4.5.1";
+       sha256 = "1d2pm38nq8bk55lva1y1p5789qdkcmmc1z376lnjs4f0jgb6pnhn";
        libraryHaskellDepends = [
          base bytestring hashable hsyslog pipes pipes-safe semigroups text
          transformers uniplate unix-bytestring unordered-containers uuid
@@ -181417,8 +185229,8 @@ self: {
        pname = "lift-generics";
        version = "0.2.1";
        sha256 = "1qkzq8hcb6j15cslv577bmhjcxmljzsrryysdgd7r99kr3q445b4";
-       revision = "4";
-       editedCabalFile = "07nf6d1fb0vc3fyldrgysmbc67hd94npp5f2hclrr3rhklfm7k91";
+       revision = "5";
+       editedCabalFile = "142b5q8vcl583h23syr2i2i3ngcdxpfvds08h9cb0qqp789c5ys3";
        libraryHaskellDepends = [
          base generic-deriving ghc-prim template-haskell th-compat
        ];
@@ -182018,8 +185830,8 @@ self: {
        pname = "linear";
        version = "1.22";
        sha256 = "1ddr0c54kbi9bw7d62i6h3jiss3q0qmrdpkvckajz6qf5lwkxr6g";
-       revision = "1";
-       editedCabalFile = "1p94bq3pwqvj4qd1lp0w84k514xd9vib76gw0d16q1xh27c2sz4h";
+       revision = "2";
+       editedCabalFile = "0ksiy3rkswrwdlz0fsq26dmc4xvw0fm8y7ixdpvgdfpkjr255c8y";
        libraryHaskellDepends = [
          adjunctions base base-orphans binary bytes cereal containers
          deepseq distributive ghc-prim hashable indexed-traversable lens
@@ -182125,7 +185937,6 @@ self: {
        ];
        description = "Compute resistance of linear electrical circuits";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        maintainers = [ lib.maintainers.thielema ];
      }) {};
 
@@ -182347,7 +186158,6 @@ self: {
        ];
        description = "Native, complete-ish, matrix-free linear algebra";
        license = lib.licenses.gpl3Only;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "linearscan" = callPackage
@@ -182637,7 +186447,6 @@ self: {
        description = "Lightweight library for building HTTP API";
        license = lib.licenses.asl20;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "linnet-aeson" = callPackage
@@ -183029,6 +186838,7 @@ self: {
        license = lib.licenses.lgpl3Only;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "lio-simple";
+       broken = true;
      }) {};
 
   "lion" = callPackage
@@ -183827,7 +187637,6 @@ self: {
        description = "Append only key-list database";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "lit" = callPackage
@@ -183849,7 +187658,6 @@ self: {
        license = "GPL";
        hydraPlatforms = lib.platforms.none;
        mainProgram = "lit";
-       broken = true;
      }) {};
 
   "literals" = callPackage
@@ -184217,7 +188025,6 @@ self: {
        description = "Utility functions for the llvm interface";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "llvm-ffi" = callPackage
@@ -185101,8 +188908,6 @@ self: {
        ];
        description = "Structured logging solution (base package)";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "log-domain" = callPackage
@@ -185113,8 +188918,8 @@ self: {
        pname = "log-domain";
        version = "0.13.2";
        sha256 = "0i4fx9k8cwjvmj0pgfnbici1b68zmif1jmmqxplpjqy32ksnyifa";
-       revision = "2";
-       editedCabalFile = "1hddf1q0gvpx7ic0qynjl9nk9g37kjh352yfk5axi36k49zfpw8d";
+       revision = "3";
+       editedCabalFile = "0sw686ym4m03glrgyka4m6amvv1iai6cd9f043jnr607phkdjd0k";
        libraryHaskellDepends = [
          base binary bytes cereal comonad deepseq distributive hashable
          semigroupoids semigroups vector
@@ -185176,7 +188981,6 @@ self: {
        testHaskellDepends = [ aeson base effectful-core log-base text ];
        description = "Adaptation of the log library for the effectful ecosystem";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "log-elasticsearch" = callPackage
@@ -185197,7 +189001,6 @@ self: {
        ];
        description = "Structured logging solution (Elasticsearch back end)";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "log-postgres" = callPackage
@@ -186116,8 +189919,8 @@ self: {
      }:
      mkDerivation {
        pname = "looksee";
-       version = "0.5.0";
-       sha256 = "0da272255k0lj7y5vmi8y3zx015rhwsac7isvmywzhmgf7b6g3nv";
+       version = "0.5.1";
+       sha256 = "1cw0bfj9hkzv1vzcl0lp5wa2dyq96pf34jjzmqrvp1ak2mc7si7m";
        libraryHaskellDepends = [
          base bifunctors containers errata mmorph mtl recursion-schemes
          scientific text vector
@@ -186126,10 +189929,8 @@ self: {
          base bifunctors containers errata mmorph mtl recursion-schemes
          scientific tasty tasty-hunit text vector
        ];
-       description = "parser with looksee";
+       description = "A simple text parser with decent errors";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "lookup-tables" = callPackage
@@ -186354,8 +190155,10 @@ self: {
      }:
      mkDerivation {
        pname = "lorentz";
-       version = "0.15.2";
-       sha256 = "1jnh4prjkjbiy3qhwn0iz4immhhqrdhbnqagyiqlinbrpb3nzm8x";
+       version = "0.16.0";
+       sha256 = "1xwwjafpc3l16rrxvxnpap6j8ba7kdj5y76n0kkh15zz7qlwq8xd";
+       revision = "1";
+       editedCabalFile = "01mcsyg4wvv1i0a6m7c4vi2ad6wiy55m1hl3n0pbscbazzhklji6";
        libraryHaskellDepends = [
          aeson-pretty base-noprelude bimap bytestring constraints containers
          cryptonite data-default first-class-families lens morley
@@ -186641,6 +190444,32 @@ self: {
        broken = true;
      }) {};
 
+  "lsh" = callPackage
+    ({ mkDerivation, base, containers, directory, filepath
+     , optparse-applicative, time
+     }:
+     mkDerivation {
+       pname = "lsh";
+       version = "0.1.0.0";
+       sha256 = "16dw5637gbsxwv21wynic1cfc0rq11q8mrbslyy959hxxl0x6x18";
+       isLibrary = true;
+       isExecutable = true;
+       libraryHaskellDepends = [
+         base containers directory filepath optparse-applicative time
+       ];
+       executableHaskellDepends = [
+         base containers directory filepath optparse-applicative time
+       ];
+       testHaskellDepends = [
+         base containers directory filepath optparse-applicative time
+       ];
+       description = "A simple ls clone with modern, colored formatting";
+       license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
+       mainProgram = "lsh-exe";
+       broken = true;
+     }) {};
+
   "lsp_1_4_0_0" = callPackage
     ({ mkDerivation, aeson, async, attoparsec, base, bytestring
      , containers, data-default, exceptions, filepath, hashable
@@ -186678,35 +190507,6 @@ self: {
     ({ mkDerivation, aeson, async, attoparsec, base, bytestring
      , co-log-core, containers, data-default, directory, exceptions
      , filepath, hashable, hspec, hspec-discover, lens, lsp-types, mtl
-     , prettyprinter, random, sorted-list, stm, temporary, text
-     , text-rope, transformers, unliftio-core, unordered-containers
-     , uuid
-     }:
-     mkDerivation {
-       pname = "lsp";
-       version = "1.6.0.0";
-       sha256 = "0w04n299d8yh545jggh93wm6nxpp5jwz8hr7qynbxslcdrv06s49";
-       isLibrary = true;
-       isExecutable = true;
-       libraryHaskellDepends = [
-         aeson async attoparsec base bytestring co-log-core containers
-         data-default directory exceptions filepath hashable lens lsp-types
-         mtl prettyprinter random sorted-list stm temporary text text-rope
-         transformers unliftio-core unordered-containers uuid
-       ];
-       testHaskellDepends = [
-         base containers hspec sorted-list text text-rope
-         unordered-containers
-       ];
-       testToolDepends = [ hspec-discover ];
-       description = "Haskell library for the Microsoft Language Server Protocol";
-       license = lib.licenses.mit;
-     }) {};
-
-  "lsp_2_1_0_0" = callPackage
-    ({ mkDerivation, aeson, async, attoparsec, base, bytestring
-     , co-log-core, containers, data-default, directory, exceptions
-     , filepath, hashable, hspec, hspec-discover, lens, lsp-types, mtl
      , prettyprinter, random, row-types, sorted-list, stm, temporary
      , text, text-rope, transformers, unliftio-core
      , unordered-containers, uuid
@@ -186730,7 +190530,6 @@ self: {
        testToolDepends = [ hspec-discover ];
        description = "Haskell library for the Microsoft Language Server Protocol";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "lsp-client" = callPackage
@@ -186756,6 +190555,8 @@ self: {
        ];
        description = "Haskell library for Language Server Protocol clients";
        license = lib.licenses.asl20;
+       hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "lsp-test" = callPackage
@@ -186763,35 +190564,6 @@ self: {
      , bytestring, co-log-core, conduit, conduit-parse, containers
      , data-default, Diff, directory, exceptions, extra, filepath, Glob
      , hspec, lens, lsp, lsp-types, mtl, parser-combinators, process
-     , some, text, time, transformers, unix, unliftio
-     , unordered-containers
-     }:
-     mkDerivation {
-       pname = "lsp-test";
-       version = "0.14.1.0";
-       sha256 = "0db4mpzn05k3isk1a3rdpqr7if9j0kr3bxdri9739q9a8azf4fp1";
-       libraryHaskellDepends = [
-         aeson aeson-pretty ansi-terminal async base bytestring co-log-core
-         conduit conduit-parse containers data-default Diff directory
-         exceptions filepath Glob lens lsp lsp-types mtl parser-combinators
-         process some text time transformers unix unordered-containers
-       ];
-       testHaskellDepends = [
-         aeson base co-log-core data-default directory filepath hspec lens
-         lsp mtl parser-combinators process text unliftio
-         unordered-containers
-       ];
-       testToolDepends = [ lsp ];
-       benchmarkHaskellDepends = [ base extra lsp process ];
-       description = "Functional test framework for LSP servers";
-       license = lib.licenses.bsd3;
-     }) {};
-
-  "lsp-test_0_15_0_1" = callPackage
-    ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, async, base
-     , bytestring, co-log-core, conduit, conduit-parse, containers
-     , data-default, Diff, directory, exceptions, extra, filepath, Glob
-     , hspec, lens, lsp, lsp-types, mtl, parser-combinators, process
      , row-types, some, text, time, transformers, unix, unliftio
      }:
      mkDerivation {
@@ -186812,7 +190584,6 @@ self: {
        benchmarkHaskellDepends = [ base extra lsp process ];
        description = "Functional test framework for LSP servers";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "lsp-types_1_4_0_1" = callPackage
@@ -186841,31 +190612,6 @@ self: {
 
   "lsp-types" = callPackage
     ({ mkDerivation, aeson, base, binary, containers, data-default
-     , deepseq, Diff, dlist, exceptions, filepath, hashable, hspec
-     , hspec-discover, lens, mod, mtl, network-uri, QuickCheck
-     , quickcheck-instances, safe, scientific, some, template-haskell
-     , text, tuple, unordered-containers
-     }:
-     mkDerivation {
-       pname = "lsp-types";
-       version = "1.6.0.0";
-       sha256 = "00lqq5lw7pi8qrnjlibsvhldp747kdc9zkr6rg3bbkbz7kxw8p9q";
-       libraryHaskellDepends = [
-         aeson base binary containers data-default deepseq Diff dlist
-         exceptions filepath hashable lens mod mtl network-uri safe
-         scientific some template-haskell text unordered-containers
-       ];
-       testHaskellDepends = [
-         aeson base filepath hspec lens network-uri QuickCheck
-         quickcheck-instances text tuple
-       ];
-       testToolDepends = [ hspec-discover ];
-       description = "Haskell library for the Microsoft Language Server Protocol, data types";
-       license = lib.licenses.mit;
-     }) {};
-
-  "lsp-types_2_0_1_0" = callPackage
-    ({ mkDerivation, aeson, base, binary, containers, data-default
      , deepseq, Diff, directory, dlist, exceptions, file-embed, filepath
      , hashable, hspec, hspec-discover, lens, mod, mtl, network-uri
      , prettyprinter, QuickCheck, quickcheck-instances, regex, row-types
@@ -186873,8 +190619,8 @@ self: {
      }:
      mkDerivation {
        pname = "lsp-types";
-       version = "2.0.1.0";
-       sha256 = "1q7zc7jpyf44x10fk4wccq7k8sqq2fkqrx75v2rk1ahlklanqh2p";
+       version = "2.0.1.1";
+       sha256 = "0g5z28iy4ar96x5fmj1v8g60wz3drp39393161f2hjyp3kq8nfh0";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -186893,7 +190639,6 @@ self: {
        doHaddock = false;
        description = "Haskell library for the Microsoft Language Server Protocol, data types";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "generator";
      }) {};
 
@@ -187474,12 +191219,12 @@ self: {
      }:
      mkDerivation {
        pname = "lumberjack";
-       version = "1.0.2.0";
-       sha256 = "1yr1l1i5snmbc7h7aykc15mkynw5jcyzx9569hs4svcd92x0lf04";
+       version = "1.0.3.0";
+       sha256 = "05a4gvc47448crb0yn0fwi3y9bwdqlmnch839hljwpyamqvqwi8q";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
-         base contravariant exceptions mtl prettyprinter
+         base contravariant exceptions prettyprinter
          prettyprinter-ansi-terminal text time
        ];
        executableHaskellDepends = [
@@ -187740,21 +191485,21 @@ self: {
      }) {};
 
   "lz4-bytes" = callPackage
-    ({ mkDerivation, base, byteslice, primitive, run-st, tasty
-     , tasty-quickcheck
+    ({ mkDerivation, base, byte-order, byteslice, primitive, run-st
+     , tasty, tasty-quickcheck
      }:
      mkDerivation {
        pname = "lz4-bytes";
-       version = "0.1.0.2";
-       sha256 = "1h0rfc273jszv3c83izkr7v8x7zqikbayf20yhahj2fl129ar362";
-       libraryHaskellDepends = [ base byteslice primitive run-st ];
+       version = "0.1.1.0";
+       sha256 = "1h445dkw9cnzj01bm1hq5bvy48ybnwrd1ak2q7676ybvzl8qzffa";
+       libraryHaskellDepends = [
+         base byte-order byteslice primitive run-st
+       ];
        testHaskellDepends = [
          base byteslice primitive tasty tasty-quickcheck
        ];
        description = "Bindings to LZ4";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "lz4-conduit" = callPackage
@@ -188617,7 +192362,6 @@ self: {
        ];
        description = "Compute solutions for Magico puzzle";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "magico";
        maintainers = [ lib.maintainers.thielema ];
      }) {};
@@ -188633,8 +192377,6 @@ self: {
        testHaskellDepends = [ base ghc-prim ];
        description = "magma is an algebraic structure";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "magmas" = callPackage
@@ -189542,7 +193284,6 @@ self: {
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "mangopay-passphrase";
-       broken = true;
      }) {};
 
   "mangrove" = callPackage
@@ -189613,6 +193354,7 @@ self: {
        description = "Coordinate-free hypersurfaces";
        license = lib.licenses.gpl3Only;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "manifolds-core" = callPackage
@@ -190378,7 +194120,6 @@ self: {
        description = "Compatibility of 'massiv' with 'persist'";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "massiv-scheduler" = callPackage
@@ -191596,14 +195337,14 @@ self: {
        pname = "md5";
        version = "0.1.0.0";
        sha256 = "0h0m6wwis1p2dl689wllywp338yxyykghfnznsq6jfb9vdfavzs4";
+       revision = "1";
+       editedCabalFile = "1rz2gjn049yjcans2xw6npkh30vzp7qdv6ar4pzjhpjjhrl8aqzh";
        libraryHaskellDepends = [ base bytebuild byteslice primitive ];
        testHaskellDepends = [
          base bytebuild byteslice natural-arithmetic primitive
        ];
        description = "MD5 Hash";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "mdapi" = callPackage
@@ -191711,8 +195452,8 @@ self: {
      }:
      mkDerivation {
        pname = "mealy";
-       version = "0.4.2";
-       sha256 = "11b4q93sfkjvcg2jpwxp68mvfhk167z08jx0hn0ia682sgvzh4p3";
+       version = "0.4.3";
+       sha256 = "1p5dn0phbvz5jfkhfifppdzz3jphcmifcqmrv9nxklw4cfcbgl6w";
        libraryHaskellDepends = [
          adjunctions base containers mwc-probability numhask numhask-array
          primitive profunctors tdigest text vector vector-algorithms
@@ -192225,8 +195966,6 @@ self: {
        ];
        description = "An Elf parser";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "mellon-core" = callPackage
@@ -192543,6 +196282,7 @@ self: {
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "memis";
+       broken = true;
      }) {};
 
   "memo-ptr" = callPackage
@@ -193573,8 +197313,8 @@ self: {
        pname = "microaeson";
        version = "0.1.0.1";
        sha256 = "0rx5gm7apazc0sm65v687ab5106ximka9khizxq1lbckd2x0cq3q";
-       revision = "5";
-       editedCabalFile = "0ri4hmai3g1xn8vmmvvfbvvbgm0wjiwwjbp3ympidrkpnz9b9rq6";
+       revision = "6";
+       editedCabalFile = "0m32nnlldj2q261p6hwya9f9jqv6w33ws8wkizar4p2c1mv7lf2k";
        libraryHaskellDepends = [
          array base bytestring containers deepseq fail text
        ];
@@ -193722,6 +197462,27 @@ self: {
        license = lib.licenses.mit;
      }) {};
 
+  "microlens-aeson_2_5_1" = callPackage
+    ({ mkDerivation, aeson, attoparsec, base, bytestring, hashable
+     , microlens, scientific, tasty, tasty-hunit, text, vector
+     }:
+     mkDerivation {
+       pname = "microlens-aeson";
+       version = "2.5.1";
+       sha256 = "02p5qk1d7rn6h7vfvj0rzi05swd6fp04mhri60nysm6dv135qxgp";
+       libraryHaskellDepends = [
+         aeson attoparsec base bytestring hashable microlens scientific text
+         vector
+       ];
+       testHaskellDepends = [
+         aeson base bytestring hashable microlens tasty tasty-hunit text
+         vector
+       ];
+       description = "Law-abiding lenses for Aeson, using microlens";
+       license = lib.licenses.mit;
+       hydraPlatforms = lib.platforms.none;
+     }) {};
+
   "microlens-contra" = callPackage
     ({ mkDerivation, base, microlens }:
      mkDerivation {
@@ -194116,6 +197877,23 @@ self: {
        broken = true;
      }) {};
 
+  "mig" = callPackage
+    ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring
+     , case-insensitive, containers, exceptions, http-api-data
+     , http-types, mtl, text, wai, warp
+     }:
+     mkDerivation {
+       pname = "mig";
+       version = "0.1.0.3";
+       sha256 = "1xkiq1ca2rxxzn8a8y0scc6w78lwqlxfdskjay38i1ghlq7brb5s";
+       libraryHaskellDepends = [
+         aeson base blaze-html blaze-markup bytestring case-insensitive
+         containers exceptions http-api-data http-types mtl text wai warp
+       ];
+       description = "Build lightweight and composable servers";
+       license = lib.licenses.bsd3;
+     }) {};
+
   "mighttpd" = callPackage
     ({ mkDerivation, base, bytestring, c10k, directory, filepath
      , haskell98, hdaemonize, hslogger, network, parsec, time, unix
@@ -194188,8 +197966,6 @@ self: {
        ];
        description = "The Metropolis algorithm";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "migrant-core" = callPackage
@@ -194657,7 +198433,6 @@ self: {
        description = "A SDL2-based graphics library, batteries-included";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "minilight-lua" = callPackage
@@ -195152,7 +198927,6 @@ self: {
        description = "AWS Library";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "miso" = callPackage
@@ -195377,16 +199151,16 @@ self: {
      }) {};
 
   "mixed-types-num" = callPackage
-    ({ mkDerivation, base, collect-errors, hspec, hspec-smallcheck, mtl
+    ({ mkDerivation, base, collect-errors, hspec, hspec-smallcheck
      , QuickCheck, smallcheck, template-haskell
      }:
      mkDerivation {
        pname = "mixed-types-num";
-       version = "0.5.11";
-       sha256 = "15r1lj39fkddlqfda41cp76xr8ck4fkannszxi32j7a8lkjr2f21";
+       version = "0.5.12";
+       sha256 = "0kyzfh8p7v4b1mv4lqgwjf161lqwf2a1xkxy148x85fjc3c5x6mm";
        libraryHaskellDepends = [
-         base collect-errors hspec hspec-smallcheck mtl QuickCheck
-         smallcheck template-haskell
+         base collect-errors hspec hspec-smallcheck QuickCheck smallcheck
+         template-haskell
        ];
        testHaskellDepends = [
          base collect-errors hspec hspec-smallcheck QuickCheck smallcheck
@@ -195774,6 +199548,7 @@ self: {
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "mmsyn6ukra";
+       broken = true;
      }) {};
 
   "mmsyn7h" = callPackage
@@ -195820,7 +199595,6 @@ self: {
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "mmsyn7l";
-       broken = true;
      }) {};
 
   "mmsyn7s" = callPackage
@@ -195877,7 +199651,6 @@ self: {
        description = "A simple reduced basic interface to some SoX functionality or to produce a voice that can be used by mmsyn7h-array, dobutokO2-array and other similar packages";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "mmsyn7ukr-common" = callPackage
@@ -195944,19 +199717,19 @@ self: {
 
   "mmzk-typeid" = callPackage
     ({ mkDerivation, aeson, array, base, binary, bytestring, containers
-     , entropy, hashable, hspec, text, time, uuid-types
+     , entropy, hashable, hspec, random, text, time, uuid, uuid-types
      }:
      mkDerivation {
        pname = "mmzk-typeid";
-       version = "0.3.1.0";
-       sha256 = "08w1q8nrkb8rywzc3mkfjmwik4l4zw96vigjlr4znfz4ad40642y";
+       version = "0.4.0.0";
+       sha256 = "1311xy49fs6psciks8sii2k9agqr6pnvykvvxqjlmwp9gkys6rjc";
        libraryHaskellDepends = [
-         aeson array base binary bytestring entropy hashable text time
-         uuid-types
+         aeson array base binary bytestring entropy hashable random text
+         time uuid uuid-types
        ];
        testHaskellDepends = [
          aeson array base binary bytestring containers entropy hashable
-         hspec text time uuid-types
+         hspec random text time uuid uuid-types
        ];
        description = "A TypeID implementation for Haskell";
        license = lib.licenses.mit;
@@ -196835,17 +200608,17 @@ self: {
      }) {};
 
   "monad-dijkstra" = callPackage
-    ({ mkDerivation, base, containers, free, hlint, mtl, psqueues
-     , tasty, tasty-hspec, transformers
+    ({ mkDerivation, base, containers, free, hlint, hspec, mtl
+     , psqueues, tasty, tasty-hspec, transformers
      }:
      mkDerivation {
        pname = "monad-dijkstra";
-       version = "0.1.1.3";
-       sha256 = "13zb3k0rfqpzz3ngmkqhc4zfa6p8nzj9hcsnfilkn8179pwp0qkc";
+       version = "0.1.1.4";
+       sha256 = "1rj6gj8ipl7frk43ss1ki906fwp7qp2q1knjvk8d3n1ivgs5hmal";
        libraryHaskellDepends = [
          base containers free mtl psqueues transformers
        ];
-       testHaskellDepends = [ base hlint tasty tasty-hspec ];
+       testHaskellDepends = [ base hlint hspec tasty tasty-hspec ];
        description = "A monad transformer for weighted graph searches";
        license = lib.licenses.bsd3;
      }) {};
@@ -197500,6 +201273,26 @@ self: {
        license = lib.licenses.bsd3;
      }) {};
 
+  "monad-peel_0_3" = callPackage
+    ({ mkDerivation, base, extensible-exceptions, HUnit, test-framework
+     , test-framework-hunit, transformers
+     }:
+     mkDerivation {
+       pname = "monad-peel";
+       version = "0.3";
+       sha256 = "1vk0g2ppksy9g2qcw5vccvszsmz5xsn7ajvvm9v9bwd4h17pvvby";
+       libraryHaskellDepends = [
+         base extensible-exceptions transformers
+       ];
+       testHaskellDepends = [
+         base extensible-exceptions HUnit test-framework
+         test-framework-hunit transformers
+       ];
+       description = "Lift control operations like exception catching through monad transformers";
+       license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
+     }) {};
+
   "monad-persist" = callPackage
     ({ mkDerivation, base, exceptions, hspec, monad-control
      , monad-logger, mtl, persistent, persistent-sqlite
@@ -197781,8 +201574,6 @@ self: {
        libraryHaskellDepends = [ base effectful-core monad-time time ];
        description = "Adaptation of the monad-time library for the effectful ecosystem";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "monad-timing" = callPackage
@@ -197884,8 +201675,8 @@ self: {
      }:
      mkDerivation {
        pname = "monad-validate";
-       version = "1.2.0.1";
-       sha256 = "1xhpqdslsjxqz6wv4qcvz0bnkzdq3f5z481bjhpi2n3wlyf9asyq";
+       version = "1.3.0.0";
+       sha256 = "04sz0g493319ddhhmk0maaxa0lvllvb2c2qdrc9j99hx53a2g4p7";
        libraryHaskellDepends = [
          base exceptions monad-control mtl transformers transformers-base
        ];
@@ -198041,8 +201832,6 @@ self: {
        ];
        description = "GHC plugin to desugar ! into do-notation";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "monadic-recursion-schemes" = callPackage
@@ -198059,8 +201848,6 @@ self: {
        testHaskellDepends = [ base ];
        description = "Recursion Schemes for Monadic version";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "monadiccp" = callPackage
@@ -198204,6 +201991,23 @@ self: {
        license = lib.licenses.bsd2;
      }) {};
 
+  "monadology_0_2" = callPackage
+    ({ mkDerivation, base, constraints, invariant, tasty, tasty-hunit
+     , text, transformers, type-rig, witness
+     }:
+     mkDerivation {
+       pname = "monadology";
+       version = "0.2";
+       sha256 = "0ad15iz8na5dm34p8gcy2jz9h6ayanfarzi4maiy263949vhm9pv";
+       libraryHaskellDepends = [
+         base constraints invariant transformers type-rig witness
+       ];
+       testHaskellDepends = [ base tasty tasty-hunit text transformers ];
+       description = "The best ideas in monad-related classes and types";
+       license = lib.licenses.bsd2;
+       hydraPlatforms = lib.platforms.none;
+     }) {};
+
   "monadplus" = callPackage
     ({ mkDerivation, base }:
      mkDerivation {
@@ -198215,8 +202019,6 @@ self: {
        libraryHaskellDepends = [ base ];
        description = "Haskell98 partial maps and filters over MonadPlus";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "monads-fd" = callPackage
@@ -198650,8 +202452,6 @@ self: {
        ];
        description = "Monoids for calculation of statistics of sample";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "monoid-subclasses" = callPackage
@@ -198710,8 +202510,8 @@ self: {
      }:
      mkDerivation {
        pname = "monoidal-functors";
-       version = "0.2.2.0";
-       sha256 = "1hc15igwwa177r1dkzv0h2zzjn1yf3s2zyl5vy6j71zzyzn3nwgb";
+       version = "0.2.3.0";
+       sha256 = "1818r1bip1bmazqi1fhvajp7gg4rp48rd2mjdib662gcq04lm3gw";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -198756,6 +202556,7 @@ self: {
        description = "Monoidal map type";
        license = lib.licenses.asl20;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "monoidplus" = callPackage
@@ -198852,32 +202653,30 @@ self: {
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "monomer-flatpak-example";
-       broken = true;
      }) {};
 
   "monomer-hagrid" = callPackage
     ({ mkDerivation, base, bytestring, containers, data-default
-     , data-default-class, hspec, hspec-discover, ilist, lens, monomer
-     , mtl, stm, text
+     , data-default-class, hspec, hspec-discover, lens, monomer, mtl
+     , stm, text
      }:
      mkDerivation {
        pname = "monomer-hagrid";
-       version = "0.3.0.1";
-       sha256 = "1yqh5ixvhpsflqjy3snliy5653awy4awrsw0p39yyqxar72hzwrj";
+       version = "0.3.1.0";
+       sha256 = "12ym5n1gxyx6aavyikj3hi3biyz3jqsph2x6fsryc60qmhz667wm";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
-         base containers data-default-class ilist lens monomer text
+         base containers data-default-class lens monomer text
        ];
        testHaskellDepends = [
          base bytestring containers data-default data-default-class hspec
-         ilist lens monomer mtl stm text
+         lens monomer mtl stm text
        ];
        testToolDepends = [ hspec-discover ];
        description = "A datagrid widget for the Monomer library";
        license = lib.licenses.mit;
        badPlatforms = lib.platforms.darwin;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "monomorphic" = callPackage
@@ -199090,7 +202889,6 @@ self: {
        description = "Invocation helpers for the ReaderT-record-of-functions style";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "moonshine" = callPackage
@@ -199184,15 +202982,17 @@ self: {
      , haskeline, hex-text, hsblst, lens, megaparsec, memory
      , MonadRandom, morley-prelude, mtl, named, optparse-applicative
      , pairing, parser-combinators, prettyprinter, scientific
-     , semigroups, show-type, singletons, singletons-base, some, syb
+     , semigroups, singletons, singletons-base, some, syb
      , template-haskell, text, text-manipulate, th-lift-instances
      , th-reify-many, time, timerep, type-errors, uncaught-exception
      , unordered-containers, vector, vinyl, with-utf8
      }:
      mkDerivation {
        pname = "morley";
-       version = "1.19.2";
-       sha256 = "04b7ldvqm4nxmzzbqykf72a7nnjlqhjbrhqsczz27nn84bjxmjql";
+       version = "1.20.0";
+       sha256 = "1m3182fyyy2wys47098ziafph4kiy0c9niss63zz5mn22079a6ca";
+       revision = "1";
+       editedCabalFile = "059wv6phz8zf3g3v6rq48337s50s4y8yx9bwzjan12qq5rxbh5zl";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -199202,11 +203002,10 @@ self: {
          elliptic-curve first-class-families galois-field generic-deriving
          gitrev haskeline hex-text hsblst lens megaparsec memory MonadRandom
          morley-prelude mtl named optparse-applicative pairing
-         parser-combinators prettyprinter scientific semigroups show-type
-         singletons singletons-base some syb template-haskell text
-         text-manipulate th-lift-instances th-reify-many time timerep
-         type-errors uncaught-exception unordered-containers vector vinyl
-         with-utf8
+         parser-combinators prettyprinter scientific semigroups singletons
+         singletons-base some syb template-haskell text text-manipulate
+         th-lift-instances th-reify-many time timerep type-errors
+         uncaught-exception unordered-containers vector vinyl with-utf8
        ];
        executableHaskellDepends = [
          base-noprelude morley-prelude optparse-applicative
@@ -199230,8 +203029,10 @@ self: {
      }:
      mkDerivation {
        pname = "morley-client";
-       version = "0.3.2";
-       sha256 = "0wallg3ryj9mq9z2qz7fxijh4phhjvi1rblmkjpqcxg3naypznn3";
+       version = "0.4.0";
+       sha256 = "1r6xgwh7pm6ymjz1r27d78v03srw9wc5qfhcfqlwn6xd153nb2lr";
+       revision = "1";
+       editedCabalFile = "0rbcm0qix3ckyyikd36bdxfhnmxmpslxh30p6k36n9vmfh154ydl";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -199264,8 +203065,10 @@ self: {
      }:
      mkDerivation {
        pname = "morley-prelude";
-       version = "0.5.3";
-       sha256 = "104gffmi6knhzby3s2b8h6mwns5i5lm48915i0zc3839f1yg6dx0";
+       version = "0.6.0";
+       sha256 = "1a2md32q46xpqi0h6kjpydzy52i6790y6msqwr44mfbjkkm01d98";
+       revision = "1";
+       editedCabalFile = "0blakwag5bj57jfavj35czppz2czm9bc2g5bqwb08r615glq9ibr";
        libraryHaskellDepends = [
          base-noprelude bytestring Cabal int-cast lens OddWord prettyprinter
          template-haskell text time universum
@@ -199286,6 +203089,8 @@ self: {
        pname = "morley-upgradeable";
        version = "0.3";
        sha256 = "1rl36a686n8dv3bnvnfcr1xiqb8c3diadk5m6wr6axj4h7w0a8cc";
+       revision = "1";
+       editedCabalFile = "1hnm4l92qr7vj5kyn6x9syqf2qd9ql0y4sgx2y1r71kahw1wb3gx";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -200482,8 +204287,8 @@ self: {
      }:
      mkDerivation {
        pname = "ms-auth";
-       version = "0.3.0.0";
-       sha256 = "0grvzd4mlz8fa1gyjil8jnjzdymq1iiz3qpmsrk7mavgbmrfndny";
+       version = "0.4.0.0";
+       sha256 = "1040l7gh039kcwiiqam2rqav3k6lfnhb0iw5s9ssfln0v3d9q8s0";
        libraryHaskellDepends = [
          aeson base bytestring containers directory hoauth2 http-client
          http-types jwt scientific scotty text time transformers unliftio
@@ -200497,18 +204302,18 @@ self: {
 
   "ms-azure-api" = callPackage
     ({ mkDerivation, aeson, base, bytestring, conduit, containers
-     , exceptions, hoauth2, http-client-tls, http-types, modern-uri, req
-     , scientific, text, time, transformers, unliftio, xeno, xmlbf
-     , xmlbf-xeno
+     , exceptions, hoauth2, http-client, http-client-tls, http-types
+     , modern-uri, req, scientific, text, time, transformers, unliftio
+     , xeno, xmlbf, xmlbf-xeno
      }:
      mkDerivation {
        pname = "ms-azure-api";
-       version = "0.4.0.0";
-       sha256 = "0kda9lw77by7cdin7zk5rmv3n5a76dam0z6jjsnn94k7wm4h7mlg";
+       version = "0.6.0.1";
+       sha256 = "0ssl0qnkdcm3gp8bk8hvvb7cp79hwzb5fws7gadivzz1d99nwvgp";
        libraryHaskellDepends = [
          aeson base bytestring conduit containers exceptions hoauth2
-         http-client-tls http-types modern-uri req scientific text time
-         transformers unliftio xeno xmlbf xmlbf-xeno
+         http-client http-client-tls http-types modern-uri req scientific
+         text time transformers unliftio xeno xmlbf xmlbf-xeno
        ];
        description = "Microsoft Azure API";
        license = lib.licenses.bsd3;
@@ -200840,8 +204645,6 @@ self: {
        ];
        description = "SQL Server client library implemented in Haskell";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "mstate" = callPackage
@@ -200901,7 +204704,6 @@ self: {
        description = "Library to communicate with Mt.Gox";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "mtl_2_3_1" = callPackage
@@ -202220,6 +206022,7 @@ self: {
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "example";
+       broken = true;
      }) {};
 
   "multivector" = callPackage
@@ -203294,7 +207097,6 @@ self: {
        ];
        description = "Binding to mybitcoin.com's Shopping Cart Interface.";
        license = lib.licenses.publicDomain;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "myers-diff" = callPackage
@@ -203371,7 +207173,6 @@ self: {
        description = "Sessions and continuations for Snap web apps";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "mysnapsession-example" = callPackage
@@ -203430,27 +207231,40 @@ self: {
      }) {};
 
   "mysql-haskell" = callPackage
-    ({ mkDerivation, base, binary, binary-ieee754, binary-parsers
-     , blaze-textual, bytestring, bytestring-lexing, cryptonite
-     , io-streams, memory, monad-loops, network, scientific, tasty
-     , tasty-hunit, tcp-streams, text, time, tls, vector, wire-streams
-     , word24
+    ({ mkDerivation, attoparsec, base, binary, blaze-textual
+     , bytestring, bytestring-lexing, case-insensitive, containers
+     , criterion, crypton, crypton-x509, crypton-x509-store
+     , crypton-x509-system, data-default-class, deepseq, directory
+     , filepath, http-types, io-streams, memory, monad-loops, network
+     , pem, QuickCheck, quickcheck-instances, scanner, scientific, tasty
+     , tasty-hunit, tasty-quickcheck, text, time, tls
+     , unordered-containers, vector, word-compat
      }:
      mkDerivation {
        pname = "mysql-haskell";
-       version = "0.8.4.3";
-       sha256 = "1gjq8spl6s05kcckw78d1wi2k8blr25mbvicd1kwr653lj2d3w74";
+       version = "1.1.2";
+       sha256 = "10mscgpml293kpjj9f6cap55pqxjcbp7hspigmdpm806ir6119ga";
        libraryHaskellDepends = [
-         base binary binary-ieee754 binary-parsers blaze-textual bytestring
-         bytestring-lexing cryptonite io-streams memory monad-loops network
-         scientific tcp-streams text time tls vector wire-streams word24
+         base binary blaze-textual bytestring bytestring-lexing crypton
+         crypton-x509 crypton-x509-store crypton-x509-system
+         data-default-class deepseq io-streams memory monad-loops network
+         pem scientific text time tls vector word-compat
        ];
        testHaskellDepends = [
-         base bytestring io-streams tasty tasty-hunit text time vector
+         attoparsec base binary bytestring bytestring-lexing containers
+         deepseq directory filepath io-streams network QuickCheck
+         quickcheck-instances scientific tasty tasty-hunit tasty-quickcheck
+         text time unordered-containers vector
+       ];
+       benchmarkHaskellDepends = [
+         attoparsec base binary bytestring case-insensitive criterion
+         deepseq directory filepath http-types scanner scientific text
+         unordered-containers vector
        ];
        description = "pure haskell MySQL driver";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "mysql-haskell-nem" = callPackage
@@ -203486,6 +207300,43 @@ self: {
        hydraPlatforms = lib.platforms.none;
      }) {};
 
+  "mysql-pure" = callPackage
+    ({ mkDerivation, attoparsec, base, binary, binary-ieee754
+     , blaze-textual, bytestring, bytestring-lexing, case-insensitive
+     , containers, criterion, crypton, crypton-x509, crypton-x509-store
+     , crypton-x509-system, data-default-class, deepseq, directory
+     , filepath, http-types, io-streams, memory, monad-loops, network
+     , pem, QuickCheck, quickcheck-instances, scanner, scientific, tasty
+     , tasty-hunit, tasty-quickcheck, text, time, tls
+     , unordered-containers, vector, word-compat
+     }:
+     mkDerivation {
+       pname = "mysql-pure";
+       version = "1.1.0";
+       sha256 = "098icwvp36j7r782i6bnh7r6vbb5rvmr4hrhav0yl1wzzyxq09q7";
+       libraryHaskellDepends = [
+         base binary binary-ieee754 blaze-textual bytestring
+         bytestring-lexing crypton crypton-x509 crypton-x509-store
+         crypton-x509-system data-default-class deepseq io-streams memory
+         monad-loops network pem scientific text time tls vector word-compat
+       ];
+       testHaskellDepends = [
+         attoparsec base binary bytestring bytestring-lexing containers
+         deepseq directory filepath io-streams network QuickCheck
+         quickcheck-instances scientific tasty tasty-hunit tasty-quickcheck
+         text time unordered-containers vector
+       ];
+       benchmarkHaskellDepends = [
+         attoparsec base binary bytestring case-insensitive criterion
+         deepseq directory filepath http-types scanner scientific text
+         unordered-containers vector
+       ];
+       description = "pure haskell MySQL driver";
+       license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
+       broken = true;
+     }) {};
+
   "mysql-simple" = callPackage
     ({ mkDerivation, attoparsec, base, base16-bytestring, blaze-builder
      , bytestring, containers, hspec, mysql, old-locale, pcre-light
@@ -203609,7 +207460,6 @@ self: {
        license = lib.licenses.isc;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "mywork";
-       broken = true;
      }) {};
 
   "myxine-client" = callPackage
@@ -204037,7 +207887,6 @@ self: {
        ];
        description = "A parameterized named text type and associated functionality";
        license = lib.licenses.isc;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "namelist" = callPackage
@@ -204339,7 +208188,6 @@ self: {
        license = lib.licenses.gpl3Only;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "nanq";
-       broken = true;
      }) {};
 
   "naperian" = callPackage
@@ -204932,6 +208780,25 @@ self: {
        broken = true;
      }) {};
 
+  "nekos-best" = callPackage
+    ({ mkDerivation, aeson, base, bytestring, Cabal, containers
+     , http-client, http-client-tls, http-types, random
+     }:
+     mkDerivation {
+       pname = "nekos-best";
+       version = "0.2.0.0";
+       sha256 = "08wl9yci8hrgsk5274vwr7izdfdvf34rm2iy217nijdd1g8gck4x";
+       setupHaskellDepends = [ base Cabal ];
+       libraryHaskellDepends = [
+         aeson base bytestring containers http-client http-client-tls
+         http-types random
+       ];
+       description = "Unofficial nekos.best API wrapper";
+       license = lib.licenses.mit;
+       hydraPlatforms = lib.platforms.none;
+       broken = true;
+     }) {};
+
   "nemesis" = callPackage
     ({ mkDerivation, base, containers, directory, dlist, Glob, lens
      , mtl, process, time
@@ -205238,6 +209105,41 @@ self: {
        license = lib.licenses.bsd3;
      }) {};
 
+  "net-mqtt_0_8_5_0" = callPackage
+    ({ mkDerivation, async, attoparsec, attoparsec-binary, base, binary
+     , bytestring, checkers, conduit, conduit-extra, containers
+     , crypton-connection, deepseq, HUnit, network-conduit-tls
+     , network-uri, optparse-applicative, QuickCheck, stm, tasty
+     , tasty-hunit, tasty-quickcheck, text, websockets
+     }:
+     mkDerivation {
+       pname = "net-mqtt";
+       version = "0.8.5.0";
+       sha256 = "1k66ljcskk26kqf0dhrrh4f5fc23rlfdlisgsifqjyppfqfnxfkc";
+       isLibrary = true;
+       isExecutable = true;
+       libraryHaskellDepends = [
+         async attoparsec attoparsec-binary base binary bytestring conduit
+         conduit-extra containers crypton-connection deepseq
+         network-conduit-tls network-uri QuickCheck stm text websockets
+       ];
+       executableHaskellDepends = [
+         async attoparsec attoparsec-binary base binary bytestring conduit
+         conduit-extra containers crypton-connection deepseq
+         network-conduit-tls network-uri optparse-applicative QuickCheck stm
+         text websockets
+       ];
+       testHaskellDepends = [
+         async attoparsec attoparsec-binary base binary bytestring checkers
+         conduit conduit-extra containers crypton-connection deepseq HUnit
+         network-conduit-tls network-uri QuickCheck stm tasty tasty-hunit
+         tasty-quickcheck text websockets
+       ];
+       description = "An MQTT Protocol Implementation";
+       license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
+     }) {};
+
   "net-mqtt-lens" = callPackage
     ({ mkDerivation, base, HUnit, lens, net-mqtt, tasty, tasty-hunit
      , tasty-quickcheck
@@ -205300,7 +209202,6 @@ self: {
        description = "A graph database middleware to maintain a time-varying graph";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "net-spider-cli" = callPackage
@@ -205627,8 +209528,8 @@ self: {
        pname = "netrc";
        version = "0.2.0.0";
        sha256 = "11iax3ick0im397jyyjkny7lax9bgrlgk90a25dp2jsglkphfpls";
-       revision = "11";
-       editedCabalFile = "1n9wdkb8vp2ja4myb5cxlk2chl51dv4wihp6sag1aapix8w8k90p";
+       revision = "12";
+       editedCabalFile = "1xk4q5jmnhynyajylvzsdfhnhd64hk9fmym7z1prg1v2z8764bmp";
        libraryHaskellDepends = [ base bytestring deepseq parsec ];
        testHaskellDepends = [
          base bytestring tasty tasty-golden tasty-quickcheck
@@ -206059,8 +209960,8 @@ self: {
        pname = "network-bsd";
        version = "2.8.1.0";
        sha256 = "0kid0811lv4x761fd5gv6lsc8p5j2bn41rfd366pjb642p562jfr";
-       revision = "4";
-       editedCabalFile = "1gd9a8j7fwg0jz0s6il5fk9sl0hm19ja1w56ix51wa0qi2h5x56d";
+       revision = "5";
+       editedCabalFile = "00j8p4z1ymzh99lgy8lld0slc850xr6wfafj97bb1crvn0xgfzg2";
        libraryHaskellDepends = [ base deepseq network ];
        description = "POSIX network database (<netdb.h>) API";
        license = lib.licenses.bsd3;
@@ -206413,8 +210314,6 @@ self: {
        ];
        description = "WebSocket backend for MessagePack RPC";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "network-metrics" = callPackage
@@ -206715,8 +210614,6 @@ self: {
        ];
        description = "Simple interface to TLS secured WebSockets";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "network-socket-options" = callPackage
@@ -206842,8 +210739,6 @@ self: {
        ];
        description = "In-memory instantiation of Network.Transport";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "network-transport-tcp" = callPackage
@@ -206934,6 +210829,23 @@ self: {
        license = lib.licenses.bsd3;
      }) {};
 
+  "network-unexceptional" = callPackage
+    ({ mkDerivation, base, byteslice, bytestring, error-codes, network
+     , posix-api, primitive, primitive-addr
+     }:
+     mkDerivation {
+       pname = "network-unexceptional";
+       version = "0.1.1.0";
+       sha256 = "17dmifcv7cwg875yk02r0r5npjk9zw1c03fmpk4l1qa3x7ziyj2x";
+       libraryHaskellDepends = [
+         base byteslice bytestring error-codes network posix-api primitive
+         primitive-addr
+       ];
+       description = "Network functions that do not throw exceptions";
+       license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
+     }) {};
+
   "network-uri" = callPackage
     ({ mkDerivation, base, criterion, deepseq, HUnit, parsec
      , QuickCheck, tasty, tasty-hunit, tasty-quickcheck
@@ -207606,8 +211518,8 @@ self: {
     ({ mkDerivation, base, Cabal, directory, filepath }:
      mkDerivation {
        pname = "ngx-export-distribution";
-       version = "0.3.2.4";
-       sha256 = "1zmlpxl3g90wdqjzgzhhawvv3qhr9akf595fca1mnfd2fpxg6928";
+       version = "0.4.0.0";
+       sha256 = "027av6pzd3w6c1kvfps1vf7jzvdd2hx159f7chykgy6n1zmybgxy";
        libraryHaskellDepends = [ base Cabal directory filepath ];
        description = "Build custom libraries for Nginx haskell module";
        license = lib.licenses.bsd3;
@@ -209773,7 +213685,6 @@ self: {
        description = "A Prelude inspired by the Elm programming language";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "nri-redis" = callPackage
@@ -210315,7 +214226,6 @@ self: {
        ];
        description = "Wrapper of numeric-optimization package for using with backprop package";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "numeric-prelude" = callPackage
@@ -210447,6 +214357,18 @@ self: {
        license = lib.licenses.bsd3;
      }) {};
 
+  "numhask_0_11_0_2" = callPackage
+    ({ mkDerivation, base, QuickCheck }:
+     mkDerivation {
+       pname = "numhask";
+       version = "0.11.0.2";
+       sha256 = "1km9lnkiswgf5xiy4wzcsgpnirjxbcrvj2vgr8rjj1hwfzrnwksw";
+       libraryHaskellDepends = [ base QuickCheck ];
+       description = "A numeric class hierarchy";
+       license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
+     }) {};
+
   "numhask-array" = callPackage
     ({ mkDerivation, adjunctions, base, distributive, numhask
      , QuickCheck, vector
@@ -210463,6 +214385,21 @@ self: {
        license = lib.licenses.bsd3;
      }) {};
 
+  "numhask-array_0_11_0_1" = callPackage
+    ({ mkDerivation, adjunctions, base, distributive, numhask, vector
+     }:
+     mkDerivation {
+       pname = "numhask-array";
+       version = "0.11.0.1";
+       sha256 = "1z9n5ls08b3329kh4hidcm0p6kx3672svkqaci6nlq2zxj6szgda";
+       libraryHaskellDepends = [
+         adjunctions base distributive numhask vector
+       ];
+       description = "Multi-dimensional arrays";
+       license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
+     }) {};
+
   "numhask-free" = callPackage
     ({ mkDerivation, attoparsec, base, containers, doctest, free
      , numhask, text
@@ -210513,7 +214450,6 @@ self: {
        description = "See readme.md";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "numhask-prelude" = callPackage
@@ -210553,18 +214489,16 @@ self: {
 
   "numhask-space" = callPackage
     ({ mkDerivation, adjunctions, base, containers, distributive
-     , numhask, QuickCheck, random, semigroupoids, tdigest, text, time
-     , vector
+     , numhask, random, semigroupoids, tdigest, text, time, vector
      }:
      mkDerivation {
        pname = "numhask-space";
-       version = "0.10.0.1";
-       sha256 = "04y849c5ghji734k98jbmf6dc4pmwx4ny73r493rwjcbdy31bscm";
+       version = "0.11.0.1";
+       sha256 = "19j8zlf8hmfzdk68j1di9mdw4fhqizpirnpn1wg5kbff0xbavjpr";
        libraryHaskellDepends = [
          adjunctions base containers distributive numhask random
          semigroupoids tdigest text time vector
        ];
-       testHaskellDepends = [ base QuickCheck ];
        description = "Numerical spaces";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
@@ -210790,9 +214724,7 @@ self: {
        executableHaskellDepends = [ base nvim-hs ];
        description = "Neovim plugin that runs ghcid to update the quickfix list";
        license = lib.licenses.asl20;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "nvim-hs-ghcid";
-       broken = true;
      }) {};
 
   "nvvm" = callPackage
@@ -210801,8 +214733,8 @@ self: {
      }:
      mkDerivation {
        pname = "nvvm";
-       version = "0.10.0.0";
-       sha256 = "188zf4hlqgjj5xgsfvrkynhq8pc29qfkaz6rp61ij3adc30410al";
+       version = "0.10.0.1";
+       sha256 = "1njp0zn54i9ljr9x1751a96bzm5yf6m9ka3klgrrpzm3vz7jy2if";
        setupHaskellDepends = [
          base Cabal cuda directory filepath template-haskell
        ];
@@ -210851,7 +214783,6 @@ self: {
        testToolDepends = [ tasty-discover ];
        description = "Flexible production-scale string interpolation library";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "nyan-interpolation-core" = callPackage
@@ -210873,8 +214804,6 @@ self: {
        testToolDepends = [ tasty-discover ];
        description = "Customize your nyan interpolator!";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "nyan-interpolation-simple" = callPackage
@@ -210886,7 +214815,6 @@ self: {
        libraryHaskellDepends = [ base nyan-interpolation-core text ];
        description = "Simplified lightweight interpolation";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "nylas" = callPackage
@@ -210954,7 +214882,6 @@ self: {
        license = lib.licenses.asl20;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "app";
-       broken = true;
      }) {};
 
   "o-clock" = callPackage
@@ -211145,7 +215072,6 @@ self: {
        description = "Communicate to OBD interfaces over ELM327";
        license = lib.licenses.gpl3Only;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "obdd" = callPackage
@@ -212097,7 +216023,6 @@ self: {
        ];
        description = "Concurrency utilities";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "om-http" = callPackage
@@ -212118,6 +216043,7 @@ self: {
        description = "Http utilities";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "om-http-logging" = callPackage
@@ -212206,6 +216132,7 @@ self: {
        description = "Opinionated logging utilities";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "om-plugin-imports" = callPackage
@@ -212220,9 +216147,7 @@ self: {
        executableHaskellDepends = [ base containers ghc safe ];
        description = "Plugin-based import warnings";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "om-import-warnings-test";
-       broken = true;
      }) {};
 
   "om-show" = callPackage
@@ -212234,8 +216159,6 @@ self: {
        libraryHaskellDepends = [ aeson base text ];
        description = "Utilities for showing string-like things";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "om-socket" = callPackage
@@ -212261,6 +216184,7 @@ self: {
        description = "Socket utilities";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "om-time" = callPackage
@@ -212274,8 +216198,6 @@ self: {
        ];
        description = "Misc. time utilites";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "omaketex" = callPackage
@@ -212566,6 +216488,7 @@ self: {
        description = "See readme.md";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "online-csv" = callPackage
@@ -212733,8 +216656,8 @@ self: {
        pname = "opaleye";
        version = "0.10.0.0";
        sha256 = "0x181722a8ml9a6nbcj5v9q8npjkc22qrahqkfrfrh69hb0zpqp4";
-       revision = "1";
-       editedCabalFile = "1a2rzhmm85dmip4rjrbhagwhsrdg9wdsm8a1fp4dpjknjavpjn96";
+       revision = "2";
+       editedCabalFile = "1vi9rr5zdk9mjpmgk27wcrdddv7rzmh94s30nc20987iqf3sc6ck";
        libraryHaskellDepends = [
          aeson base base16-bytestring bytestring case-insensitive
          contravariant postgresql-simple pretty product-profunctors
@@ -212987,7 +216910,6 @@ self: {
        description = "Open type representations and dynamic types";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "open-union" = callPackage
@@ -213284,7 +217206,6 @@ self: {
        description = "Haskell binding to OpenCV-3.x";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {inherit (pkgs) opencv3;};
 
   "opencv-extra" = callPackage
@@ -213519,6 +217440,7 @@ self: {
        description = "Implementation of the OpenPGP message format";
        license = "unknown";
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "openpgp-Crypto" = callPackage
@@ -214202,9 +218124,7 @@ self: {
        ];
        description = "Access data at OpenWeatherMap";
        license = lib.licenses.publicDomain;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "openweathermap";
-       broken = true;
      }) {};
 
   "operate-do" = callPackage
@@ -214301,6 +218221,7 @@ self: {
        license = lib.licenses.gpl3Only;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "oplang";
+       broken = true;
      }) {};
 
   "opml" = callPackage
@@ -214796,16 +218717,14 @@ self: {
        maintainers = [ lib.maintainers.Gabriella439 ];
      }) {};
 
-  "optparse-generic_1_5_0" = callPackage
+  "optparse-generic_1_5_1" = callPackage
     ({ mkDerivation, base, bytestring, Only, optparse-applicative, text
      , time, transformers, transformers-compat, void
      }:
      mkDerivation {
        pname = "optparse-generic";
-       version = "1.5.0";
-       sha256 = "0ydh59naf8qjbgidisvd9z8sqw16x7604ryyqhjmfrlf468barm5";
-       revision = "1";
-       editedCabalFile = "1mrq3j9ip7kcq1q0lbsfvmpjvdpfa5xhdnbxh72x4l4k8g7n7q8x";
+       version = "1.5.1";
+       sha256 = "01naichbyxwssdf55r5qzd79zfvgd1i239fp3srkz5w45p90znyr";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -215564,8 +219483,8 @@ self: {
      }:
      mkDerivation {
        pname = "orthotope";
-       version = "0.1.4.0";
-       sha256 = "1i5v9rg16igz7bw290anj98vwkv89y1crp2gc5340sbw1d48y7vb";
+       version = "0.1.6.0";
+       sha256 = "0qc4bnqvpwr7nws5id8960mwhsb3sww1dp5a4j0076l6v452zl3k";
        libraryHaskellDepends = [
          base deepseq dlist pretty QuickCheck vector
        ];
@@ -215922,7 +219841,6 @@ self: {
        description = "A purely functional E-Graph library";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "overhang" = callPackage
@@ -215950,7 +219868,6 @@ self: {
        description = "Finite overloading";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "overloaded" = callPackage
@@ -216052,15 +219969,16 @@ self: {
   "pa-field-parser" = callPackage
     ({ mkDerivation, aeson, aeson-better-errors, attoparsec, base
      , case-insensitive, containers, pa-error-tree, pa-prelude
-     , scientific, semigroupoids, text
+     , scientific, semigroupoids, template-haskell, text, time
      }:
      mkDerivation {
        pname = "pa-field-parser";
-       version = "0.1.0.1";
-       sha256 = "07yp19w7lbjdi2hxrsi15pf77lc4rkkl7axawbk96scbi5lh7zg7";
+       version = "0.2.0.1";
+       sha256 = "1dkyi4gzsp2d0hfl8plmmirz6hlgy6ncd8nvxb34ax9nxi880c6v";
        libraryHaskellDepends = [
          aeson aeson-better-errors attoparsec base case-insensitive
-         containers pa-error-tree pa-prelude scientific semigroupoids text
+         containers pa-error-tree pa-prelude scientific semigroupoids
+         template-haskell text time
        ];
        description = "“Vertical” parsing of values";
        license = lib.licenses.bsd3;
@@ -216649,7 +220567,6 @@ self: {
        description = "Client library for PagerDuty Integration and REST APIs";
        license = "unknown";
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "pagerduty-hs" = callPackage
@@ -216910,7 +220827,7 @@ self: {
        ];
      }) {};
 
-  "pandoc_3_1_6" = callPackage
+  "pandoc_3_1_6_1" = callPackage
     ({ mkDerivation, aeson, aeson-pretty, array, attoparsec, base
      , base64, binary, blaze-html, blaze-markup, bytestring
      , case-insensitive, citeproc, commonmark, commonmark-extensions
@@ -216929,8 +220846,8 @@ self: {
      }:
      mkDerivation {
        pname = "pandoc";
-       version = "3.1.6";
-       sha256 = "0d67n1gzx3bxvjgb5ql5h2fb1m6vk7v7c1sr795jvk67hkx340rv";
+       version = "3.1.6.1";
+       sha256 = "0lihc1bgis8dmmbd06i2chk0c5wwj3hp6mr4nqxcc2mp3kwh7hma";
        configureFlags = [ "-f-trypandoc" ];
        enableSeparateDataOutput = true;
        libraryHaskellDepends = [
@@ -217388,8 +221305,8 @@ self: {
      }:
      mkDerivation {
        pname = "pandoc-lua-engine";
-       version = "0.2.1";
-       sha256 = "15vcfzl02pvly5wdrj16sw9jxj7lq5r68ri1xj3ii1mmzp9vamp5";
+       version = "0.2.1.1";
+       sha256 = "0f0zd54qkrx7m6h2xll3ln788w939gwbz1ak25c4jvnya12sm23f";
        libraryHaskellDepends = [
          aeson base bytestring citeproc containers data-default doclayout
          doctemplates exceptions hslua hslua-module-doclayout
@@ -217593,8 +221510,8 @@ self: {
      }:
      mkDerivation {
        pname = "pandoc-server";
-       version = "0.1.0.1";
-       sha256 = "18vz5fmgp3xlb053as958l3w8frxh4zwzqxycyhy68zs9bpimcpr";
+       version = "0.1.0.2";
+       sha256 = "0cd7dmg9hsm8j9jrh181331rwqlng1hkvpf8ksfh394j99dkjj0h";
        libraryHaskellDepends = [
          aeson base base64 bytestring containers data-default doctemplates
          pandoc pandoc-types servant-server skylighting text
@@ -217712,8 +221629,8 @@ self: {
      }:
      mkDerivation {
        pname = "pandoc-types";
-       version = "1.23.0.1";
-       sha256 = "0ilxjlibxqj6h627wak7k17r69743hzwgl2qgr2wigk3j9a3fmji";
+       version = "1.23.1";
+       sha256 = "1hd18l1c5yh7x24gsligkbraadq12hn7mim16xyjnicdsa1s03xd";
        libraryHaskellDepends = [
          aeson base bytestring containers deepseq ghc-prim QuickCheck syb
          text transformers
@@ -217821,7 +221738,6 @@ self: {
        description = "Merge environment variables and command line options generically";
        license = lib.licenses.asl20;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "pang-a-lambda" = callPackage
@@ -218625,7 +222541,6 @@ self: {
        description = "ParDual class for Parallel <-> Sequential";
        license = lib.licenses.asl20;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "par-traverse" = callPackage
@@ -218749,7 +222664,6 @@ self: {
        testHaskellDepends = [ base data-diverse hspec transformers ];
        description = "Parameterized/indexed monoids and monads using only a single parameter type variable";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "parameterized-data" = callPackage
@@ -218774,10 +222688,8 @@ self: {
      }:
      mkDerivation {
        pname = "parameterized-utils";
-       version = "2.1.6.0";
-       sha256 = "118inzvvr72bfr1pzgxglrpd2fsz0kn9hk791imygl0fv1258rb6";
-       revision = "1";
-       editedCabalFile = "126p5f4craqwlzqpj0rbrnrl83ykvkb8w6lz3sg4m9d91sqixfrh";
+       version = "2.1.7.0";
+       sha256 = "0hf41iw4ik0xlnkw7mkp97nawzw4fn1q7yb712xkgckz2yilmg6d";
        libraryHaskellDepends = [
          base base-orphans constraints containers deepseq ghc-prim hashable
          hashtables indexed-traversable lens mtl profunctors
@@ -218790,8 +222702,6 @@ self: {
        ];
        description = "Classes and data structures for working with data-kind indexed types";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "paramtree" = callPackage
@@ -219179,8 +223089,6 @@ self: {
        ];
        description = "Parsec API encoded as a deeply-embedded DSL, for debugging and analysis";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "parsec-numbers" = callPackage
@@ -219642,6 +223550,7 @@ self: {
        description = "A fast parser combinator library backed by Typed Template Haskell";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "parsley-garnish" = callPackage
@@ -219697,7 +223606,6 @@ self: {
        description = "Parsing factorized";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "partial" = callPackage
@@ -220465,7 +224373,6 @@ self: {
        description = "A toy pathfinding library";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "pathological-bytestrings" = callPackage
@@ -220561,8 +224468,6 @@ self: {
        ];
        description = "Sentry SDK";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "patronscraper" = callPackage
@@ -220757,7 +224662,6 @@ self: {
        description = "A client to connect to PayPal's REST API (v1)";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "pb" = callPackage
@@ -221105,8 +225009,6 @@ self: {
        ];
        description = "Regular expressions via the PCRE2 C library (included)";
        license = lib.licenses.asl20;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "pdc" = callPackage
@@ -221816,28 +225718,26 @@ self: {
      }) {};
 
   "perceptual-hash" = callPackage
-    ({ mkDerivation, base, bytestring, containers, cpphs, criterion
-     , deepseq, filepath, hip, hspec, JuicyPixels, optparse-applicative
-     , par-traverse, primitive, stm, vector, vector-algorithms, webp
+    ({ mkDerivation, avif, base, bytestring, containers, cpphs
+     , criterion, deepseq, filepath, hip, hspec, JuicyPixels
+     , optparse-applicative, par-traverse, primitive, stm, vector
+     , vector-algorithms, webp
      }:
      mkDerivation {
        pname = "perceptual-hash";
-       version = "0.1.4.5";
-       sha256 = "1qh7crpb78pd7kn7g8sh5h8wr911ldz30p23m9lqfk0cyxd1pxvy";
+       version = "0.1.4.6";
+       sha256 = "0mbp4lwqwbhhpsbwi2cxrzr7pq2dg4x0sf9rc32fi6svbbcg1hb8";
        isLibrary = true;
        isExecutable = true;
        enableSeparateDataOutput = true;
        libraryHaskellDepends = [
-         base bytestring hip JuicyPixels primitive vector vector-algorithms
-         webp
+         avif base bytestring hip JuicyPixels primitive vector
+         vector-algorithms webp
        ];
-       libraryToolDepends = [ cpphs ];
        executableHaskellDepends = [
          base containers filepath optparse-applicative par-traverse stm
        ];
-       executableToolDepends = [ cpphs ];
        testHaskellDepends = [ base hspec ];
-       testToolDepends = [ cpphs ];
        benchmarkHaskellDepends = [ base criterion deepseq filepath ];
        benchmarkToolDepends = [ cpphs ];
        description = "Find duplicate images";
@@ -221882,8 +225782,8 @@ self: {
      }:
      mkDerivation {
        pname = "peregrin";
-       version = "0.4.0";
-       sha256 = "1i9zc3cq5pl3zffm5n5ijnvcp22cx945n0sfr5xxdm91drg42b4d";
+       version = "0.4.2";
+       sha256 = "1xnzkv6kwpgpa5cpz7rs4p2myw96j7z5aw1dqdk14gs7f1wbdhwb";
        libraryHaskellDepends = [ base bytestring postgresql-simple text ];
        testHaskellDepends = [
          base hspec pg-harness-client postgresql-simple resource-pool text
@@ -221902,8 +225802,8 @@ self: {
      }:
      mkDerivation {
        pname = "perf";
-       version = "0.10.3";
-       sha256 = "0kk880j93wz9jfzlniw5isgznypcqbdsimv2lvwvcq7l02iz4564";
+       version = "0.12.0.0";
+       sha256 = "15l4cx2b2wjinhhgsv646frxl69hvyh9dkqn24719xg8acmqyyyx";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -221913,11 +225813,11 @@ self: {
        executableHaskellDepends = [
          base containers deepseq formatn gauge mtl optparse-applicative text
        ];
+       benchmarkHaskellDepends = [ base ];
        description = "Low-level run time measurement";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "perf-explore";
-       broken = true;
      }) {};
 
   "perf-analysis" = callPackage
@@ -222691,8 +226591,8 @@ self: {
        pname = "persistent-mongoDB";
        version = "2.13.0.1";
        sha256 = "1ck74kpzkz623c43qb8r1cjq8chi2p721vx95zrpciz8jm496235";
-       revision = "3";
-       editedCabalFile = "163c5q6fwnp96y952qq5ya26z64lr6abblmpxfqxcsalfcgx3rad";
+       revision = "4";
+       editedCabalFile = "01zfwp8jyr65sc3mijv1a8x0zs4csmr71nn6ksr9d18p3lpd9zz8";
        libraryHaskellDepends = [
          aeson base bson bytestring cereal conduit http-api-data mongoDB
          network path-pieces persistent resource-pool resourcet text time
@@ -222800,6 +226700,40 @@ self: {
        mainProgram = "persistent-mysql-haskell-example";
      }) {};
 
+  "persistent-mysql-pure" = callPackage
+    ({ mkDerivation, aeson, base, bytestring, conduit, containers
+     , fast-logger, hspec, http-api-data, HUnit, io-streams
+     , monad-logger, mysql-haskell, network, path-pieces, persistent
+     , persistent-qq, persistent-test, QuickCheck, quickcheck-instances
+     , resource-pool, resourcet, text, time, tls, transformers
+     , unliftio-core
+     }:
+     mkDerivation {
+       pname = "persistent-mysql-pure";
+       version = "1.0.1";
+       sha256 = "1kw51ijhwd5iv8kaz16yxrmfmdfakng3qdvd9yhj3dvjjz07d9g7";
+       isLibrary = true;
+       isExecutable = true;
+       libraryHaskellDepends = [
+         aeson base bytestring conduit containers io-streams monad-logger
+         mysql-haskell network persistent resource-pool resourcet text time
+         tls transformers unliftio-core
+       ];
+       executableHaskellDepends = [
+         base monad-logger persistent transformers
+       ];
+       testHaskellDepends = [
+         aeson base bytestring containers fast-logger hspec http-api-data
+         HUnit monad-logger mysql-haskell path-pieces persistent
+         persistent-qq persistent-test QuickCheck quickcheck-instances
+         resourcet text time transformers unliftio-core
+       ];
+       description = "A pure haskell backend for the persistent library using MySQL database server";
+       license = lib.licenses.mit;
+       hydraPlatforms = lib.platforms.none;
+       mainProgram = "persistent-mysql-pure-example";
+     }) {};
+
   "persistent-odbc" = callPackage
     ({ mkDerivation, aeson, base, bytestring, conduit, containers
      , convertible, HDBC, HDBC-odbc, monad-logger, persistent
@@ -223219,7 +227153,6 @@ self: {
        description = "Backend for persistent library using Zookeeper";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "persona" = callPackage
@@ -223741,7 +227674,6 @@ self: {
        ];
        description = "FAT filesystem sort utility";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "phizzle" = callPackage
@@ -223771,12 +227703,12 @@ self: {
        ];
        description = "A shared by different general implementations of the PhLADiPreLiO functionality";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "phladiprelio-general-simple" = callPackage
-    ({ mkDerivation, base, cli-arguments, directory, halfsplit
-     , phladiprelio-general-shared, phonetic-languages-constraints-array
+    ({ mkDerivation, async, base, cli-arguments, directory, halfsplit
+     , phladiprelio-general-shared, phladiprelio-tests
+     , phonetic-languages-constraints-array
      , phonetic-languages-permutations-array
      , phonetic-languages-phonetics-basics
      , phonetic-languages-simplified-base, rev-scientific
@@ -223784,10 +227716,11 @@ self: {
      }:
      mkDerivation {
        pname = "phladiprelio-general-simple";
-       version = "0.6.2.0";
-       sha256 = "01l0cc82c3ndx0fwsslj74nqs4ippa6mw86lvbkb3mvcvn85ncj8";
+       version = "0.8.0.0";
+       sha256 = "0bq82h7y2qd5kx3gig579v9n6znvyfz1bzkjjkcbp9rpywkk0gy8";
        libraryHaskellDepends = [
-         base cli-arguments directory halfsplit phladiprelio-general-shared
+         async base cli-arguments directory halfsplit
+         phladiprelio-general-shared phladiprelio-tests
          phonetic-languages-constraints-array
          phonetic-languages-permutations-array
          phonetic-languages-phonetics-basics
@@ -223796,7 +227729,6 @@ self: {
        ];
        description = "A generalized functionality of PhLADiPreLiO for different languages that uses hash algorithms";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "phladiprelio-rhythmicity-shared" = callPackage
@@ -223810,6 +227742,17 @@ self: {
        license = lib.licenses.mit;
      }) {};
 
+  "phladiprelio-tests" = callPackage
+    ({ mkDerivation, base }:
+     mkDerivation {
+       pname = "phladiprelio-tests";
+       version = "0.1.0.0";
+       sha256 = "1pzqa1bav4qrdxif0rl4vggm1wirv4zf2hycmq9mva97m6swjqcl";
+       libraryHaskellDepends = [ base ];
+       description = "Common for Ukrainian and general data for test mode";
+       license = lib.licenses.mit;
+     }) {};
+
   "phladiprelio-ukrainian-shared" = callPackage
     ({ mkDerivation, base, directory, mmsyn2-array
      , ukrainian-phonetics-basic-array
@@ -223823,12 +227766,11 @@ self: {
        ];
        description = "A shared by different Ukrainian implementations of the PhLADiPreLiO functionality";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "phladiprelio-ukrainian-simple" = callPackage
-    ({ mkDerivation, base, cli-arguments, directory, halfsplit
-     , phladiprelio-ukrainian-shared
+    ({ mkDerivation, async, base, cli-arguments, directory, halfsplit
+     , phladiprelio-tests, phladiprelio-ukrainian-shared
      , phonetic-languages-constraints-array
      , phonetic-languages-permutations-array
      , phonetic-languages-simplified-base
@@ -223837,12 +227779,12 @@ self: {
      }:
      mkDerivation {
        pname = "phladiprelio-ukrainian-simple";
-       version = "0.8.1.0";
-       sha256 = "1alqcxbfirffaxcfp3hykh3vwpf4yr1kj7maipgj7p7az45arqy5";
+       version = "0.10.0.0";
+       sha256 = "01xxrhfcfcw9s0h2zyn3vbwvbidklygm5z46cbax2ks81qqd01mi";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
-         base cli-arguments directory halfsplit
+         async base cli-arguments directory halfsplit phladiprelio-tests
          phladiprelio-ukrainian-shared phonetic-languages-constraints-array
          phonetic-languages-permutations-array
          phonetic-languages-simplified-base
@@ -223850,16 +227792,15 @@ self: {
          rhythmic-sequences ukrainian-phonetics-basic-array
        ];
        executableHaskellDepends = [
-         base cli-arguments directory halfsplit
+         async base cli-arguments directory halfsplit phladiprelio-tests
          phladiprelio-ukrainian-shared phonetic-languages-constraints-array
          phonetic-languages-permutations-array
          phonetic-languages-simplified-base
          phonetic-languages-ukrainian-array rev-scientific
          rhythmic-sequences ukrainian-phonetics-basic-array
        ];
-       description = "A PhLADiPreLiO implementation for Ukrainian that uses hashes";
+       description = "A PhLADiPreLiO implementation for Ukrainian that uses hashes and asynchronous concurrency";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "phladiprelioUkr";
      }) {};
 
@@ -224032,8 +227973,6 @@ self: {
        libraryHaskellDepends = [ base subG ];
        description = "Constraints to filter the needed permutations";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "phonetic-languages-examples" = callPackage
@@ -224079,8 +228018,6 @@ self: {
        libraryHaskellDepends = [ base filters-basic mmsyn2-array ];
        description = "Allows to change the structure of the function output";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "phonetic-languages-general" = callPackage
@@ -224121,8 +228058,6 @@ self: {
        libraryHaskellDepends = [ base subG ];
        description = "Permutations and universal set related functions for the phonetic-languages series";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "phonetic-languages-phonetics-basics" = callPackage
@@ -224143,9 +228078,7 @@ self: {
        ];
        description = "A library for working with generalized phonetic languages usage";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "pldPL";
-       broken = true;
      }) {};
 
   "phonetic-languages-plus" = callPackage
@@ -224166,9 +228099,7 @@ self: {
        ];
        description = "Some common shared between different packages functions";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "distributionTextG";
-       broken = true;
      }) {};
 
   "phonetic-languages-properties" = callPackage
@@ -224214,7 +228145,6 @@ self: {
        ];
        description = "A basics of the phonetic-languages functionality that can be groupped";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "phonetic-languages-simplified-common" = callPackage
@@ -224333,6 +228263,7 @@ self: {
        description = "Helps to create texts with the given phonetic properties (e. g. poetic).";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "phonetic-languages-simplified-generalized-examples-common" = callPackage
@@ -224349,7 +228280,6 @@ self: {
        ];
        description = "Some common code for phonetic languages generalized functionality";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "phonetic-languages-simplified-generalized-properties-array" = callPackage
@@ -224369,7 +228299,6 @@ self: {
        ];
        description = "Some 'properties' of the phonetic languages approach text";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "phonetic-languages-simplified-lists-examples" = callPackage
@@ -224429,6 +228358,7 @@ self: {
        description = "Some properties of the data related to rhythmicity";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "phonetic-languages-simplified-properties-array-common" = callPackage
@@ -224532,9 +228462,7 @@ self: {
        executableHaskellDepends = [ base mmsyn2-array mmsyn5 ];
        description = "Prepares Ukrainian text to be used as a phonetic language text";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "unconcatUkr";
-       broken = true;
      }) {};
 
   "phonetic-languages-vector" = callPackage
@@ -224643,7 +228571,6 @@ self: {
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "phybin";
-       broken = true;
      }) {};
 
   "physics" = callPackage
@@ -225122,6 +229049,31 @@ self: {
        license = lib.licenses.bsd3;
      }) {};
 
+  "pinch_0_5_0_0" = callPackage
+    ({ mkDerivation, array, async, base, bytestring, cereal, containers
+     , deepseq, ghc-prim, hashable, hspec, hspec-discover, network
+     , network-run, QuickCheck, semigroups, text, unordered-containers
+     , vector
+     }:
+     mkDerivation {
+       pname = "pinch";
+       version = "0.5.0.0";
+       sha256 = "186b7576f5h49j83r3r8ljk8kb98x1as0hdsrjflhps158qh3xdp";
+       libraryHaskellDepends = [
+         array base bytestring cereal containers deepseq ghc-prim hashable
+         network semigroups text unordered-containers vector
+       ];
+       libraryToolDepends = [ hspec-discover ];
+       testHaskellDepends = [
+         async base bytestring cereal containers hspec network network-run
+         QuickCheck semigroups text unordered-containers vector
+       ];
+       testToolDepends = [ hspec-discover ];
+       description = "An alternative implementation of Thrift for Haskell";
+       license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
+     }) {};
+
   "pinch-gen" = callPackage
     ({ mkDerivation, base, bytestring, directory, filepath
      , language-thrift, megaparsec, mtl, optparse-applicative
@@ -225186,7 +229138,6 @@ self: {
        description = "Functional 2D Game Framework";
        license = lib.licenses.zlib;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "ping" = callPackage
@@ -225197,6 +229148,8 @@ self: {
        pname = "ping";
        version = "0.1.0.5";
        sha256 = "11zcdrji1m1b9rhi10fv4pr2cs488c13qb5nggi7abhkavzvxbzb";
+       revision = "1";
+       editedCabalFile = "1pa4zdvn5579vl6084ai3zf236rac5hd2lb5jn6hyfyd7ma566i5";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -225586,6 +229539,7 @@ self: {
        description = "Streaming compression/decompression via pipes";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {inherit (pkgs) bzip2;};
 
   "pipes-cacophony" = callPackage
@@ -227505,8 +231459,6 @@ self: {
        libraryHaskellDepends = [ aeson base text ];
        description = "Contravariant logging library";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "plow-log-async" = callPackage
@@ -227523,6 +231475,7 @@ self: {
        description = "Async IO tracer for plow-log";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "plucky" = callPackage
@@ -228033,7 +231986,6 @@ self: {
        license = lib.licenses.mpl20;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "poke-exe";
-       broken = true;
      }) {};
 
   "pokemon-go-protobuf-types" = callPackage
@@ -228411,6 +232363,7 @@ self: {
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "polyglot";
+       broken = true;
      }) {};
 
   "polymap" = callPackage
@@ -228503,8 +232456,8 @@ self: {
        pname = "polyparse";
        version = "1.13";
        sha256 = "0yvhg718dlksiw3v27m2d8m1sn4r4f5s0p56zq3lynhy1sc74k0w";
-       revision = "7";
-       editedCabalFile = "197q2c1nb38yn6cbcnj9dn03anwqrwf94bh03mpldw1w2vapd4ay";
+       revision = "8";
+       editedCabalFile = "0gb5cdf46rh5vbxssj6zc3l85fmyg5b44hzjrls1p8rl1l1p3pda";
        libraryHaskellDepends = [ base bytestring text ];
        description = "A variety of alternative parser combinator libraries";
        license = "LGPL";
@@ -228624,8 +232577,6 @@ self: {
        testToolDepends = [ hspec-discover ];
        description = "QuickCheck for Polysemy";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "polysemy-chronos" = callPackage
@@ -228667,7 +232618,6 @@ self: {
        ];
        description = "Polysemy effects for concurrency";
        license = "BSD-2-Clause-Patent";
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "polysemy-db" = callPackage
@@ -228857,7 +232807,6 @@ self: {
        description = "Run a KVStore as a single json file in polysemy";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "polysemy-log" = callPackage
@@ -228882,7 +232831,6 @@ self: {
        ];
        description = "Polysemy effects for logging";
        license = "BSD-2-Clause-Patent";
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "polysemy-log-co" = callPackage
@@ -228925,7 +232873,6 @@ self: {
        ];
        description = "Di adapters for Polysemy.Log";
        license = "BSD-2-Clause-Patent";
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "polysemy-managed" = callPackage
@@ -228982,7 +232929,6 @@ self: {
        description = "Logging functions for polysemy-methodology";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "polysemy-methodology-composite" = callPackage
@@ -229017,8 +232963,6 @@ self: {
        testToolDepends = [ hspec-discover ];
        description = "Mocking framework for polysemy effects";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "polysemy-optics" = callPackage
@@ -229031,6 +232975,7 @@ self: {
        description = "Optics for Polysemy";
        license = lib.licenses.bsd2;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "polysemy-path" = callPackage
@@ -229045,7 +232990,6 @@ self: {
        description = "Polysemy versions of Path functions";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "polysemy-plugin" = callPackage
@@ -229095,6 +233039,7 @@ self: {
        description = "Polysemy effects for system processes";
        license = "BSD-2-Clause-Patent";
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "polysemy-readline" = callPackage
@@ -229154,8 +233099,6 @@ self: {
        ];
        description = "Polysemy error tracking";
        license = "BSD-2-Clause-Patent";
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "polysemy-scoped-fs" = callPackage
@@ -229276,7 +233219,6 @@ self: {
        description = "Experimental video processing DSL for polysemy";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "polysemy-vinyl" = callPackage
@@ -229295,7 +233237,6 @@ self: {
        description = "Functions for mapping vinyl records in polysemy";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "polysemy-webserver" = callPackage
@@ -229327,8 +233268,8 @@ self: {
      }:
      mkDerivation {
        pname = "polysemy-zoo";
-       version = "0.8.1.0";
-       sha256 = "0p8ljkpmcf0gf29b8dl1xwra189xfs5ba88fgmys2jcg2wz6yy1d";
+       version = "0.8.2.0";
+       sha256 = "0laadgqsf817kg3l8qv5g9pkpf36kwky7c2c21ixb03kx1x0rzfp";
        libraryHaskellDepends = [
          async base constraints containers contravariant exceptions
          ghc-compact ghc-prim mtl polysemy random reflection streaming text
@@ -229342,8 +233283,6 @@ self: {
        testToolDepends = [ hspec-discover ];
        description = "Experimental, user-contributed effects and interpreters for polysemy";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "polyseq" = callPackage
@@ -229366,6 +233305,7 @@ self: {
        license = lib.licenses.publicDomain;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "polyseq.cgi";
+       broken = true;
      }) {};
 
   "polysoup" = callPackage
@@ -230303,8 +234243,8 @@ self: {
      }:
      mkDerivation {
        pname = "posix-api";
-       version = "0.6.0.1";
-       sha256 = "0c39ghbnimsl4m9gn8lsr09ii0xn4ahqbid74jiig1cw931y0xap";
+       version = "0.6.1.0";
+       sha256 = "0dplxy3zv9n239c8w7ja95qv2f343sz4n83ji42f0f8v00ryghys";
        libraryHaskellDepends = [
          base byte-order byteslice primitive primitive-addr primitive-offset
          primitive-unlifted run-st text-short
@@ -230737,6 +234677,21 @@ self: {
        license = lib.licenses.bsd3;
      }) {inherit (pkgs) postgresql;};
 
+  "postgresql-libpq_0_10_0_0" = callPackage
+    ({ mkDerivation, base, bytestring, Cabal, postgresql, unix }:
+     mkDerivation {
+       pname = "postgresql-libpq";
+       version = "0.10.0.0";
+       sha256 = "0qnzbc1rws6kgy3g1y9n7c2mh190996jlwrp0j3hbsmgdy9aig2l";
+       setupHaskellDepends = [ base Cabal ];
+       libraryHaskellDepends = [ base bytestring unix ];
+       librarySystemDepends = [ postgresql ];
+       testHaskellDepends = [ base bytestring ];
+       description = "low-level binding to libpq";
+       license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
+     }) {inherit (pkgs) postgresql;};
+
   "postgresql-libpq-notify" = callPackage
     ({ mkDerivation, async, base, hspec, postgres-options
      , postgresql-libpq, stm, text, tmp-postgres
@@ -230762,6 +234717,8 @@ self: {
        pname = "postgresql-lo-stream";
        version = "0.1.1.1";
        sha256 = "0m2s717qb42ywiqvdi18nybjadkivygfi2pbflip5rvphqfc8k8x";
+       revision = "1";
+       editedCabalFile = "0z1xbayvx20d6m89hch2zfsljy37cqqmb82g32lk1raq69h9pihc";
        libraryHaskellDepends = [
          base bytestring io-streams lifted-base monad-loops mtl
          postgresql-simple
@@ -231047,6 +235004,35 @@ self: {
        maintainers = [ lib.maintainers.maralorn ];
      }) {};
 
+  "postgresql-simple_0_7_0_0" = callPackage
+    ({ mkDerivation, aeson, attoparsec, base, base16-bytestring
+     , bytestring, case-insensitive, containers, cryptohash-md5
+     , filepath, hashable, HUnit, inspection-testing, Only
+     , postgresql-libpq, scientific, tasty, tasty-golden, tasty-hunit
+     , template-haskell, text, time-compat, transformers, uuid-types
+     , vector
+     }:
+     mkDerivation {
+       pname = "postgresql-simple";
+       version = "0.7.0.0";
+       sha256 = "0gm1wk2zq35h46v0l1qc0z63jv3gxgqd059j1mcmww80a6sipf4c";
+       libraryHaskellDepends = [
+         aeson attoparsec base bytestring case-insensitive containers
+         hashable Only postgresql-libpq scientific template-haskell text
+         time-compat transformers uuid-types vector
+       ];
+       testHaskellDepends = [
+         aeson base base16-bytestring bytestring case-insensitive containers
+         cryptohash-md5 filepath HUnit inspection-testing postgresql-libpq
+         tasty tasty-golden tasty-hunit text time-compat vector
+       ];
+       benchmarkHaskellDepends = [ base vector ];
+       description = "Mid-Level PostgreSQL client library";
+       license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
+       maintainers = [ lib.maintainers.maralorn ];
+     }) {};
+
   "postgresql-simple-bind" = callPackage
     ({ mkDerivation, attoparsec, base, bytestring, data-default
      , exceptions, heredoc, hspec, postgresql-simple, template-haskell
@@ -231244,8 +235230,8 @@ self: {
        pname = "postgresql-simple-url";
        version = "0.2.1.0";
        sha256 = "1jg9gvpidrfy2hqixwqsym1l1mnkafmxwq58jpbzdmrbvryga1qk";
-       revision = "7";
-       editedCabalFile = "1k5qpzxf4gp3smpriawdbwifyyf5dp2qfqm5wxk1gmbviqwm4f70";
+       revision = "8";
+       editedCabalFile = "13j3pfgwsnv4dmnqg36x134zm0mm9r76kg59dc3dmq4pzgpbbw1w";
        libraryHaskellDepends = [
          base network-uri postgresql-simple split
        ];
@@ -231989,6 +235975,24 @@ self: {
        license = lib.licenses.bsd3;
      }) {};
 
+  "pqueue_1_5_0_0" = callPackage
+    ({ mkDerivation, base, deepseq, indexed-traversable, random, tasty
+     , tasty-bench, tasty-quickcheck
+     }:
+     mkDerivation {
+       pname = "pqueue";
+       version = "1.5.0.0";
+       sha256 = "00hzrhz3n55ahyv2h183l72jsl3q01p4ns0063p0vjaa5j6qpy0v";
+       libraryHaskellDepends = [ base deepseq indexed-traversable ];
+       testHaskellDepends = [
+         base deepseq indexed-traversable tasty tasty-quickcheck
+       ];
+       benchmarkHaskellDepends = [ base deepseq random tasty-bench ];
+       description = "Reliable, persistent, fast priority queues";
+       license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
+     }) {};
+
   "pqueue-mtl" = callPackage
     ({ mkDerivation, base, containers, ghc-prim, MaybeT, mtl
      , stateful-mtl, uvector
@@ -232077,8 +236081,6 @@ self: {
        testHaskellDepends = [ aeson base lens ];
        description = "A first class record field library";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "preamble" = callPackage
@@ -232369,6 +236371,7 @@ self: {
        description = "A library for building a prefork-style server quickly";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "pregame" = callPackage
@@ -233040,10 +237043,8 @@ self: {
      }:
      mkDerivation {
        pname = "prettychart";
-       version = "0.1.0";
-       sha256 = "1vpw8jwsjyryz1sx1g79hc95sxjy8q5i4yig5f9xc58qy2cg6z1k";
-       revision = "1";
-       editedCabalFile = "0laddpy0xjdzdsd7iqc2b0h01dixs903yiwy3145pd0c251dxb4z";
+       version = "0.1.1.0";
+       sha256 = "1cdxdin7k4rswph61h625lkf57669xiid67c09a7libqdq6yya98";
        libraryHaskellDepends = [
          async base box bytestring chart-svg containers flatparse formatn
          lucid mealy numhask-space optics-core profunctors text time web-rep
@@ -233539,6 +237540,8 @@ self: {
        pname = "primitive-containers";
        version = "0.5.1";
        sha256 = "057x0l6zyhffim37v8q63ancwg8jl2sfn8hmrwy3kmn9cnh2zw94";
+       revision = "1";
+       editedCabalFile = "1xdn0kdd4qgchzpdvc5fsmphc4025z8pd67lw4yhaw6am9wyc7mm";
        libraryHaskellDepends = [
          base contiguous deepseq hashable primitive primitive-sort
          primitive-unlifted
@@ -233709,6 +237712,8 @@ self: {
        pname = "primitive-sort";
        version = "0.1.2.0";
        sha256 = "0nalkfycg9fpvwi8h2a4k31wmmn1ny16b43kj75gxcpmbc4x6azz";
+       revision = "1";
+       editedCabalFile = "0c0r6db3x5jngqgzylm5s3d5vy9ncnl0642wrdg92cnqzfrqbvgw";
        libraryHaskellDepends = [ base contiguous ghc-prim primitive ];
        testHaskellDepends = [
          base containers doctest HUnit primitive QuickCheck smallcheck tasty
@@ -234595,8 +238600,8 @@ self: {
        pname = "product-profunctors";
        version = "0.11.1.1";
        sha256 = "1nhwpfjz4iz30h8q7d40hlibqqymvmcf6wmbl6h3212d54hqdgiz";
-       revision = "1";
-       editedCabalFile = "12qgjm4r6k28vm1756grhgh16g4qv0s2nri8ysqi7jkvbjdm1jn4";
+       revision = "2";
+       editedCabalFile = "0v595d8b2lv89nxyhgmzyp90i1h9vzlhbp6ry9gf99n7rdp525fw";
        libraryHaskellDepends = [
          base bifunctors contravariant profunctors tagged template-haskell
          th-abstraction
@@ -235011,7 +239016,6 @@ self: {
        description = "Relational Algebra Engine";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "project-template" = callPackage
@@ -235203,16 +239207,14 @@ self: {
      }:
      mkDerivation {
        pname = "prometheus";
-       version = "2.2.3";
-       sha256 = "1ggav326fpkrvg39a5rxg2ysg6mb16zzdv4yw0753fyk61v2g4pz";
+       version = "2.2.4";
+       sha256 = "15ykkpiq1vw4ii9x31jrfryl073kd90dp0p05c3avgqczp3985zp";
        libraryHaskellDepends = [
          atomic-primops base bytestring containers http-client
          http-client-tls http-types network-uri text transformers wai warp
        ];
        description = "Prometheus Haskell Client";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "prometheus-client" = callPackage
@@ -235224,8 +239226,8 @@ self: {
      }:
      mkDerivation {
        pname = "prometheus-client";
-       version = "1.1.0";
-       sha256 = "1f9csz40asdkmmh6kp8sc8gkbxvkrvv8v2byxn4jp67lg7s3g9bx";
+       version = "1.1.1";
+       sha256 = "1j248vy67j0wqfbh5wgqxa4l99ynsf9r2651wghqc7b5973rww3a";
        libraryHaskellDepends = [
          atomic-primops base bytestring clock containers data-sketches
          deepseq exceptions mtl primitive stm text transformers
@@ -235304,8 +239306,6 @@ self: {
        ];
        description = "Export metrics from /proc for the current process";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "prometheus-wai-middleware" = callPackage
@@ -235328,6 +239328,7 @@ self: {
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "prometheus-wai-middleware-example";
+       broken = true;
      }) {};
 
   "promise" = callPackage
@@ -235407,6 +239408,7 @@ self: {
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "proof-assistant-bot";
+       broken = true;
      }) {};
 
   "proof-combinators" = callPackage
@@ -235568,8 +239570,6 @@ self: {
        testHaskellDepends = [ base tasty tasty-hunit tasty-quickcheck ];
        description = "Proquints: Identifiers that are Readable, Spellable, and Pronounceable";
        license = "EUPL-1.2";
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "prosidy" = callPackage
@@ -235784,7 +239784,6 @@ self: {
        description = "Utilities functions to proto-lens";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "proto-lens-descriptors" = callPackage
@@ -235977,6 +239976,7 @@ self: {
        description = "A low-level implementation of the Protocol Buffers (version 3) wire format";
        license = lib.licenses.asl20;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "protobuf" = callPackage
@@ -236425,7 +240425,6 @@ self: {
        description = "Language support for the PureScript programming language";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "pseudo-boolean" = callPackage
@@ -236894,6 +240893,7 @@ self: {
        description = "A library for Google/SixApart pubsub hub interaction";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "puffytools" = callPackage
@@ -237526,7 +241526,6 @@ self: {
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "purs-tsd-gen";
-       broken = true;
      }) {};
 
   "pursuit-client" = callPackage
@@ -238524,8 +242523,6 @@ self: {
        libraryHaskellDepends = [ base ghc-prim ];
        description = "quantity semaphores";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "qt" = callPackage
@@ -239103,8 +243100,8 @@ self: {
      }:
      mkDerivation {
        pname = "quic";
-       version = "0.1.2";
-       sha256 = "04ag4lvrlylr1qks6mvhp1pbbz66yy44s2c0z6wz49nc30x8qq8n";
+       version = "0.1.3";
+       sha256 = "0n6l559q5y31jwr8bba3jav7ghsg76y3w0rbi7lz9jsrh0i4l7bh";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -239341,8 +243338,6 @@ self: {
        doHaddock = false;
        description = "Testing group class instances with QuickCheck";
        license = lib.licenses.asl20;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "quickcheck-groups_0_0_1_0" = callPackage
@@ -239366,7 +243361,6 @@ self: {
        description = "Testing group class instances with QuickCheck";
        license = lib.licenses.asl20;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "quickcheck-higherorder" = callPackage
@@ -239441,7 +243435,6 @@ self: {
        description = "Library for lockstep-style testing with 'quickcheck-dynamic'";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "quickcheck-monoid-subclasses" = callPackage
@@ -239467,8 +243460,6 @@ self: {
        doHaddock = false;
        description = "Testing monoid subclass instances with QuickCheck";
        license = lib.licenses.asl20;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "quickcheck-monoid-subclasses_0_3_0_0" = callPackage
@@ -239495,7 +243486,6 @@ self: {
        description = "Testing monoid subclass instances with QuickCheck";
        license = lib.licenses.asl20;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "quickcheck-poly" = callPackage
@@ -240490,9 +244480,7 @@ self: {
        ];
        description = "Can be used to calculate the durations of the approximations of the Ukrainian phonemes";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "pldUkr";
-       broken = true;
      }) {};
 
   "r3x-haskell-sdk" = callPackage
@@ -240690,8 +244678,6 @@ self: {
        ];
        description = "Radix tree data structive over short byte-strings";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "radixtree" = callPackage
@@ -240998,6 +244984,8 @@ self: {
        pname = "ralist";
        version = "0.4.0.0";
        sha256 = "1axn2mh1jiz5d39ygf0hg7a0bkywnld4j8jjkflycks1yr7mxha1";
+       revision = "1";
+       editedCabalFile = "10i40p8xp4zm50lq3g0k6crsqg4rrwq12wkjpqqin9dsppw5085n";
        libraryHaskellDepends = [
          base deepseq indexed-traversable transformers
        ];
@@ -241605,8 +245593,6 @@ self: {
        ];
        description = "Efficient sets for semi-contiguous data";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "rank-product" = callPackage
@@ -242254,6 +246240,8 @@ self: {
        pname = "rawfilepath";
        version = "1.0.1";
        sha256 = "016bdivq8b3visv56jriw39ld5yg6c75x1qy69sm7am27i9728g3";
+       revision = "1";
+       editedCabalFile = "00s2ri39y7amravnlbkbrx41chwbiryw1k8s0svim6ay43r4b0yp";
        libraryHaskellDepends = [ base bytestring unix ];
        testHaskellDepends = [ base bytestring ];
        description = "Use RawFilePath instead of FilePath";
@@ -242451,8 +246439,8 @@ self: {
      }:
      mkDerivation {
        pname = "rcu";
-       version = "0.2.6";
-       sha256 = "14kg45ycx5wa3k9xn7glp4kdy8xz119m4gs91114qx0rkbix2f5h";
+       version = "0.2.7";
+       sha256 = "0iw1w2jch8a6ap2nrkis740vbi5sjgk7hdbv9d4m08j4c402q3c9";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -242717,7 +246705,6 @@ self: {
        description = "Programmatically edit MIDI events via ALSA and reactive-banana";
        license = lib.licenses.bsd3;
        badPlatforms = lib.platforms.darwin;
-       hydraPlatforms = lib.platforms.none;
        maintainers = [ lib.maintainers.thielema ];
      }) {};
 
@@ -242783,8 +246770,6 @@ self: {
        ];
        description = "Extend reactive-banana to multiple events per time point";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "reactive-banana-gi-gtk" = callPackage
@@ -242943,7 +246928,6 @@ self: {
        ];
        description = "Process MIDI events via reactive-banana and JACK";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        maintainers = [ lib.maintainers.thielema ];
      }) {};
 
@@ -242966,7 +246950,6 @@ self: {
        ];
        description = "Process MIDI events via reactive-banana";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        maintainers = [ lib.maintainers.thielema ];
      }) {};
 
@@ -243804,8 +247787,6 @@ self: {
        ];
        description = "Recover run-time type information from the GHC heap";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "recursion" = callPackage
@@ -243827,8 +247808,8 @@ self: {
        pname = "recursion-schemes";
        version = "5.2.2.4";
        sha256 = "0hyvqh8kp2pw4kwvisyz9msjy41y218f9l6fpsrbla4s1b4in58c";
-       revision = "2";
-       editedCabalFile = "1617jz77d4f2hf54jfz30zbf18rcgl6h0nzn3rcl0gjxjavf5aq6";
+       revision = "3";
+       editedCabalFile = "06bffrsh1gcp65gyv0837bd3gv5d5h2879nadv29irc52fyvzwxl";
        libraryHaskellDepends = [
          base base-orphans comonad containers data-fix free template-haskell
          th-abstraction transformers
@@ -244006,7 +247987,6 @@ self: {
        ];
        description = "hide secret text on the terminal";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "redact";
      }) {};
 
@@ -244094,8 +248074,6 @@ self: {
        ];
        description = "Specify valid redis globs";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "redis-hs" = callPackage
@@ -244840,6 +248818,8 @@ self: {
        pname = "reflex-dom-core";
        version = "0.8.0.0";
        sha256 = "17zj8a7wmbf4019gb6m9bb4nybbqmbc11qydc8l9h9p3kavhbd0j";
+       revision = "1";
+       editedCabalFile = "0ysr37d3paqjgbri8xk98w1a98pdq8ak1p1ddn2dayvk1w2s8q9c";
        libraryHaskellDepends = [
          aeson base bifunctors bimap blaze-builder bytestring
          case-insensitive commutative-semigroups constraints containers
@@ -245044,8 +249024,6 @@ self: {
        ];
        description = "Reflex FRP interface for watching files";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "reflex-gadt-api" = callPackage
@@ -245057,6 +249035,8 @@ self: {
        pname = "reflex-gadt-api";
        version = "0.2.2.1";
        sha256 = "042dad8gilpzn1ng4ck5mmca9q257vi9317xxr0in0sp30sn1g11";
+       revision = "1";
+       editedCabalFile = "0923xxxqn93szs8ai45xazp2xs011xq68368y5q2mjiww74dp0xx";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -245081,8 +249061,8 @@ self: {
      }:
      mkDerivation {
        pname = "reflex-ghci";
-       version = "0.2.0.0";
-       sha256 = "1j8hb81b8889dsqg5x2p52fizzfp61bxicd3m4vyx6ay9hjgq917";
+       version = "0.2.0.1";
+       sha256 = "0pdlba8rqdlgzg3n4vf0brkdczw2146myzzr0855j3b5c0fkszfp";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -245213,7 +249193,6 @@ self: {
        license = lib.licenses.gpl3Plus;
        platforms = lib.platforms.linux;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "reflex-localize" = callPackage
@@ -245313,10 +249292,8 @@ self: {
      }:
      mkDerivation {
        pname = "reflex-process";
-       version = "0.3.2.0";
-       sha256 = "1ijlp762ckyxqpjkax692zmzk1b0ziafbiid4351lvk6n4sy5n56";
-       revision = "1";
-       editedCabalFile = "1akmqvsvdip4vlsl170yg6l3rndgbcq8m5wlsl889dr7z9wis6rm";
+       version = "0.3.2.1";
+       sha256 = "039zzj9f4fli8kbrdgjd27fjkj6f0h74b4r6pfbzz3y9njgw4vz1";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -245601,7 +249578,6 @@ self: {
        description = "Tools for maintaining a database";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "reg-alloc" = callPackage
@@ -245914,8 +249890,8 @@ self: {
        pname = "regex-pcre";
        version = "0.95.0.0";
        sha256 = "0nn76q4bsjnxim0j0d01jifmh36as9jdpcvm001a851vvq86zb8n";
-       revision = "4";
-       editedCabalFile = "07fqy6pj7zz2vqbj8y4s5npc7vk9ggzayiy31hy4ss91lys74d1j";
+       revision = "5";
+       editedCabalFile = "0hc9833rwxq8g1x5bq0q4qwjp6w2qgs3fp7jpnlf6b7w5xvr72im";
        libraryHaskellDepends = [
          array base bytestring containers regex-base
        ];
@@ -246047,10 +250023,8 @@ self: {
      }:
      mkDerivation {
        pname = "regex-tdfa";
-       version = "1.3.2.1";
-       sha256 = "15c2gc7c0y2xv9sm586jvys2kx1dc18lzfvjzad5mm2d4yszi2sw";
-       revision = "1";
-       editedCabalFile = "1005mqjhq2blz8kqxmk84xajyqd85n91j9nraw6jrwfv11vxfvxa";
+       version = "1.3.2.2";
+       sha256 = "1dvmplkhma32y68v4vvpbwmjbg3hzd7qhsyq6pim1fs68b2xaglk";
        libraryHaskellDepends = [
          array base bytestring containers mtl parsec regex-base text
        ];
@@ -247148,6 +251122,8 @@ self: {
        pname = "relude";
        version = "1.2.0.0";
        sha256 = "0wqj5ipsm3wwl401q5c5w6q6q07qd825y2d10j3q9gqsvyrpgqfb";
+       revision = "1";
+       editedCabalFile = "1vbmqnahjkvv6wla19vd8pl2k8i0di54c1q37ahx02i4zmnwv6zr";
        libraryHaskellDepends = [
          base bytestring containers deepseq ghc-prim hashable mtl stm text
          transformers unordered-containers
@@ -247514,7 +251490,6 @@ self: {
        description = "(deprecated)";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "repa-convert" = callPackage
@@ -247544,7 +251519,6 @@ self: {
        description = "Support for image reading and writing of Repa arrays using in-place FFI calls";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {inherit (pkgs) libdevil;};
 
   "repa-eval" = callPackage
@@ -247579,7 +251553,6 @@ self: {
        description = "Examples using the Repa array library";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "repa-fftw" = callPackage
@@ -247648,7 +251621,6 @@ self: {
        description = "HMatrix operations for Repa";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "repa-plugin" = callPackage
@@ -247915,7 +251887,6 @@ self: {
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "rbb";
-       broken = true;
      }) {};
 
   "repr" = callPackage
@@ -248436,7 +252407,6 @@ self: {
        executableHaskellDepends = [ base comfort-array lapack ];
        description = "Compute total resistance of a cube of resistors";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "resistor-cube";
        maintainers = [ lib.maintainers.thielema ];
      }) {};
@@ -248733,7 +252703,6 @@ self: {
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "example";
-       broken = true;
      }) {};
 
   "rest-client" = callPackage
@@ -249073,8 +253042,8 @@ self: {
      }:
      mkDerivation {
        pname = "ret";
-       version = "0.2.2.0";
-       sha256 = "1vab7xp0qfks3dramprphv02h09v5nnm9vpmih5yll9i3bqka4ji";
+       version = "0.5.0.0";
+       sha256 = "0204vwjw13j82fjqsw1qklp7n6rqlvxkhb1jgg8n6ya0a469ahm9";
        isLibrary = false;
        isExecutable = true;
        executableHaskellDepends = [
@@ -249899,10 +253868,10 @@ self: {
     ({ mkDerivation, base }:
      mkDerivation {
        pname = "rhythmic-sequences";
-       version = "0.3.0.0";
-       sha256 = "1fcx3brx5kf6x9islrcrdlyqlmh5cw5cv392g8xd30k2n041v49n";
+       version = "0.4.0.0";
+       sha256 = "095x356x585f3vszgfwrffvdd47c2gpqvmypssx9g727vz38sf0i";
        libraryHaskellDepends = [ base ];
-       description = "Library to deal with rhythmicity of short sequences";
+       description = "Improved library to deal with rhythmicity of short sequences";
        license = lib.licenses.mit;
      }) {};
 
@@ -250238,7 +254207,6 @@ self: {
        description = "Quick metrics to grow your app strong";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "ridley-extras" = callPackage
@@ -251055,8 +255023,6 @@ self: {
        ];
        description = "Implementation of the ROC (Taiwan) National ID standard";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "rock" = callPackage
@@ -251623,8 +255589,6 @@ self: {
        ];
        description = "Various trie implementations in Haskell";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "rose-trie" = callPackage
@@ -251846,7 +255810,6 @@ self: {
        description = "Correctly-rounded arbitrary-precision floating-point arithmetic";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {inherit (pkgs) gmp; inherit (pkgs) mpfr;};
 
   "rounded-hw" = callPackage
@@ -253033,9 +256996,7 @@ self: {
        ];
        description = "An experimental proof assistant for synthetic ∞-categories";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "rzk";
-       broken = true;
      }) {};
 
   "s-cargot" = callPackage
@@ -253063,8 +257024,6 @@ self: {
        testHaskellDepends = [ base HUnit parsec s-cargot text ];
        description = "Enables let-binding and let-expansion for s-cargot defined S-expressions";
        license = lib.licenses.isc;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "s-expression" = callPackage
@@ -254447,41 +258406,41 @@ self: {
      }) {};
 
   "sandwich-webdriver" = callPackage
-    ({ mkDerivation, aeson, base, containers, data-default, directory
-     , exceptions, filepath, http-client, http-client-tls, http-conduit
-     , lifted-base, microlens, microlens-aeson, monad-control
-     , monad-logger, mtl, network, process, random, regex-compat, retry
-     , safe, safe-exceptions, sandwich, string-interpolate, temporary
-     , text, time, transformers, unix, unliftio, unordered-containers
-     , vector, webdriver
+    ({ mkDerivation, aeson, base, bytestring, containers, data-default
+     , directory, exceptions, filepath, http-client, http-client-tls
+     , http-conduit, lifted-base, microlens, microlens-aeson
+     , monad-control, monad-logger, mtl, network, process, random
+     , regex-compat, retry, safe, safe-exceptions, sandwich
+     , string-interpolate, temporary, text, time, transformers, unix
+     , unliftio, unordered-containers, vector, webdriver
      }:
      mkDerivation {
        pname = "sandwich-webdriver";
-       version = "0.2.2.0";
-       sha256 = "05wc57xm9f88nlkyna4j4q7j4w4iwa7f6diqb98mw5p9pgfknf3r";
+       version = "0.2.3.0";
+       sha256 = "1220apnh5kj1y41b129rvawcj9yp3lgdlbwysr11wmah6ya9awy9";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
-         aeson base containers data-default directory exceptions filepath
-         http-client http-client-tls http-conduit lifted-base microlens
-         microlens-aeson monad-control monad-logger mtl network process
-         random regex-compat retry safe safe-exceptions sandwich
+         aeson base bytestring containers data-default directory exceptions
+         filepath http-client http-client-tls http-conduit lifted-base
+         microlens microlens-aeson monad-control monad-logger mtl network
+         process random regex-compat retry safe safe-exceptions sandwich
          string-interpolate temporary text time transformers unix
          unordered-containers vector webdriver
        ];
        executableHaskellDepends = [
-         aeson base containers data-default directory exceptions filepath
-         http-client http-client-tls http-conduit lifted-base microlens
-         microlens-aeson monad-control monad-logger mtl network process
-         random regex-compat retry safe safe-exceptions sandwich
+         aeson base bytestring containers data-default directory exceptions
+         filepath http-client http-client-tls http-conduit lifted-base
+         microlens microlens-aeson monad-control monad-logger mtl network
+         process random regex-compat retry safe safe-exceptions sandwich
          string-interpolate temporary text time transformers unix
          unordered-containers vector webdriver
        ];
        testHaskellDepends = [
-         aeson base containers data-default directory exceptions filepath
-         http-client http-client-tls http-conduit lifted-base microlens
-         microlens-aeson monad-control monad-logger mtl network process
-         random regex-compat retry safe safe-exceptions sandwich
+         aeson base bytestring containers data-default directory exceptions
+         filepath http-client http-client-tls http-conduit lifted-base
+         microlens microlens-aeson monad-control monad-logger mtl network
+         process random regex-compat retry safe safe-exceptions sandwich
          string-interpolate temporary text time transformers unix unliftio
          unordered-containers vector webdriver
        ];
@@ -254569,7 +258528,6 @@ self: {
        description = "A staged lexer generator";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "sasl" = callPackage
@@ -254727,8 +258685,8 @@ self: {
      }:
      mkDerivation {
        pname = "saturn";
-       version = "0.3.1.0";
-       sha256 = "1n316hshlxnpkl7ivrgkkn4070b4ia48k6p9s4n5551rg2gkvbg1";
+       version = "1.0.0.2";
+       sha256 = "0n0670s0sgp00lb758vn5gmw7h84csq1sqaha6k3lckczfs72si1";
        libraryHaskellDepends = [
          base containers hspec parsec QuickCheck text time
        ];
@@ -254736,8 +258694,6 @@ self: {
        doHaddock = false;
        description = "Handle POSIX cron schedules";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "satyros" = callPackage
@@ -254899,7 +258855,7 @@ self: {
        license = lib.licenses.mit;
      }) {};
 
-  "sbp_4_17_0" = callPackage
+  "sbp_5_0_0" = callPackage
     ({ mkDerivation, aeson, aeson-pretty, array, base
      , base64-bytestring, basic-prelude, binary, binary-conduit
      , bytestring, cmdargs, conduit, conduit-extra, data-binary-ieee754
@@ -254908,8 +258864,8 @@ self: {
      }:
      mkDerivation {
        pname = "sbp";
-       version = "4.17.0";
-       sha256 = "030qyqd5z0l7nd8q6qz0yr908szpagsy3p0l7jy7gzcx5dkcbmsx";
+       version = "5.0.0";
+       sha256 = "13wdxgiby4axb02x2n32hlija2k5aw6z2fcn1g5795bz1gyv81k2";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -255082,7 +259038,6 @@ self: {
        description = "A protocol buffer model for the Starcraft II bot API";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {protoc = null;};
 
   "sc2-support" = callPackage
@@ -255482,6 +259437,7 @@ self: {
        description = "A Haskell library for writing SCGI programs";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "schedevr" = callPackage
@@ -256107,8 +260063,8 @@ self: {
        pname = "scotty";
        version = "0.12.1";
        sha256 = "0jnv2k37yv7hbm21w356ml4b14avlwh8yyzwwwfrwpbn6zzk6ahy";
-       revision = "1";
-       editedCabalFile = "04l4vr53can02jyl6yfxis61al03f4i1p5l2vmdwd8qb3g9026xs";
+       revision = "2";
+       editedCabalFile = "06hzpbd3adq9wjc5dsz6ikmy6gx60hhlzra58qrc91vi4v76xh0m";
        libraryHaskellDepends = [
          aeson base base-compat-batteries blaze-builder bytestring
          case-insensitive data-default-class exceptions http-types
@@ -256282,7 +260238,6 @@ self: {
        description = "HTTP-request's query parameters parser abstraction for \"scotty\"";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "scotty-path-normalizer" = callPackage
@@ -256700,7 +260655,6 @@ self: {
        ];
        description = "Multidimensional integration over simplices";
        license = lib.licenses.gpl3Only;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "scuttlebutt-types" = callPackage
@@ -257220,8 +261174,7 @@ self: {
        description = "A software defined radio library";
        license = lib.licenses.bsd3;
        platforms = lib.platforms.x86_64;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
+       badPlatforms = lib.platforms.darwin;
      }) {};
 
   "seacat" = callPackage
@@ -257473,22 +261426,22 @@ self: {
        license = lib.licenses.mit;
      }) {inherit (pkgs) secp256k1;};
 
-  "secp256k1-haskell_0_7_0" = callPackage
-    ({ mkDerivation, base, base16, bytestring, cereal, deepseq, entropy
+  "secp256k1-haskell_1_0_0" = callPackage
+    ({ mkDerivation, base, base16, bytestring, deepseq, entropy
      , hashable, hspec, hspec-discover, HUnit, monad-par, mtl
      , QuickCheck, secp256k1, string-conversions, unliftio-core
      }:
      mkDerivation {
        pname = "secp256k1-haskell";
-       version = "0.7.0";
-       sha256 = "02q6czma7lm9xqbxbck87imssjsnhlb6wabj11qikgshxcisddwv";
+       version = "1.0.0";
+       sha256 = "0pg6kb9xd0ihxc2bfjisbhln85rfww71yy3kx7shh0qyi02q81s7";
        libraryHaskellDepends = [
-         base base16 bytestring cereal deepseq entropy hashable QuickCheck
+         base base16 bytestring deepseq entropy hashable QuickCheck
          string-conversions unliftio-core
        ];
        libraryPkgconfigDepends = [ secp256k1 ];
        testHaskellDepends = [
-         base base16 bytestring cereal deepseq entropy hashable hspec HUnit
+         base base16 bytestring deepseq entropy hashable hspec HUnit
          monad-par mtl QuickCheck string-conversions unliftio-core
        ];
        testToolDepends = [ hspec-discover ];
@@ -257734,7 +261687,6 @@ self: {
        description = "PostgreSQL backend for the Selda database EDSL";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "selda-sqlite" = callPackage
@@ -257860,7 +261812,6 @@ self: {
        executableHaskellDepends = [ base ];
        description = "A Haskell library to make self-extracting executables";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "self-bundle";
      }) {};
 
@@ -258021,7 +261972,6 @@ self: {
        description = "Extra functions for working with Semialigns";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "semialign-indexed" = callPackage
@@ -259079,8 +263029,8 @@ self: {
        pname = "servant";
        version = "0.20";
        sha256 = "09vmz4jy6968hq8bf2b43bzpca8h8sps1h2xqf9y6wcarxbws1pi";
-       revision = "2";
-       editedCabalFile = "1jwdj2n53gd29n75ylla61jidsw2wy8ddy03jhgw2ghzwnhkdpzi";
+       revision = "3";
+       editedCabalFile = "01d2dddk6yrck2fl38fisracrw3wnf26ldvy0m06fd7ilyw4fifb";
        libraryHaskellDepends = [
          aeson attoparsec base base-compat bifunctors bytestring
          case-insensitive constraints deepseq http-api-data http-media
@@ -259306,7 +263256,6 @@ self: {
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "example";
-       broken = true;
      }) {};
 
   "servant-auth-server" = callPackage
@@ -259654,6 +263603,7 @@ self: {
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "greet-cli";
+       broken = true;
      }) {};
 
   "servant-client" = callPackage
@@ -260119,8 +264069,6 @@ self: {
        ];
        description = "Automatically derive Elm functions to query servant webservices";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "servant-errors" = callPackage
@@ -260264,8 +264212,6 @@ self: {
        testToolDepends = [ hspec-discover ];
        description = "Helpers for generating clients for servant APIs in any programming language";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "servant-foreign_0_16" = callPackage
@@ -260286,7 +264232,6 @@ self: {
        description = "Helpers for generating clients for servant APIs in any programming language";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "servant-gdp" = callPackage
@@ -260436,8 +264381,6 @@ self: {
        testToolDepends = [ hspec-discover ];
        description = "Servant authentication with HMAC";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "servant-htmx" = callPackage
@@ -260554,7 +264497,6 @@ self: {
        description = "Generate HTTP2 clients from Servant API descriptions";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "servant-iCalendar" = callPackage
@@ -260618,7 +264560,6 @@ self: {
        testToolDepends = [ hspec-discover ];
        description = "Automatically derive javascript functions to query servant webservices";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "servant-jsonrpc" = callPackage
@@ -260811,7 +264752,6 @@ self: {
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "mock-app";
-       broken = true;
      }) {};
 
   "servant-multipart" = callPackage
@@ -260837,7 +264777,6 @@ self: {
        ];
        description = "multipart/form-data (e.g file upload) support for servant";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "servant-multipart-api" = callPackage
@@ -260880,7 +264819,6 @@ self: {
        ];
        description = "multipart/form-data (e.g file upload) support for servant";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "servant-named" = callPackage
@@ -261034,7 +264972,6 @@ self: {
        ];
        description = "Provide responses to OPTIONS requests for Servant applications";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "servant-pagination" = callPackage
@@ -261143,6 +265080,7 @@ self: {
        description = "Utilities for using servant in a polysemy stack";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "servant-pool" = callPackage
@@ -261198,7 +265136,6 @@ self: {
        description = "Servant Content-Type for proto-lens protobuf modules";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "servant-purescript" = callPackage
@@ -261525,6 +265462,7 @@ self: {
        description = "Generate a Ruby client from a Servant API with Net::HTTP";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "servant-scotty" = callPackage
@@ -261587,9 +265525,7 @@ self: {
        executableHaskellDepends = [ base ];
        description = "Automatically generate Servant API modules";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "servant-serf";
-       broken = true;
      }) {};
 
   "servant-serialization" = callPackage
@@ -261675,8 +265611,8 @@ self: {
        pname = "servant-server";
        version = "0.20";
        sha256 = "1gp8pslk2sspi5vzrl1nimndpif7jhgzlffi2mzf1ap1bdwgxchk";
-       revision = "1";
-       editedCabalFile = "0x7z23b3m22afczlnmajcmmcyq9dxvhlv71si0nniz9vzc45l2yb";
+       revision = "2";
+       editedCabalFile = "0x05ngrrgq4jqv5sfwsf35aziipvz64xajzh4a1b5cmh53q7kc8v";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -261973,7 +265909,6 @@ self: {
        executableHaskellDepends = [ base purescript-bridge ];
        description = "When REST is not enough ...";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "subscriber-psGenerator";
      }) {};
 
@@ -262193,8 +266128,6 @@ self: {
        ];
        description = "Typed error wrapper for Servant";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "servant-typescript" = callPackage
@@ -262222,7 +266155,6 @@ self: {
        ];
        description = "TypeScript client generation for Servant";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "servant-typescript-exe";
      }) {};
 
@@ -262406,8 +266338,6 @@ self: {
        ];
        description = "Servant support for the XML Content-Type";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "servant-xstatic" = callPackage
@@ -262573,6 +266503,7 @@ self: {
        description = "Deploying Haskell code onto AWS Lambda using Serverless";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "serversession" = callPackage
@@ -262685,6 +266616,7 @@ self: {
        ];
        description = "Snap bindings for serversession";
        license = lib.licenses.mit;
+       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "serversession-frontend-wai" = callPackage
@@ -262808,7 +266740,6 @@ self: {
        description = "Snaplet for the ses-html package";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "sessions" = callPackage
@@ -263253,8 +267184,8 @@ self: {
      }:
      mkDerivation {
        pname = "sexpresso";
-       version = "1.2.3.0";
-       sha256 = "0nbwyv0zxcgd2jsng0qn84mnc3x9dc31cq43cacj3mijiss2s57p";
+       version = "1.2.4.0";
+       sha256 = "1lpr6kl79kcfxxmnr7hkr2rxk51y599dj4303f1dw7i0vlbm7rfb";
        libraryHaskellDepends = [
          base bifunctors containers megaparsec recursion-schemes text
        ];
@@ -263456,19 +267387,22 @@ self: {
 
   "sha1" = callPackage
     ({ mkDerivation, base, bytebuild, byteslice, natural-arithmetic
-     , primitive, small-bytearray-builder
+     , primitive, run-st
      }:
      mkDerivation {
        pname = "sha1";
-       version = "0.1.0.2";
-       sha256 = "14jy1g6pm4vnq7rhg4z1yazazk9vfav7nn8saxkddxaflaax4llf";
-       libraryHaskellDepends = [ base bytebuild byteslice primitive ];
+       version = "0.1.1.0";
+       sha256 = "0qb3y13671lld2zkgnr720xacy8fmvv5g86ayhmi0xkx36ldkv7g";
+       revision = "1";
+       editedCabalFile = "16zxk8qdxysfsjxlicm4xjamnxg9mysdgwrfwc4qa67anqkqgxdv";
+       libraryHaskellDepends = [
+         base bytebuild byteslice primitive run-st
+       ];
        testHaskellDepends = [
-         base byteslice natural-arithmetic primitive small-bytearray-builder
+         base bytebuild byteslice natural-arithmetic primitive
        ];
        description = "SHA-1 Hash";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "shade" = callPackage
@@ -263890,6 +267824,7 @@ self: {
        description = "Shake File Pack Rule";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "shake-path" = callPackage
@@ -263955,7 +267890,6 @@ self: {
        ];
        description = "Experimental extensions to shake-plus";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "shakebook" = callPackage
@@ -264513,8 +268447,8 @@ self: {
      }:
      mkDerivation {
        pname = "shellify";
-       version = "0.10.0.1";
-       sha256 = "0wih7jl3za8cm62wk8zplyc94356ccrck1kri814z4pk7dav50lv";
+       version = "0.10.0.3";
+       sha256 = "0kgyhyvjsryda03b93nvi07q47mcyqz8rfy0awgr8nbi0gv0d8jd";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -264525,10 +268459,8 @@ self: {
        testHaskellDepends = [ base hspec hspec-core raw-strings-qq text ];
        description = "A tool for generating shell.nix files";
        license = lib.licenses.asl20;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "shellify";
        maintainers = [ lib.maintainers.danielrolls ];
-       broken = true;
      }) {};
 
   "shellish" = callPackage
@@ -264591,6 +268523,8 @@ self: {
        pname = "shellmet";
        version = "0.0.4.1";
        sha256 = "0jd05bazny7y25jnminal5wv30kxg6pzchswxpw5yac027qjagd0";
+       revision = "1";
+       editedCabalFile = "1ivpa3nrbp8qjam99m6dblhakc8gml1hhhigsmb708ndsyqfqa2i";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [ base process text ];
@@ -264599,9 +268533,7 @@ self: {
        testHaskellDepends = [ base doctest Glob ];
        description = "Out of the shell solution for scripting in Haskell";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "readme";
-       broken = true;
      }) {};
 
   "shellout" = callPackage
@@ -264951,7 +268883,6 @@ self: {
        description = "Length-indexed vectors using SmallArray#";
        license = lib.licenses.asl20;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "short-vec-lens" = callPackage
@@ -265303,14 +269234,16 @@ self: {
      }) {};
 
   "si-timers" = callPackage
-    ({ mkDerivation, base, io-classes, mtl, QuickCheck, stm, tasty
-     , tasty-quickcheck, time
+    ({ mkDerivation, base, deepseq, io-classes, mtl, nothunks
+     , QuickCheck, stm, tasty, tasty-quickcheck, time
      }:
      mkDerivation {
        pname = "si-timers";
-       version = "1.1.0.0";
-       sha256 = "1xcha073j5vylddcx1hrkkwfaajw75j9dvy9haip8crli72535r1";
-       libraryHaskellDepends = [ base io-classes mtl stm time ];
+       version = "1.2.0.0";
+       sha256 = "0abxynhg51bazj1dvd4pxpr6wzfd7gganymlnfj4dxday6y3cnc4";
+       libraryHaskellDepends = [
+         base deepseq io-classes mtl nothunks stm time
+       ];
        testHaskellDepends = [ base QuickCheck tasty tasty-quickcheck ];
        description = "timers using SI units (seconds)";
        license = lib.licenses.asl20;
@@ -265513,7 +269446,6 @@ self: {
        description = "Deterministic serialisation and signatures with proto-lens support";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "signable-haskell-protoc" = callPackage
@@ -265535,7 +269467,6 @@ self: {
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "signable-haskell-protoc";
-       broken = true;
      }) {};
 
   "signal" = callPackage
@@ -265612,8 +269543,6 @@ self: {
        libraryHaskellDepends = [ base containers ];
        description = "Multisets with negative membership";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "significant-figures" = callPackage
@@ -265635,9 +269564,7 @@ self: {
        ];
        description = "Calculate expressions involving significant figures";
        license = lib.licenses.gpl3Plus;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "significant-figures-cli";
-       broken = true;
      }) {};
 
   "signify-hs" = callPackage
@@ -265661,7 +269588,6 @@ self: {
        ];
        description = "A Haskell clone of OpenBSD signify";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "signify-hs";
      }) {};
 
@@ -265798,7 +269724,6 @@ self: {
        ];
        description = "A minimalist web framework for the WAI server interface";
        license = lib.licenses.lgpl3Only;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "smpl";
      }) {};
 
@@ -266091,8 +270016,8 @@ self: {
      }:
      mkDerivation {
        pname = "simple-expr";
-       version = "0.1.0.2";
-       sha256 = "1blr20svc7w5gdjpzlldgwjpy452n4bgvz3sbbrpgrqlcj1vln5b";
+       version = "0.1.1.0";
+       sha256 = "0qbmwnl9wgngpx94j9h906mrk9iyclrl0w6wy3p7za7dygcb333i";
        libraryHaskellDepends = [
          base data-fix graphite graphviz hashable numhask text unicode-show
        ];
@@ -266266,7 +270191,6 @@ self: {
        description = "Logging effect to plug into the simple-effects framework";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "simple-ltl" = callPackage
@@ -266469,8 +270393,8 @@ self: {
     ({ mkDerivation, base, exceptions, extra, haskeline, time }:
      mkDerivation {
        pname = "simple-prompt";
-       version = "0.2.0.1";
-       sha256 = "1bmq1x7raibnlqkjay3gnvsqiiggv2n911vk02z1glly90b5yg21";
+       version = "0.2.1";
+       sha256 = "0p2xss8l8jzp0dm6ql9sswlsm8mcfxra20dnbnql3bz9v2a2wdhc";
        libraryHaskellDepends = [ base exceptions extra haskeline time ];
        description = "Simple commandline text prompt functions";
        license = lib.licenses.bsd3;
@@ -266552,7 +270476,6 @@ self: {
        ];
        description = "Cookie-based session management for the Simple web framework";
        license = lib.licenses.lgpl3Only;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "simple-sessions" = callPackage
@@ -266674,8 +270597,6 @@ self: {
        ];
        description = "A basic template language for the Simple web framework";
        license = lib.licenses.lgpl3Only;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "simple-text-format" = callPackage
@@ -267974,8 +271895,6 @@ self: {
        ];
        description = "A very quick-and-dirty WebSocket server";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "skip-list" = callPackage
@@ -268004,6 +271923,28 @@ self: {
        license = lib.licenses.mit;
      }) {};
 
+  "skopedate" = callPackage
+    ({ mkDerivation, aeson, base, bytestring, extra, http-query
+     , simple-cmd, simple-cmd-args, time, typed-process
+     }:
+     mkDerivation {
+       pname = "skopedate";
+       version = "0.1";
+       sha256 = "0czpx3n0g8d3rlv5iir7800l3b0vsr80gjd4pvyvvp7j2a4ra4lj";
+       isLibrary = false;
+       isExecutable = true;
+       executableHaskellDepends = [
+         aeson base bytestring extra http-query simple-cmd simple-cmd-args
+         time typed-process
+       ];
+       testHaskellDepends = [ base simple-cmd ];
+       description = "Check dates of container images";
+       license = lib.licenses.mit;
+       hydraPlatforms = lib.platforms.none;
+       mainProgram = "skopedate";
+       broken = true;
+     }) {};
+
   "skulk" = callPackage
     ({ mkDerivation, base, hspec, QuickCheck }:
      mkDerivation {
@@ -268049,32 +271990,6 @@ self: {
      }:
      mkDerivation {
        pname = "skylighting";
-       version = "0.13.4";
-       sha256 = "09v4da57ijzcaxhibrshw8fdxd0wq8adw44w9wh1rpn2l698gv4m";
-       configureFlags = [ "-fexecutable" ];
-       isLibrary = true;
-       isExecutable = true;
-       libraryHaskellDepends = [
-         base binary containers skylighting-core skylighting-format-ansi
-         skylighting-format-blaze-html skylighting-format-context
-         skylighting-format-latex
-       ];
-       executableHaskellDepends = [
-         base blaze-html bytestring containers pretty-show text
-       ];
-       description = "syntax highlighting library";
-       license = lib.licenses.gpl2Only;
-       mainProgram = "skylighting";
-     }) {};
-
-  "skylighting_0_13_4_1" = callPackage
-    ({ mkDerivation, base, binary, blaze-html, bytestring, containers
-     , pretty-show, skylighting-core, skylighting-format-ansi
-     , skylighting-format-blaze-html, skylighting-format-context
-     , skylighting-format-latex, text
-     }:
-     mkDerivation {
-       pname = "skylighting";
        version = "0.13.4.1";
        sha256 = "091cjjv8y0y5pfz5fphyzs94nzslbz8j5i07ma6pfqd1bjrh9xzi";
        configureFlags = [ "-fexecutable" ];
@@ -268090,7 +272005,6 @@ self: {
        ];
        description = "syntax highlighting library";
        license = lib.licenses.gpl2Only;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "skylighting";
      }) {};
 
@@ -268103,36 +272017,6 @@ self: {
      }:
      mkDerivation {
        pname = "skylighting-core";
-       version = "0.13.4";
-       sha256 = "0n9v62fq7iwlz44hfz7zbsqplqkls8x7cb3fmm5xfw020adqjyyf";
-       isLibrary = true;
-       isExecutable = true;
-       libraryHaskellDepends = [
-         aeson attoparsec base base64-bytestring binary bytestring
-         case-insensitive colour containers directory filepath mtl safe text
-         transformers utf8-string xml-conduit
-       ];
-       testHaskellDepends = [
-         aeson base bytestring containers Diff directory filepath
-         pretty-show QuickCheck tasty tasty-golden tasty-hunit
-         tasty-quickcheck text
-       ];
-       benchmarkHaskellDepends = [
-         base containers criterion filepath text
-       ];
-       description = "syntax highlighting library";
-       license = lib.licenses.bsd3;
-     }) {};
-
-  "skylighting-core_0_13_4_1" = callPackage
-    ({ mkDerivation, aeson, attoparsec, base, base64-bytestring, binary
-     , bytestring, case-insensitive, colour, containers, criterion, Diff
-     , directory, filepath, mtl, pretty-show, QuickCheck, safe, tasty
-     , tasty-golden, tasty-hunit, tasty-quickcheck, text, transformers
-     , utf8-string, xml-conduit
-     }:
-     mkDerivation {
-       pname = "skylighting-core";
        version = "0.13.4.1";
        sha256 = "1hz2r8qpkjf9m5fgpw39vqp3rq1cbkamxss65i40bqihbjzysm65";
        isLibrary = true;
@@ -268152,7 +272036,6 @@ self: {
        ];
        description = "syntax highlighting library";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "skylighting-extensions" = callPackage
@@ -268237,8 +272120,6 @@ self: {
        ];
        description = "Lucid support for Skylighting";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "skylighting-modding" = callPackage
@@ -268764,9 +272645,7 @@ self: {
        testHaskellDepends = [ base hspec text text-icu ];
        description = "Clean URI slugs for Haskell";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "slugger";
-       broken = true;
      }) {};
 
   "slugify" = callPackage
@@ -269095,7 +272974,6 @@ self: {
        ];
        description = "Haskell Behavior Tree Library";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "smartword" = callPackage
@@ -269288,11 +273166,11 @@ self: {
        pname = "smith";
        version = "0.1.1.0";
        sha256 = "0ylhzs0lc7fxp54s74slffkr8rnasy4pak4snyi5jnvma0wiz55g";
+       revision = "1";
+       editedCabalFile = "00l8f3az6h9vadnyn17kg6ng3p0pp9b17gxilrkriwwjlmjvl81w";
        libraryHaskellDepends = [ base bytesmith primitive ];
        description = "Parse arrays of tokens";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "smith-cli" = callPackage
@@ -269437,8 +273315,6 @@ self: {
        libraryHaskellDepends = [ base bytestring ];
        description = "Low-level functions for SMT-LIB-based interaction with SMT solvers";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "smtlib-backends-process" = callPackage
@@ -269459,6 +273335,7 @@ self: {
        description = "An SMT-LIB backend running solvers as external processes";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "smtlib-backends-tests" = callPackage
@@ -269470,7 +273347,6 @@ self: {
        libraryHaskellDepends = [ base smtlib-backends tasty tasty-hunit ];
        description = "Testing SMT-LIB backends";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "smtlib-backends-z3" = callPackage
@@ -269489,7 +273365,6 @@ self: {
        ];
        description = "An SMT-LIB backend implemented using Z3's C API";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {inherit (pkgs) gomp; inherit (pkgs) z3;};
 
   "smtlib2" = callPackage
@@ -269731,8 +273606,6 @@ self: {
        ];
        description = "Strict ByteString Parser Combinator";
        license = lib.licenses.cc0;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "snake" = callPackage
@@ -269797,6 +273670,7 @@ self: {
        ];
        description = "Top-level package for the Snap Web Framework";
        license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
        maintainers = [ lib.maintainers.maralorn ];
      }) {};
 
@@ -269848,7 +273722,6 @@ self: {
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "snap-auth-cli";
-       broken = true;
      }) {};
 
   "snap-blaze" = callPackage
@@ -269970,7 +273843,6 @@ self: {
        description = "Collect errors in batches and dispatch them";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "snap-extras" = callPackage
@@ -270094,7 +273966,6 @@ self: {
        description = "Typesafe URLs for Snap applications";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "snap-server" = callPackage
@@ -270201,7 +274072,6 @@ self: {
        description = "A library for BDD-style testing with the Snap Web Framework";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "snap-utils" = callPackage
@@ -270220,7 +274090,6 @@ self: {
        description = "Snap Framework utilities";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "snap-web-routes" = callPackage
@@ -270237,7 +274106,6 @@ self: {
        description = "Type safe URLs for Snap";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "snaplet-acid-state" = callPackage
@@ -270252,7 +274120,6 @@ self: {
        description = "acid-state snaplet for Snap Framework";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "snaplet-actionlog" = callPackage
@@ -270296,7 +274163,6 @@ self: {
        description = "Snap framework snaplet for the AMQP library";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "snaplet-auth-acid" = callPackage
@@ -270318,7 +274184,6 @@ self: {
        description = "Provides an Acid-State backend for the Auth Snaplet";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "snaplet-coffee" = callPackage
@@ -270339,7 +274204,6 @@ self: {
        description = "CoffeeScript for Snap, auto-compilation and pre-compilation";
        license = lib.licenses.gpl3Only;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "snaplet-css-min" = callPackage
@@ -270357,7 +274221,6 @@ self: {
        description = "A Snaplet for CSS minification";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "snaplet-customauth" = callPackage
@@ -270398,7 +274261,6 @@ self: {
        description = "DEPRECATED! You should use standard Snap >= 0.9 \"environments\" functionality. It provided ability to easly read configuration based on given app environment given at command line, envs are defined in app configuration file";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "snaplet-fay" = callPackage
@@ -270435,6 +274297,7 @@ self: {
        ];
        description = "Serve javascript files compiled with GHCJS";
        license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "snaplet-hasql" = callPackage
@@ -270507,7 +274370,6 @@ self: {
        description = "Snap framework snaplet for the Logger API library";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "snaplet-i18n" = callPackage
@@ -270531,6 +274393,7 @@ self: {
        ];
        description = "snaplet-i18n";
        license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
        mainProgram = "demo";
      }) {};
 
@@ -270551,7 +274414,6 @@ self: {
        description = "Snap framework snaplet for the InfluxDB library";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "snaplet-lss" = callPackage
@@ -270586,7 +274448,6 @@ self: {
        description = "Snap framework snaplet for the Mandrill API library";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "snaplet-mongoDB" = callPackage
@@ -270622,7 +274483,6 @@ self: {
        description = "Minimalistic MongoDB Snaplet";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "snaplet-mysql-simple" = callPackage
@@ -270644,7 +274504,6 @@ self: {
        description = "mysql-simple snaplet for the Snap Framework";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "snaplet-oauth" = callPackage
@@ -270692,6 +274551,7 @@ self: {
        ];
        description = "persistent snaplet for the Snap Framework";
        license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "snaplet-postgresql-simple" = callPackage
@@ -270717,7 +274577,6 @@ self: {
        description = "postgresql-simple snaplet for the Snap Framework";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "snaplet-postmark" = callPackage
@@ -270752,7 +274611,6 @@ self: {
        description = "Automatic (re)compilation of purescript projects";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "snaplet-recaptcha" = callPackage
@@ -270771,7 +274629,6 @@ self: {
        description = "A ReCAPTCHA verification snaplet with Heist integration and connection sharing";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "snaplet-redis" = callPackage
@@ -270792,7 +274649,6 @@ self: {
        description = "Redis support for Snap Framework";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "snaplet-redson" = callPackage
@@ -270867,7 +274723,6 @@ self: {
        description = "Sass integration for Snap with request- and pre-compilation";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "snaplet-scoped-session" = callPackage
@@ -270885,7 +274740,6 @@ self: {
        description = "Modularised session state for Snaplets, in a Snaplet";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "snaplet-sedna" = callPackage
@@ -270920,7 +274774,6 @@ self: {
        description = "Snaplet for the ses-html package";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "snaplet-sqlite-simple" = callPackage
@@ -270951,6 +274804,7 @@ self: {
        ];
        description = "sqlite-simple snaplet for the Snap Framework";
        license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "snaplet-sqlite-simple-jwt-auth" = callPackage
@@ -270971,7 +274825,6 @@ self: {
        description = "Snaplet for JWT authentication with snaplet-sqlite-simple";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "snaplet-stripe" = callPackage
@@ -271026,7 +274879,6 @@ self: {
        description = "Typed session snaplets and continuation-based programming for the Snap web framework";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "snaplet-wordpress" = callPackage
@@ -271108,7 +274960,6 @@ self: {
        description = "An enumeratee that uses Google's snappy compression library";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "snappy-lazy" = callPackage
@@ -271692,7 +275543,6 @@ self: {
        description = "High-level network sockets";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "sockets-and-pipes" = callPackage
@@ -271714,8 +275564,6 @@ self: {
        doHaddock = false;
        description = "Support for the Sockets and Pipes book";
        license = lib.licenses.asl20;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "socketson" = callPackage
@@ -271999,6 +275847,7 @@ self: {
        license = "GPL";
        hydraPlatforms = lib.platforms.none;
        mainProgram = "svdump";
+       broken = true;
      }) {};
 
   "sop-core" = callPackage
@@ -272546,7 +276395,6 @@ self: {
        badPlatforms = lib.platforms.darwin;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "spade";
-       broken = true;
      }) {};
 
   "spake2" = callPackage
@@ -272848,7 +276696,6 @@ self: {
        ];
        description = "Lightweight parsing library based on partial functions";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "spartacon" = callPackage
@@ -272970,8 +276817,6 @@ self: {
        ];
        description = "SPDX license expression language, Extras";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "spdx-license" = callPackage
@@ -274071,6 +277916,7 @@ self: {
        description = "Guided derivation for Hasql statements";
        license = "BSD-2-Clause-Patent";
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "sqids" = callPackage
@@ -274261,8 +278107,6 @@ self: {
        testToolDepends = [ hspec-discover ];
        description = "A primitive yet easy to use sqlite library";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "sqlite-simple" = callPackage
@@ -274618,7 +278462,6 @@ self: {
        description = "Dhall Encoder/Decoder for SRT";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "srt-formatting" = callPackage
@@ -274922,20 +278765,23 @@ self: {
 
   "stable-heap" = callPackage
     ({ mkDerivation, base, criterion, fingertree, heaps, mwc-random
-     , pqueue, vector
+     , pqueue, QuickCheck, tasty, tasty-quickcheck, transformers, vector
      }:
      mkDerivation {
        pname = "stable-heap";
-       version = "0.1.0.0";
-       sha256 = "14wx42lmk2vd6v356q5cbd78y9xdnmkwcn6ddpnkyzq331hk23s1";
+       version = "0.2.1.0";
+       sha256 = "0053h9yn303h4b98div1lw21mxf0mizc6w268pvzi6hhvhr84hv3";
+       revision = "2";
+       editedCabalFile = "0ph54yx7ja2yg5jm0x0b6jrj83xbpg96cq6m577xab33gmwi0961";
        libraryHaskellDepends = [ base ];
+       testHaskellDepends = [
+         base QuickCheck tasty tasty-quickcheck transformers
+       ];
        benchmarkHaskellDepends = [
          base criterion fingertree heaps mwc-random pqueue vector
        ];
        description = "Purely functional stable heaps (fair priority queues)";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "stable-maps" = callPackage
@@ -274961,23 +278807,17 @@ self: {
        testHaskellDepends = [ base ghc-prim ];
        description = "algorithms around stable marriage";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "stable-memo" = callPackage
     ({ mkDerivation, base, ghc-prim, hashtables }:
      mkDerivation {
        pname = "stable-memo";
-       version = "0.3.1";
-       sha256 = "1rv578311cvn7ym08vxxi18dhic50w7ms6cjn77vh032b8fxr3gx";
-       revision = "1";
-       editedCabalFile = "1wlz6cpbvf8mi4c78dwwbdxsk2wax3y7q27hy78h83gl0cbnfiij";
+       version = "0.4.0";
+       sha256 = "1bknfpxvhcz6d3957rw26zcfhlp2gh9v6r779zynr9vib39xgwry";
        libraryHaskellDepends = [ base ghc-prim hashtables ];
        description = "Memoization based on argument identity";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "stable-tree" = callPackage
@@ -275062,6 +278902,8 @@ self: {
        pname = "stack";
        version = "2.11.1";
        sha256 = "0qihckfj5p9xbq0d8xd9c7zy5jpdl2hrvcc0nq8x67k9a7vqwwx1";
+       revision = "2";
+       editedCabalFile = "11cjn404f7kmpmls01pq1j1xac838hv7x725fhvrz2w3fhphbbsp";
        configureFlags = [
          "-fdisable-git-info" "-fhide-dependency-versions"
          "-fsupported-build"
@@ -275950,8 +279792,7 @@ self: {
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "stackctl";
-       broken = true;
-     }) {amazonka-sso = null;};
+     }) {};
 
   "stacked-dag" = callPackage
     ({ mkDerivation, base, containers, doctest, graphviz
@@ -276057,6 +279898,7 @@ self: {
        license = lib.licenses.mpl20;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "stan";
+       broken = true;
      }) {};
 
   "standalone-derive-topdown" = callPackage
@@ -276411,8 +280253,6 @@ self: {
        libraryHaskellDepends = [ base double-conversion free mtl text ];
        description = "DSL to generate HTML5 Canvas javascript";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "static-closure" = callPackage
@@ -276596,7 +280436,6 @@ self: {
        description = "Functions for working with Dirichlet densities and mixtures on vectors";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "statistics-fusion" = callPackage
@@ -276825,9 +280664,7 @@ self: {
        testToolDepends = [ hspec-discover ];
        description = "What version is the package X in stackage lts-Y.ZZ?";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "staversion";
-       broken = true;
      }) {};
 
   "stb-image" = callPackage
@@ -276927,17 +280764,14 @@ self: {
      }) {};
 
   "stdcxx" = callPackage
-    ({ mkDerivation, base, fficxx, fficxx-runtime, template-haskell }:
+    ({ mkDerivation, base, fficxx-runtime, template-haskell }:
      mkDerivation {
        pname = "stdcxx";
-       version = "0.7.0.0";
-       sha256 = "0r2zm4y1rwpv5pwnlqc51hy746j6hnvhj44vagyxij6ja7xhqxsg";
-       libraryHaskellDepends = [
-         base fficxx fficxx-runtime template-haskell
-       ];
+       version = "0.7.0.1";
+       sha256 = "0830lv6vildyxnpkxgrxpn17k621wgisklw6c2mqiqvm6n9wjga7";
+       libraryHaskellDepends = [ base fficxx-runtime template-haskell ];
        description = "Binding to Standard Template Library C++";
        license = lib.licenses.bsd2;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "stdf" = callPackage
@@ -277216,7 +281050,6 @@ self: {
        testHaskellDepends = [ base hspec mtl stm stm-queue ];
        description = "A simplistic actor model based on STM";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "stm-channelize" = callPackage
@@ -277379,8 +281212,6 @@ self: {
        testHaskellDepends = [ base hspec stm ];
        description = "A library for constructing incremental computations";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "stm-io-hooks" = callPackage
@@ -277455,8 +281286,6 @@ self: {
        ];
        description = "An implementation of a real-time concurrent queue";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "stm-queue-extras" = callPackage
@@ -277520,7 +281349,6 @@ self: {
        testHaskellDepends = [ async base QuickCheck random Unique ];
        description = "STM wrapper around Control.Concurrent.Supply.";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "stm-tlist" = callPackage
@@ -278400,7 +282228,6 @@ self: {
        description = "Concurrency support for the streaming ecosystem";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "streaming-conduit" = callPackage
@@ -278568,8 +282395,6 @@ self: {
        ];
        description = "Stream packets via libpcap";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "streaming-png" = callPackage
@@ -278660,7 +282485,6 @@ self: {
        description = "Sorting streams";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "streaming-utils" = callPackage
@@ -278671,8 +282495,8 @@ self: {
      }:
      mkDerivation {
        pname = "streaming-utils";
-       version = "0.2.4.0";
-       sha256 = "108z34mcnp6qcrqx1lblnw5p1qnynvrfrxik6n3ff71iqbg7lllh";
+       version = "0.2.5.0";
+       sha256 = "1zaq0vk4bzn27w56nxx56fij9cxk7pz5vf2xvglxkj6xip1w63fz";
        libraryHaskellDepends = [
          aeson attoparsec base bytestring http-client http-client-tls
          json-stream mtl network network-simple pipes resourcet streaming
@@ -278865,8 +282689,6 @@ self: {
        ];
        description = "Examples for Streamly";
        license = lib.licenses.asl20;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "streamly-fsnotify" = callPackage
@@ -278972,8 +282794,6 @@ self: {
        ];
        description = "Use OS processes as stream transformation functions";
        license = lib.licenses.asl20;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "streamly-statistics" = callPackage
@@ -279302,8 +283122,8 @@ self: {
      }:
      mkDerivation {
        pname = "strict-list";
-       version = "0.1.7.1";
-       sha256 = "1bvzyfcjx6g5n2jm1hi0m3aw71xz842hz30giy8p33wjcbshs1c1";
+       version = "0.1.7.2";
+       sha256 = "1zzrhpgwv4cjjp601fklhv9i1hp4rpabjyylnjwbv757bv8dmlvx";
        libraryHaskellDepends = [ base deepseq hashable semigroupoids ];
        testHaskellDepends = [ rerebase tasty tasty-quickcheck ];
        description = "Strict linked list";
@@ -279311,12 +283131,17 @@ self: {
      }) {};
 
   "strict-mvar" = callPackage
-    ({ mkDerivation, base, io-classes }:
+    ({ mkDerivation, base, io-classes, io-sim, nothunks, QuickCheck
+     , tasty, tasty-quickcheck
+     }:
      mkDerivation {
        pname = "strict-mvar";
-       version = "1.1.0.0";
-       sha256 = "0wd6kdkady3pwsswyzx5w93fivsrsxvladh7ndip2qscfgpsd4fs";
+       version = "1.2.0.0";
+       sha256 = "0w324i9daxsvc4np9vc8bwija2p943sirbqxhjrf9bg144q3ldvd";
        libraryHaskellDepends = [ base io-classes ];
+       testHaskellDepends = [
+         base io-sim nothunks QuickCheck tasty tasty-quickcheck
+       ];
        description = "Strict MVars for IO and IOSim";
        license = lib.licenses.asl20;
      }) {};
@@ -279338,8 +283163,8 @@ self: {
     ({ mkDerivation, array, base, io-classes, stm }:
      mkDerivation {
        pname = "strict-stm";
-       version = "1.1.0.1";
-       sha256 = "01lw137aarcwbr5vgrkjrfh1kp9bn7ql31xw9ivw9nwfdhjblz04";
+       version = "1.2.0.0";
+       sha256 = "1kxfnvgrvskgn8ip9gga0fwchnnlxydccf03cpbx524lqrmk4d0x";
        libraryHaskellDepends = [ array base io-classes stm ];
        description = "Strict STM interface polymorphic over stm implementation";
        license = lib.licenses.asl20;
@@ -279606,7 +283431,6 @@ self: {
        ];
        description = "Is used in the phonetic languages approach (e. g. in the recursive mode).";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "string-isos" = callPackage
@@ -279828,8 +283652,6 @@ self: {
        libraryHaskellDepends = [ base bytestring text ];
        description = "Functions for working with strings, including Text, ByteString, etc";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "stringsearch" = callPackage
@@ -280265,10 +284087,8 @@ self: {
      }:
      mkDerivation {
        pname = "structs";
-       version = "0.1.8";
-       sha256 = "07y8mahvvi2d3iggzxgrh8dbhg8zrjcamnf0x73ymrwxh0qhyryx";
-       revision = "1";
-       editedCabalFile = "1k4k41322zvmqw0812kip09gm6dhk441w3q0m59z2b5mlvmqr5qq";
+       version = "0.1.9";
+       sha256 = "033vx729k9jn4w4hs3kp8nlnf0ylsqgg3q4cmb7zjfpgk4bk511w";
        libraryHaskellDepends = [
          base deepseq ghc-prim primitive template-haskell th-abstraction
        ];
@@ -280372,10 +284192,8 @@ self: {
        ];
        description = "Structured editing Emacs mode for Haskell";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "structured-haskell-mode";
        maintainers = [ lib.maintainers.peti ];
-       broken = true;
      }) {};
 
   "structured-mongoDB" = callPackage
@@ -281213,8 +285031,6 @@ self: {
        testHaskellDepends = [ base ];
        description = "An implementation of extensible products and sums";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "summoner" = callPackage
@@ -281284,7 +285100,6 @@ self: {
        description = "A Haskell interface to SUMP-compatible logic analyzers";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "sundown" = callPackage
@@ -281944,9 +285759,7 @@ self: {
        ];
        description = "Svg Icons and more";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "svg-icons-exe";
-       broken = true;
      }) {};
 
   "svg-tree" = callPackage
@@ -282305,7 +286118,9 @@ self: {
        ];
        description = "2D resource gathering game with programmable robots";
        license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
        mainProgram = "swarm";
+       broken = true;
      }) {};
 
   "swearjure" = callPackage
@@ -282525,8 +286340,8 @@ self: {
     ({ mkDerivation, base, containers, mtl, tasty, tasty-hunit }:
      mkDerivation {
        pname = "syb";
-       version = "0.7.2.3";
-       sha256 = "06nrr3x9zgk0ml7xckx04hr46lr15w3p8mrdrgcw8ix92spjvdyh";
+       version = "0.7.2.4";
+       sha256 = "0q0y5412766xz90lghs4sdna48hawk7csqb3708bjann4a41wz7c";
        libraryHaskellDepends = [ base ];
        testHaskellDepends = [ base containers mtl tasty tasty-hunit ];
        description = "Scrap Your Boilerplate";
@@ -282576,7 +286391,6 @@ self: {
        description = "Scrap Your Boilerplate With Class Text instance";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "sydtest" = callPackage
@@ -282589,8 +286403,8 @@ self: {
      }:
      mkDerivation {
        pname = "sydtest";
-       version = "0.15.0.0";
-       sha256 = "0yrijkdicdpw1b2h95xg61q5c95bz1i6f2m1s1pa07avzs6bmils";
+       version = "0.15.1.0";
+       sha256 = "0rviw43ks6rnl1m7wf8ffd70cnizz53svnsz2f9k69787xyqn6zb";
        libraryHaskellDepends = [
          async autodocodec autodocodec-yaml base bytestring containers dlist
          envparse filepath MonadRandom mtl optparse-applicative path path-io
@@ -283503,9 +287317,7 @@ self: {
        testSystemDepends = [ gmp gmpxx symengine ];
        description = "SymEngine symbolic mathematics engine for Haskell";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "symengine-hs-exe";
-       broken = true;
      }) {inherit (pkgs) gmp; inherit (pkgs) gmpxx; 
          inherit (pkgs) symengine;};
 
@@ -284689,6 +288501,7 @@ self: {
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "tableaux.cgi";
+       broken = true;
      }) {};
 
   "tables" = callPackage
@@ -284824,8 +288637,8 @@ self: {
      }:
      mkDerivation {
        pname = "taffybar";
-       version = "4.0.0";
-       sha256 = "1rwir1jlqxby2gj4pxbhz9khn6pfgn4bn3wca6q8zyzn0vs3i2wg";
+       version = "4.0.1";
+       sha256 = "0lbviimazjc65j05hmncv2idd096yj7mgrk4r3q9vws2b8d9sww8";
        isLibrary = true;
        isExecutable = true;
        enableSeparateDataOutput = true;
@@ -284925,6 +288738,20 @@ self: {
        license = lib.licenses.bsd3;
      }) {};
 
+  "tagged_0_8_8" = callPackage
+    ({ mkDerivation, base, deepseq, template-haskell, transformers }:
+     mkDerivation {
+       pname = "tagged";
+       version = "0.8.8";
+       sha256 = "19x66y8zqh06mmkbbnpy0m5sk402zj6iqfj3d30h6qji6mwgm0x0";
+       libraryHaskellDepends = [
+         base deepseq template-haskell transformers
+       ];
+       description = "Haskell 98 phantom types to avoid unsafely passing dummy arguments";
+       license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
+     }) {};
+
   "tagged-binary" = callPackage
     ({ mkDerivation, base, base-compat, binary, bytestring, pureMD5 }:
      mkDerivation {
@@ -285311,6 +289138,133 @@ self: {
        broken = true;
      }) {};
 
+  "tahoe-capabilities" = callPackage
+    ({ mkDerivation, base, text }:
+     mkDerivation {
+       pname = "tahoe-capabilities";
+       version = "0.1.0.0";
+       sha256 = "1adv12v0l2r13s9yr37zzvixwjpkla0vpvwlrz8sq0j0mkls36pm";
+       libraryHaskellDepends = [ base text ];
+       testHaskellDepends = [ base ];
+       description = "Abstractions related to Tahoe-LAFS \"capabilities\"";
+       license = lib.licenses.lgpl3Plus;
+       hydraPlatforms = lib.platforms.none;
+       broken = true;
+     }) {};
+
+  "tahoe-chk" = callPackage
+    ({ mkDerivation, aeson, async, base, base32, base64-bytestring
+     , binary, bytestring, cereal, cipher-aes128, concurrency
+     , containers, crypto-api, cryptonite, directory, extra, fec
+     , filepath, hedgehog, megaparsec, memory, monad-loops
+     , network-byte-order, optparse-applicative, parser-combinators
+     , primitive, scientific, tagged, tasty, tasty-hedgehog, tasty-hunit
+     , temporary, text, tree-diff, utility-ht, vector, yaml
+     }:
+     mkDerivation {
+       pname = "tahoe-chk";
+       version = "0.1.0.2";
+       sha256 = "18gbk1zk11nq08vfxqjb9ayf1k1vhic21mdp7v4fwxjrqkvxlwpr";
+       isLibrary = true;
+       isExecutable = true;
+       libraryHaskellDepends = [
+         aeson async base base32 base64-bytestring binary bytestring cereal
+         cipher-aes128 concurrency containers crypto-api cryptonite
+         directory extra fec filepath megaparsec memory monad-loops
+         network-byte-order parser-combinators primitive tagged text
+         tree-diff utility-ht
+       ];
+       executableHaskellDepends = [
+         base base32 bytestring optparse-applicative text
+       ];
+       testHaskellDepends = [
+         aeson base base32 base64-bytestring binary bytestring cereal
+         cipher-aes128 containers crypto-api cryptonite directory fec
+         filepath hedgehog megaparsec scientific tagged tasty tasty-hedgehog
+         tasty-hunit temporary text tree-diff vector yaml
+       ];
+       description = "The Tahoe-LAFS' Content-Hash-Key (CHK) cryptographic protocol";
+       license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
+       mainProgram = "tahoe-chk-encrypt";
+     }) {};
+
+  "tahoe-great-black-swamp" = callPackage
+    ({ mkDerivation, aeson, async, base, base32, base32string
+     , base64-bytestring, binary, bytestring, cborg, cborg-json
+     , connection, containers, deriving-aeson, directory, filepath
+     , foldl, hspec, hspec-expectations, hspec-wai, http-api-data
+     , http-client, http-client-tls, http-media, http-types, megaparsec
+     , network-uri, optparse-applicative, primitive, QuickCheck
+     , quickcheck-instances, safe-exceptions, scientific, serialise
+     , servant, servant-client, servant-docs, servant-js, servant-server
+     , tahoe-chk, temporary, text, unordered-containers, utf8-string
+     , vector, wai, wai-extra, warp, warp-tls
+     }:
+     mkDerivation {
+       pname = "tahoe-great-black-swamp";
+       version = "0.3.0.1";
+       sha256 = "16n8jv5pb0z8x3dczpcqq29lmn24irinh81p9m75qad88i8p3r57";
+       isLibrary = true;
+       isExecutable = true;
+       libraryHaskellDepends = [
+         aeson async base base64-bytestring binary bytestring cborg
+         cborg-json containers deriving-aeson directory filepath foldl
+         http-api-data http-media http-types primitive safe-exceptions
+         scientific serialise servant-client servant-docs servant-server
+         text unordered-containers utf8-string vector wai warp warp-tls
+       ];
+       executableHaskellDepends = [
+         aeson async base base32 base64-bytestring binary bytestring cborg
+         connection containers deriving-aeson directory filepath foldl
+         http-client http-client-tls http-types megaparsec network-uri
+         optparse-applicative primitive safe-exceptions serialise servant
+         servant-client servant-js tahoe-chk text unordered-containers
+         vector warp
+       ];
+       testHaskellDepends = [
+         aeson async base base32string binary bytestring cborg containers
+         deriving-aeson directory filepath foldl hspec hspec-expectations
+         hspec-wai http-types primitive QuickCheck quickcheck-instances
+         safe-exceptions serialise servant temporary text
+         unordered-containers vector wai-extra
+       ];
+       description = "An implementation of the \"Great Black Swamp\" LAFS protocol";
+       license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
+     }) {};
+
+  "tahoe-ssk" = callPackage
+    ({ mkDerivation, asn1-encoding, asn1-types, base, base32, binary
+     , bytestring, cereal, containers, cryptonite, hedgehog, megaparsec
+     , memory, tahoe-capabilities, tahoe-chk, tasty, tasty-hedgehog
+     , tasty-hunit, text, x509
+     }:
+     mkDerivation {
+       pname = "tahoe-ssk";
+       version = "0.2.1.0";
+       sha256 = "1qkzkdqqyjh2qzkl03f3wg4xlpmb8n1hq95bmdqwx1212aap3qxx";
+       isLibrary = true;
+       isExecutable = true;
+       libraryHaskellDepends = [
+         asn1-encoding asn1-types base base32 binary bytestring cereal
+         containers cryptonite megaparsec memory tahoe-capabilities
+         tahoe-chk text x509
+       ];
+       executableHaskellDepends = [
+         asn1-encoding asn1-types base base32 binary bytestring cryptonite
+         tahoe-capabilities text x509
+       ];
+       testHaskellDepends = [
+         asn1-encoding asn1-types base base32 binary bytestring cryptonite
+         hedgehog megaparsec memory tahoe-capabilities tahoe-chk tasty
+         tasty-hedgehog tasty-hunit text x509
+       ];
+       description = "An implementation of the Tahoe-LAFS SSK cryptographic protocols";
+       license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
+     }) {};
+
   "tai" = callPackage
     ({ mkDerivation, base, clock, lens, mtl, parsers, time, trifecta
      , wreq
@@ -285456,7 +289410,6 @@ self: {
        description = "create slide for presentation";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "takedouble" = callPackage
@@ -285779,6 +289732,33 @@ self: {
        license = lib.licenses.mit;
      }) {};
 
+  "tar-conduit_0_4_0" = callPackage
+    ({ mkDerivation, base, bytestring, conduit, conduit-combinators
+     , conduit-extra, containers, criterion, deepseq, directory
+     , filepath, hspec, mtl, QuickCheck, safe-exceptions, text, unix
+     , weigh
+     }:
+     mkDerivation {
+       pname = "tar-conduit";
+       version = "0.4.0";
+       sha256 = "0h0z6g1q57jy20p5m8y56dqkrfvpz46yhglsvg3n4mncr88jlrfj";
+       libraryHaskellDepends = [
+         base bytestring conduit conduit-combinators containers directory
+         filepath mtl safe-exceptions text unix
+       ];
+       testHaskellDepends = [
+         base bytestring conduit conduit-combinators conduit-extra
+         containers deepseq directory filepath hspec QuickCheck weigh
+       ];
+       benchmarkHaskellDepends = [
+         base bytestring conduit conduit-combinators containers criterion
+         deepseq directory filepath hspec
+       ];
+       description = "Extract and create tar files using conduit for streaming";
+       license = lib.licenses.mit;
+       hydraPlatforms = lib.platforms.none;
+     }) {};
+
   "tardis" = callPackage
     ({ mkDerivation, base, mmorph, mtl }:
      mkDerivation {
@@ -285967,8 +289947,8 @@ self: {
      }:
      mkDerivation {
        pname = "taskwarrior";
-       version = "0.6.0.5";
-       sha256 = "1xyf6dd5npiypp6z7zs31vc9bsid4jm12lh4p415909vwfyp1c04";
+       version = "0.6.0.6";
+       sha256 = "12kxadpdw5k702j1p1bvgjy763gdhsy9wzx249apzqjgh0x766jc";
        libraryHaskellDepends = [
          aeson base bytestring containers process random text time uuid
        ];
@@ -286049,6 +290029,8 @@ self: {
        pname = "tasty-autocollect";
        version = "0.4.1";
        sha256 = "0b374x2m2rx1zzqb1i5wr36d6nxs1wx1cxyggjszlwxssz0vqzcj";
+       revision = "1";
+       editedCabalFile = "0vr3r4wq2kxzg4yk085xk95zz6a5m8q0j6nb7lqlp7s5ff3ch7h1";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -286145,7 +290127,6 @@ self: {
        ];
        description = "Check multiple items during a tasty test";
        license = lib.licenses.isc;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "tasty-dejafu" = callPackage
@@ -286279,8 +290260,6 @@ self: {
        testHaskellDepends = [ aeson base tasty tasty-hunit ];
        description = "Grade your tasty-testsuite";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "tasty-groundhog-converters" = callPackage
@@ -286320,6 +290299,23 @@ self: {
        license = lib.licenses.bsd3;
      }) {};
 
+  "tasty-hedgehog_1_4_0_2" = callPackage
+    ({ mkDerivation, base, hedgehog, tagged, tasty
+     , tasty-expected-failure
+     }:
+     mkDerivation {
+       pname = "tasty-hedgehog";
+       version = "1.4.0.2";
+       sha256 = "0lki03z0p38x0dkqx5cqga30zy5m31gxn1saqylja9bi6bbq8d25";
+       libraryHaskellDepends = [ base hedgehog tagged tasty ];
+       testHaskellDepends = [
+         base hedgehog tasty tasty-expected-failure
+       ];
+       description = "Integration for tasty and hedgehog";
+       license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
+     }) {};
+
   "tasty-hedgehog-coverage" = callPackage
     ({ mkDerivation, base, containers, hedgehog, mtl, tagged, tasty
      , tasty-expected-failure, tasty-hedgehog, text, transformers
@@ -286477,8 +290473,8 @@ self: {
        pname = "tasty-inspection-testing";
        version = "0.2";
        sha256 = "1gdwbg545gwfx2a26s7hkgz9l9mfb13i6v20j09hqrlbh1xsi3qz";
-       revision = "1";
-       editedCabalFile = "1539r8zxbpwf1ia48syslq2j5v6l8czigp4fjwfwdcsf8x5k9j6g";
+       revision = "2";
+       editedCabalFile = "1fqyjm63qvi26lwbd9h2rj3178z8pf4gx3pry95fwlgkqd2hwjp9";
        libraryHaskellDepends = [
          base ghc inspection-testing tasty template-haskell
        ];
@@ -286552,8 +290548,6 @@ self: {
        ];
        description = "JSON reporter for the tasty testing framework";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "tasty-kat" = callPackage
@@ -286680,8 +290674,6 @@ self: {
        description = "Bencmarking using instruction counting";
        license = lib.licenses.bsd3;
        platforms = lib.platforms.linux;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {inherit (pkgs) papi;};
 
   "tasty-prelude" = callPackage
@@ -287043,6 +291035,7 @@ self: {
        description = "tcache using Amazon Web Services as default persistence mechanism";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "tccli" = callPackage
@@ -287096,7 +291089,6 @@ self: {
        description = "Bindings to libtcod roguelike engine";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {inherit (pkgs) libtcod;};
 
   "tconfig" = callPackage
@@ -287194,7 +291186,6 @@ self: {
        description = "Test framework wrapper";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "tdigest" = callPackage
@@ -287590,7 +291581,6 @@ self: {
        ];
        description = "Easy to use library for building Telegram bots. Exports Telegram Bot API.";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "telegram-bot-simple" = callPackage
@@ -287617,7 +291607,6 @@ self: {
        ];
        description = "Easy to use library for building Telegram bots";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "telegram-raw-api" = callPackage
@@ -288326,6 +292315,7 @@ self: {
        description = "TensorFlow bindings";
        license = lib.licenses.asl20;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {inherit (pkgs) libtensorflow;};
 
   "tensorflow-core-ops" = callPackage
@@ -288347,6 +292337,7 @@ self: {
        description = "Haskell wrappers for Core Tensorflow Ops";
        license = lib.licenses.asl20;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "tensorflow-logging" = callPackage
@@ -288376,6 +292367,7 @@ self: {
        description = "TensorBoard related functionality";
        license = lib.licenses.asl20;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "tensorflow-mnist" = callPackage
@@ -288460,6 +292452,7 @@ self: {
        description = "Friendly layer around TensorFlow bindings";
        license = lib.licenses.asl20;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "tensorflow-proto" = callPackage
@@ -288949,8 +292942,6 @@ self: {
        ];
        description = "Tesla API client";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "test-fixture" = callPackage
@@ -289906,8 +293897,6 @@ self: {
        ];
        description = "Builder for Text and ByteString based on linear types";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "text-compression" = callPackage
@@ -290002,8 +293991,6 @@ self: {
        ];
        description = "A typeclass for user-facing output";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "text-format" = callPackage
@@ -290558,10 +294545,8 @@ self: {
      }:
      mkDerivation {
        pname = "text-show";
-       version = "3.10.3";
-       sha256 = "0f59cr1bqy2kbhdxxz1a86lf6masyy67f1i8kj1815df6rpgnshy";
-       revision = "1";
-       editedCabalFile = "0ix7wgh7xcgxfdvfrphilb81zfpkb1swla2has2py24nxyn2dd46";
+       version = "3.10.4";
+       sha256 = "0kjpl9wbvn5zcpwjyrvdnkcp260rizff598cmqh4py8225fl5bmz";
        libraryHaskellDepends = [
          array base base-compat-batteries bifunctors bytestring
          bytestring-builder containers generic-deriving ghc-boot-th ghc-prim
@@ -290591,10 +294576,8 @@ self: {
      }:
      mkDerivation {
        pname = "text-show-instances";
-       version = "3.9.5";
-       sha256 = "0i91yil7qlk0vv242prs178lvddzlzhh9d78lnmvyvalqrw7bib8";
-       revision = "1";
-       editedCabalFile = "06464d8ffxj5ag8ml6nriywwb05jk5z3kim13d0q3bz0m7s3hgz0";
+       version = "3.9.6";
+       sha256 = "1xmifjcx52jpa3qlmd5v11x429kn5qm64k2a7ai1lwpmy3mvpa90";
        libraryHaskellDepends = [
          aeson base base-compat bifunctors binary containers directory
          ghc-boot-th haskeline hpc old-locale old-time pretty random
@@ -290998,6 +294981,21 @@ self: {
        hydraPlatforms = lib.platforms.none;
      }) {};
 
+  "th-abstraction_0_6_0_0" = callPackage
+    ({ mkDerivation, base, containers, ghc-prim, template-haskell }:
+     mkDerivation {
+       pname = "th-abstraction";
+       version = "0.6.0.0";
+       sha256 = "0c0sqn9bz2rgrqdfkricbs2p6vn7is89qcpqw7hvc00c3z56xsk9";
+       libraryHaskellDepends = [
+         base containers ghc-prim template-haskell
+       ];
+       testHaskellDepends = [ base containers template-haskell ];
+       description = "Nicer interface for reified information about data types";
+       license = lib.licenses.isc;
+       hydraPlatforms = lib.platforms.none;
+     }) {};
+
   "th-alpha" = callPackage
     ({ mkDerivation, base, containers, derive, mmorph, mtl, tasty
      , tasty-hunit, tasty-quickcheck, template-haskell, th-desugar
@@ -291062,8 +295060,8 @@ self: {
        pname = "th-compat";
        version = "0.1.4";
        sha256 = "1f5ssi24mnhmmi91dl5ddg2jwci6akwlznqggf56nyxl9b0pmyfq";
-       revision = "2";
-       editedCabalFile = "0c0p2qy78cwhdfw0hn8g16l5xidikdk5314gam4258pk7q47rbp5";
+       revision = "3";
+       editedCabalFile = "1zrjfmbm9dm3mh3s4h6nb80ixwypkmc2dzgxim6b1jkjkj7inz9y";
        libraryHaskellDepends = [ base template-haskell ];
        testHaskellDepends = [
          base base-compat hspec mtl template-haskell
@@ -291212,8 +295210,8 @@ self: {
        pname = "th-expand-syns";
        version = "0.4.11.0";
        sha256 = "1l7pkc16vnjgiam31745av14j7ngnr5mqmgp77xwd3h7fg75kkca";
-       revision = "1";
-       editedCabalFile = "0kc4czr7bz5wl88fj11h02gn8fwr2azhw5z7ykil6lx7v1b42rg8";
+       revision = "2";
+       editedCabalFile = "08g28p57w0i61x2f2036aqxp4ilhchy7h3dbd0ncbq17ba6x9hfi";
        libraryHaskellDepends = [
          base containers syb template-haskell th-abstraction
        ];
@@ -291405,8 +295403,8 @@ self: {
      }:
      mkDerivation {
        pname = "th-lift";
-       version = "0.8.3";
-       sha256 = "0xbbii04c60l6v6fnd50lldhpsg1ba03j1ff9bmyzpp7z3sppm95";
+       version = "0.8.4";
+       sha256 = "06x6njyn6p6shwj5n1znq017vwalr867ziwbwzimz9jbilipgigr";
        libraryHaskellDepends = [
          base ghc-prim template-haskell th-abstraction
        ];
@@ -291455,8 +295453,8 @@ self: {
        pname = "th-orphans";
        version = "0.13.14";
        sha256 = "0z07qcbbsj2b3j9p1qr4jvlpa7qgjfjvymkjd6vbizka1wd2mnwx";
-       revision = "1";
-       editedCabalFile = "1lb3gi32gzy6ml8jxzyj6jp9gglgg2737aqc128gqz4g7wvbnasy";
+       revision = "2";
+       editedCabalFile = "1kjb7ik4js6bpsdb32sna8xcxamia02fhx1wcbg831mnf2qfpp6w";
        libraryHaskellDepends = [
          base mtl template-haskell th-compat th-lift th-reify-many
        ];
@@ -292059,8 +296057,6 @@ self: {
        testToolDepends = [ hspec-discover ];
        description = "A simplified implementation of Erlang/OTP like supervisor over thread";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "thread-utils-context" = callPackage
@@ -292752,7 +296748,6 @@ self: {
        description = "Serial support for tidal";
        license = lib.licenses.gpl3Only;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "tidal-vis" = callPackage
@@ -293147,6 +297142,18 @@ self: {
        license = lib.licenses.mit;
      }) {};
 
+  "time-manager_0_0_1" = callPackage
+    ({ mkDerivation, auto-update, base, unliftio }:
+     mkDerivation {
+       pname = "time-manager";
+       version = "0.0.1";
+       sha256 = "0nx03qrnvxd1r0mdy8qzr5hd0gfzjg67cqlg63nbhsdwz8ijaj87";
+       libraryHaskellDepends = [ auto-update base unliftio ];
+       description = "Scalable timer";
+       license = lib.licenses.mit;
+       hydraPlatforms = lib.platforms.none;
+     }) {};
+
   "time-out" = callPackage
     ({ mkDerivation, base, data-default-class, exceptions
      , time-interval, time-units, transformers
@@ -293982,7 +297989,6 @@ self: {
        description = "TinyMesh - communicating with auto-meshing sensor network";
        license = lib.licenses.bsd2;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "tinyXml" = callPackage
@@ -294082,8 +298088,8 @@ self: {
      }:
      mkDerivation {
        pname = "tinytools";
-       version = "0.1.0.3";
-       sha256 = "18ww0f86ifhy8770vflcip6vcfdaz8r8rgzss83w21qr0q4cl8bm";
+       version = "0.1.0.4";
+       sha256 = "0yzwvygjdg8g7w8hqk7x1myab9yl12945i6n7q93yr9w80s04d0a";
        libraryHaskellDepends = [
          aeson aeson-pretty base bimap binary bytestring constraints-extras
          containers data-default data-ordlist deepseq dependent-map
@@ -294100,6 +298106,7 @@ self: {
          random-shuffle ref-tf reflex reflex-potatoes reflex-test-host
          relude semialign template-haskell text text-icu these vector vty
        ];
+       description = "tinytools is a mono-space unicode diagram editor";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
      }) {};
@@ -294115,10 +298122,8 @@ self: {
      }:
      mkDerivation {
        pname = "tinytools-vty";
-       version = "0.1.0.3";
-       sha256 = "17q484rfrwixp2y72x1pxcav2y6sz99la961yn8iwa1ipwljy1s6";
-       revision = "1";
-       editedCabalFile = "1mfyc4ilc68p8q4cpjq528387zg4bzzs6kzp12s4i3hmm7lxxch8";
+       version = "0.1.0.4";
+       sha256 = "1hcnwnq5imjqdcvlcri8dmc4lr08dg3nx6rklrv8a0rx34rd8naa";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -294146,7 +298151,7 @@ self: {
          reflex-test-host reflex-vty relude semialign template-haskell text
          these time tinytools vty
        ];
-       description = "a terminal based unicode diagram editing tool";
+       description = "tinytools-vty is a terminal based monospace unicode diagram editing tool";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
      }) {};
@@ -294527,7 +298532,7 @@ self: {
        license = lib.licenses.bsd3;
      }) {};
 
-  "tls_1_7_0" = callPackage
+  "tls_1_7_1" = callPackage
     ({ mkDerivation, asn1-encoding, asn1-types, async, base, bytestring
      , cereal, crypton, crypton-x509, crypton-x509-store
      , crypton-x509-validation, data-default-class, gauge, hourglass
@@ -294536,8 +298541,8 @@ self: {
      }:
      mkDerivation {
        pname = "tls";
-       version = "1.7.0";
-       sha256 = "0y20ab42pa6ls799w8s6zda6r7q4bw25jghimzv68s6j0b4m0aiw";
+       version = "1.7.1";
+       sha256 = "0q277cp2dqp5cs7mmzqavi8sm0km7xbf2zgcqjp17491w7q5a687";
        libraryHaskellDepends = [
          asn1-encoding asn1-types async base bytestring cereal crypton
          crypton-x509 crypton-x509-store crypton-x509-validation
@@ -294733,15 +298738,15 @@ self: {
        license = lib.licenses.bsd3;
      }) {};
 
-  "tmp-proc_0_5_2_1" = callPackage
+  "tmp-proc_0_5_3_0" = callPackage
     ({ mkDerivation, async, base, bytestring, data-default, hspec
      , http-client, http-types, mtl, network, process, text, unliftio
      , wai, warp, warp-tls
      }:
      mkDerivation {
        pname = "tmp-proc";
-       version = "0.5.2.1";
-       sha256 = "0zhwvpy9dxxy550wr7wha6iqmrvcqpdgdlzx08sjljzvi1wiliji";
+       version = "0.5.3.0";
+       sha256 = "0wir2bmvpibx5ak1zfk3jjxalz5lznqfw48m4cybds02xpmxrsxa";
        isLibrary = true;
        isExecutable = true;
        enableSeparateDataOutput = true;
@@ -294768,8 +298773,8 @@ self: {
      }:
      mkDerivation {
        pname = "tmp-proc-example";
-       version = "0.5.1.2";
-       sha256 = "1dfvb85n3ivikfm91i33g4l96rdndrhqxad18h3nfk9g05x9af1d";
+       version = "0.5.3.1";
+       sha256 = "10p93rck5z4jhsy77rg6v1i19125561px1mjigqs1v1ip288ygfa";
        libraryHaskellDepends = [
          aeson base bytestring exceptions hedis hspec hspec-tmp-proc
          http-client http-client-tls monad-logger mtl persistent
@@ -294778,7 +298783,7 @@ self: {
          tmp-proc-postgres tmp-proc-redis transformers wai warp
        ];
        testHaskellDepends = [ base hspec ];
-       description = "Shows how to test a simple service using tmp-proc";
+       description = "Test a simple service with backends running on docker using tmp-proc";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
        broken = true;
@@ -294803,6 +298808,26 @@ self: {
        license = lib.licenses.bsd3;
      }) {};
 
+  "tmp-proc-postgres_0_5_3_1" = callPackage
+    ({ mkDerivation, base, bytestring, hspec, hspec-tmp-proc
+     , postgresql-simple, text, tmp-proc
+     }:
+     mkDerivation {
+       pname = "tmp-proc-postgres";
+       version = "0.5.3.1";
+       sha256 = "04kcqn2lg7ycf2hjv4gvq9y59w48dn5kijxs7cghiz8yq1qc75zf";
+       libraryHaskellDepends = [
+         base bytestring postgresql-simple text tmp-proc
+       ];
+       testHaskellDepends = [
+         base bytestring hspec hspec-tmp-proc postgresql-simple text
+         tmp-proc
+       ];
+       description = "Launch a PostgreSQL database in docker using tmp-proc";
+       license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
+     }) {};
+
   "tmp-proc-rabbitmq" = callPackage
     ({ mkDerivation, amqp, base, bytestring, hspec, hspec-tmp-proc
      , text, tmp-proc
@@ -294819,6 +298844,23 @@ self: {
        license = lib.licenses.bsd3;
      }) {};
 
+  "tmp-proc-rabbitmq_0_5_3_1" = callPackage
+    ({ mkDerivation, amqp, base, bytestring, hspec, hspec-tmp-proc
+     , text, tmp-proc
+     }:
+     mkDerivation {
+       pname = "tmp-proc-rabbitmq";
+       version = "0.5.3.1";
+       sha256 = "0jkghypnlc9fsss8nqk7rbr42wkmdpgaa5v6bhfw6mwrcnz4i15h";
+       libraryHaskellDepends = [ amqp base bytestring text tmp-proc ];
+       testHaskellDepends = [
+         amqp base bytestring hspec hspec-tmp-proc text tmp-proc
+       ];
+       description = "Launch RabbitMQ in docker using tmp-proc";
+       license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
+     }) {};
+
   "tmp-proc-redis" = callPackage
     ({ mkDerivation, base, bytestring, hedis, hspec, hspec-tmp-proc
      , text, tmp-proc
@@ -294835,22 +298877,41 @@ self: {
        license = lib.licenses.bsd3;
      }) {};
 
+  "tmp-proc-redis_0_5_3_1" = callPackage
+    ({ mkDerivation, base, bytestring, hedis, hspec, hspec-tmp-proc
+     , text, tmp-proc
+     }:
+     mkDerivation {
+       pname = "tmp-proc-redis";
+       version = "0.5.3.1";
+       sha256 = "1pqmg6xqfbl71q5pnryrmqsf443qpsq89wk1kax6k68zmyn7ws4i";
+       libraryHaskellDepends = [ base bytestring hedis text tmp-proc ];
+       testHaskellDepends = [
+         base bytestring hedis hspec hspec-tmp-proc text tmp-proc
+       ];
+       description = "Launch Redis in docker using tmp-proc";
+       license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
+     }) {};
+
   "tmp-proc-zipkin" = callPackage
     ({ mkDerivation, base, bytestring, hspec, hspec-tmp-proc
      , http-client, text, tmp-proc, tracing
      }:
      mkDerivation {
        pname = "tmp-proc-zipkin";
-       version = "0.5.1.4";
-       sha256 = "19vwpgchhzc29ssvdidjim97957dnf8p21myq5fc3js7dq7lzgz3";
+       version = "0.5.3.1";
+       sha256 = "1wwy50987h6bx9fyn5k9jamsmzrx8l58nqbjynmwymwzj82kwlwc";
        libraryHaskellDepends = [
          base bytestring http-client text tmp-proc tracing
        ];
        testHaskellDepends = [
          base bytestring hspec hspec-tmp-proc text tmp-proc
        ];
-       description = "Shows how to run redis as a tmp proc";
+       description = "Launch ZipKin in docker using tmp-proc";
        license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "tmpl" = callPackage
@@ -295077,8 +299138,6 @@ self: {
        testHaskellDepends = [ base time ];
        description = "Rate limiter using lazy bucket algorithm";
        license = lib.licenses.gpl3Only;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "token-limiter" = callPackage
@@ -295251,7 +299310,6 @@ self: {
        description = "TokTok C code style checker";
        license = lib.licenses.gpl3Only;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "toktok" = callPackage
@@ -295408,6 +299466,8 @@ self: {
        pname = "tomland";
        version = "1.3.3.2";
        sha256 = "152jqjv6n7n2hdysn903wfhpwh6vp8wmjiymzasazprasdcxpywm";
+       revision = "1";
+       editedCabalFile = "03gnkws6yggkjn4kh8m1aah51a9lg2p25l9bl51cq54hmpcq51ni";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -295735,8 +299795,8 @@ self: {
     ({ mkDerivation, base, filepath, hspec, profunctors, text }:
      mkDerivation {
        pname = "tophat";
-       version = "1.0.5.1";
-       sha256 = "1y519agpn8ksybfakgg4n565w26mgr3kvpjk555pq5s6rb77wjdf";
+       version = "1.0.6.0";
+       sha256 = "0ijsd9af3p06q4dk02fckmyqxf9hrvmn98fmlzhykkzi3q22648j";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [ base profunctors text ];
@@ -296557,6 +300617,7 @@ self: {
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "transf";
+       broken = true;
      }) {};
 
   "transfer-db" = callPackage
@@ -296611,12 +300672,12 @@ self: {
        mainProgram = "Benchmark";
      }) {};
 
-  "transformers_0_6_1_0" = callPackage
+  "transformers_0_6_1_1" = callPackage
     ({ mkDerivation, base }:
      mkDerivation {
        pname = "transformers";
-       version = "0.6.1.0";
-       sha256 = "1n54v7wrnk06rj9w70grpmr9c6xvw1shpwygfnshslarggnwpaz7";
+       version = "0.6.1.1";
+       sha256 = "09fpjawkixgm3xpas89wkpkn1jfpxz035crnp97if2hh1y759ll1";
        libraryHaskellDepends = [ base ];
        description = "Concrete functor and monad transformers";
        license = lib.licenses.bsd3;
@@ -297745,8 +301806,8 @@ self: {
        pname = "trial";
        version = "0.0.0.0";
        sha256 = "0lnq80983bg2cjim3fy8rwisn55f6acqwp67w7791kzfdwshxkww";
-       revision = "1";
-       editedCabalFile = "1anl65i1zk2764078n7xa0ymrrg58hwlsnm4b6km56yw77j3nkc3";
+       revision = "2";
+       editedCabalFile = "1w98141cgwrik37hz35vkyf5x4p230863axp6mf6rnrlf7gayikr";
        libraryHaskellDepends = [ base colourista dlist ];
        testHaskellDepends = [
          base dlist doctest hedgehog hspec hspec-hedgehog splitmix
@@ -297761,6 +301822,8 @@ self: {
        pname = "trial-optparse-applicative";
        version = "0.0.0.0";
        sha256 = "1h8pfznf1dp9z3r2kl2ljgmxxkfp3va9yqba00fyvw85lna2aggn";
+       revision = "1";
+       editedCabalFile = "0g05gi4b3c7ghyih83wq4icavg51p1bjx75i1g9nnx1cy4j82m4j";
        libraryHaskellDepends = [ base optparse-applicative trial ];
        description = "Trial helper functions for optparse-applicative";
        license = lib.licenses.mpl20;
@@ -297772,13 +301835,11 @@ self: {
        pname = "trial-tomland";
        version = "0.0.0.0";
        sha256 = "12klfq5ajn4bjrws633pfdc2zhpkwvwmrm7269xfh252fjwk1x23";
-       revision = "1";
-       editedCabalFile = "1h2ygxwg75hvx8izmfgrkk1sznafpkaxz3v18hxfv4b8lfm9nfkl";
+       revision = "2";
+       editedCabalFile = "1ssvwzqcz5vmvlrmxl6akcfpkr15inra3hdjfm1pg50gcri3mxkp";
        libraryHaskellDepends = [ base text tomland trial ];
        description = "Trial helper functions for tomland";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "triangulation" = callPackage
@@ -297806,6 +301867,8 @@ self: {
        pname = "trie-simple";
        version = "0.4.2";
        sha256 = "1ai4fn35312z6ydwadi0rxscglwqawjrzq6p1i2kpbf7vmflznjg";
+       revision = "1";
+       editedCabalFile = "08vpcln682lxpz6367f6h5mvi6p75g3gcav432jz0bkmhvr3yaa2";
        libraryHaskellDepends = [
          base containers deepseq hashable indexed-traversable matchable mtl
          semialign these witherable
@@ -297846,8 +301909,6 @@ self: {
        ];
        description = "Various trie implementations in Haskell";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "trifecta" = callPackage
@@ -297860,10 +301921,8 @@ self: {
      }:
      mkDerivation {
        pname = "trifecta";
-       version = "2.1.2";
-       sha256 = "1akx8m6mgskwsbhsf90cxlqjq23jk4pwaxagvm923dpncwrlwfla";
-       revision = "3";
-       editedCabalFile = "005c02rzsj83zm5ys6572af2d57lalsnkla5f312x0b7ykhnmz90";
+       version = "2.1.3";
+       sha256 = "05jnq2q27ichv9x6g9dx7ljppy3mkyv8ppzb0ynmfmpkcbghpbrf";
        libraryHaskellDepends = [
          ansi-terminal array base blaze-builder blaze-html blaze-markup
          bytestring charset comonad containers deepseq fingertree ghc-prim
@@ -297897,7 +301956,6 @@ self: {
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "trigger";
-       broken = true;
      }) {};
 
   "trim" = callPackage
@@ -298632,8 +302690,6 @@ self: {
        testHaskellDepends = [ base ghc-prim hspec ];
        description = "A package to append, sequence and fold items and tuples into new tuples";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "tuple-append-instances" = callPackage
@@ -298650,6 +302706,7 @@ self: {
        description = "Extra instances for the typeclasses in the tuple-append package";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
+       broken = true;
      }) {};
 
   "tuple-fields" = callPackage
@@ -298678,7 +302735,6 @@ self: {
        description = "Enum instances for tuples where the digits increase with the same speed";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "tuple-generic" = callPackage
@@ -298702,7 +302758,6 @@ self: {
        description = "Functions to convert between tuples and HLists";
        license = "unknown";
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "tuple-lenses" = callPackage
@@ -298730,7 +302785,6 @@ self: {
        description = "Morph between tuples, or convert them from and to HLists";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "tuple-ops" = callPackage
@@ -298987,8 +303041,6 @@ self: {
        testToolDepends = [ hspec-discover ];
        description = "Tiny web application framework for WAI";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "tweak" = callPackage
@@ -299237,7 +303289,6 @@ self: {
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "twfy-api-client";
-       broken = true;
      }) {};
 
   "twhs" = callPackage
@@ -299414,7 +303465,6 @@ self: {
        badPlatforms = lib.platforms.darwin;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "example";
-       broken = true;
      }) {};
 
   "twirp" = callPackage
@@ -299436,8 +303486,6 @@ self: {
        ];
        description = "Haskell twirp foundations";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "twisty" = callPackage
@@ -300898,8 +304946,6 @@ self: {
        testHaskellDepends = [ base tasty tasty-hunit tasty-quickcheck ];
        description = "Plugin to faciliate type-level let";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "typelevel" = callPackage
@@ -301390,8 +305436,6 @@ self: {
        testToolDepends = [ tasty-discover ];
        description = "Safe timezone-aware handling of time";
        license = lib.licenses.mpl20;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "u2f" = callPackage
@@ -301878,8 +305922,6 @@ self: {
        ];
        description = "A library to work with the basic Ukrainian phonetics and syllable segmentation";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "ukrainian-phonetics-basic-array-bytestring" = callPackage
@@ -302109,8 +306151,6 @@ self: {
        ];
        description = "Support for programming with names and binders using kind-generics";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "unbounded-delays" = callPackage
@@ -302293,8 +306333,6 @@ self: {
        libraryHaskellDepends = [ base ];
        description = "Tiny package providing unescaping versions of show and print";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "unexceptionalio" = callPackage
@@ -302599,8 +306637,6 @@ self: {
        benchmarkHaskellDepends = [ base deepseq tasty tasty-bench ];
        description = "Unicode characters names and aliases";
        license = lib.licenses.asl20;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "unicode-data-scripts" = callPackage
@@ -302620,8 +306656,6 @@ self: {
        ];
        description = "Unicode characters scripts";
        license = lib.licenses.asl20;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "unicode-data-security" = callPackage
@@ -302640,8 +306674,6 @@ self: {
        benchmarkHaskellDepends = [ base deepseq tasty tasty-bench ];
        description = "Unicode security mechanisms database";
        license = lib.licenses.asl20;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "unicode-general-category" = callPackage
@@ -302771,8 +306803,8 @@ self: {
      }:
      mkDerivation {
        pname = "unicode-tricks";
-       version = "0.14.0.0";
-       sha256 = "1p612nkaq2v020n22zgw6cv3glwjsj1jcy6ad4lw30dg800wcrb2";
+       version = "0.14.1.0";
+       sha256 = "1j08f217kma9bqv0b4z9k3l3hmfy2cw4fiaqwyikhnz3a6d8crzj";
        libraryHaskellDepends = [
          base containers data-default-class deepseq hashable QuickCheck text
          time
@@ -302827,6 +306859,8 @@ self: {
        pname = "unification-fd";
        version = "0.11.2";
        sha256 = "1lyx3g10llkr7vl7c2j15ddlqrkz2r684d1laza7nvq97amrqnqv";
+       revision = "1";
+       editedCabalFile = "07xmrqmk99lnp3jyk0dqgnpprm3ghnyjdqva0y13ddh3nw8iiqdj";
        libraryHaskellDepends = [ base containers logict mtl ];
        description = "Simple generic unification algorithms";
        license = lib.licenses.bsd3;
@@ -302916,7 +306950,6 @@ self: {
        ];
        description = "uniform text based operations to call http";
        license = "GPL";
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "uniform-io" = callPackage
@@ -302959,8 +306992,6 @@ self: {
        ];
        description = "handling of JSON and YAML in an uniform way";
        license = "GPL";
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "uniform-latex2pdf" = callPackage
@@ -302977,7 +307008,6 @@ self: {
        ];
        description = "convert a latex `tex` file to a pdf";
        license = "GPL";
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "uniform-pair" = callPackage
@@ -303010,7 +307040,6 @@ self: {
        ];
        description = "handling of some pandoc stuff";
        license = "GPL";
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "uniform-shake" = callPackage
@@ -303022,7 +307051,6 @@ self: {
        libraryHaskellDepends = [ base shake uniform-json uniformBase ];
        description = "uniform wrapper for shake";
        license = "GPL";
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "uniform-strings" = callPackage
@@ -303194,8 +307222,8 @@ self: {
      }:
      mkDerivation {
        pname = "unionmount";
-       version = "0.2.0.0";
-       sha256 = "0hh577kwg6981141g62f4w95lyyhjn3a461sy28822gd3lpwlwlm";
+       version = "0.2.2.0";
+       sha256 = "0gifmxi8z74s6ckh5naqp3y4ililxzp52adnlp10cglbjw18vkis";
        libraryHaskellDepends = [
          async base bytestring containers data-default directory filepath
          filepattern fsnotify lvar monad-logger mtl relude text time
@@ -303203,8 +307231,6 @@ self: {
        ];
        description = "Union mount filesystem paths into Haskell datastructures";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "unipatterns" = callPackage
@@ -303588,25 +307614,6 @@ self: {
      }:
      mkDerivation {
        pname = "units-parser";
-       version = "0.1.1.4";
-       sha256 = "1sdf8jqq03x20gj91faqir9vrdjq7cxpnypx7bi953vjg8fh2jfm";
-       revision = "1";
-       editedCabalFile = "14g8a4azsdxp86c0yddkws5yzszjmkw1y78x1i7pj20cgbfjnnn7";
-       libraryHaskellDepends = [ base containers mtl multimap parsec ];
-       testHaskellDepends = [
-         base containers mtl multimap parsec syb tasty tasty-hunit
-         template-haskell
-       ];
-       description = "A parser for units of measure";
-       license = lib.licenses.bsd3;
-     }) {};
-
-  "units-parser_0_1_1_5" = callPackage
-    ({ mkDerivation, base, containers, mtl, multimap, parsec, syb
-     , tasty, tasty-hunit, template-haskell
-     }:
-     mkDerivation {
-       pname = "units-parser";
        version = "0.1.1.5";
        sha256 = "16q7q9c27wy8hx7rp34d2nhywpdkn8rb43hljx1j20kydyp0m2sb";
        libraryHaskellDepends = [ base containers mtl multimap parsec ];
@@ -303616,7 +307623,6 @@ self: {
        ];
        description = "A parser for units of measure";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "unittyped" = callPackage
@@ -303695,7 +307701,6 @@ self: {
        description = "Implementation of the unity monad for the Yesod framework";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "universal" = callPackage
@@ -303914,6 +307919,8 @@ self: {
        pname = "unix";
        version = "2.8.1.1";
        sha256 = "1133y9wyhxznw9sizcybf0rcrm5pgsx8g4qriicz703w89cpca6c";
+       revision = "1";
+       editedCabalFile = "1nqriil1mrrijyfkhnfxcdsnvmcg7b6p2zpadj1vkqw0kbxl71dc";
        libraryHaskellDepends = [ base bytestring filepath time ];
        testHaskellDepends = [ base tasty tasty-hunit ];
        description = "POSIX functionality";
@@ -306071,8 +310078,8 @@ self: {
      }:
      mkDerivation {
        pname = "uuagc";
-       version = "0.9.54";
-       sha256 = "1gs4dx9h7gyamlaj9sjpx5yrriffl3g5wn0hr9bjwzy223nprizp";
+       version = "0.9.55";
+       sha256 = "1j0k94l1ydwwf2cpw22f8caa99hnw61ni7a0bpdgy7vdxsplzzqc";
        isLibrary = true;
        isExecutable = true;
        setupHaskellDepends = [ base Cabal uuagc-cabal ];
@@ -306701,6 +310708,8 @@ self: {
        pname = "validation-selective";
        version = "0.2.0.0";
        sha256 = "11s9qsp5w19lbk6vg6psr3864xdsx2kmx3gcmnn2qkx6wsblx24s";
+       revision = "1";
+       editedCabalFile = "0m6bvg1z5rxwr2ls8vqizjx3psjm0dvf2vvycwi4shbqn2pgaiz8";
        libraryHaskellDepends = [ base deepseq selective ];
        testHaskellDepends = [
          base doctest hedgehog hspec hspec-hedgehog selective text
@@ -307589,8 +311598,8 @@ self: {
        pname = "vector";
        version = "0.13.0.0";
        sha256 = "0ksvs6ldb8bzbjy4gk39wds2lrwill2g7pbr13h54bz12myidly5";
-       revision = "3";
-       editedCabalFile = "0k14l1r84gxjv385crq8f1kvdcr4kjwyi4k7f64g6nksl60sqp7s";
+       revision = "5";
+       editedCabalFile = "0j239l4jjjyxaly65fpyg8458k8srgnsy5kn8710c7hmqwl222qx";
        libraryHaskellDepends = [ base deepseq primitive vector-stream ];
        testHaskellDepends = [
          base base-orphans doctest HUnit primitive QuickCheck random tasty
@@ -307969,8 +311978,6 @@ self: {
        doHaddock = false;
        description = "Fast and flexible quicksort implementation for mutable vectors";
        license = lib.licenses.asl20;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "vector-random" = callPackage
@@ -308151,8 +312158,8 @@ self: {
        pname = "vector-stream";
        version = "0.1.0.0";
        sha256 = "0v40vdpp35lhnnnx7q17fah0c14jrkjlnwsk0q4mbwb7ch7j3258";
-       revision = "2";
-       editedCabalFile = "1jldm2bh9d0y7vmyv3l85ilps4n8ypqr6da0cgqg5dfi3hlxbmpm";
+       revision = "3";
+       editedCabalFile = "1bp859ly11xqipgr29d70kl2day7raibmm79qprdjm7c9ffraxw9";
        libraryHaskellDepends = [ base ghc-prim ];
        description = "Efficient Streams";
        license = lib.licenses.bsd3;
@@ -308470,8 +312477,6 @@ self: {
        ];
        description = "Small alternative prelude";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "version-natural" = callPackage
@@ -309233,9 +313238,7 @@ self: {
        ];
        description = "Visualize CBN reduction";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "visualize-cbn";
-       broken = true;
      }) {};
 
   "vitrea" = callPackage
@@ -310268,7 +314271,6 @@ self: {
        ];
        description = "Run CGI apps on WAI";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "wai-git-http" = callPackage
@@ -310509,9 +314511,7 @@ self: {
        ];
        description = "Haskell Webapps on AWS Lambda";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "wai-lambda";
-       broken = true;
      }) {};
 
   "wai-lens" = callPackage
@@ -310562,7 +314562,6 @@ self: {
        ];
        description = "A logging middleware for WAI applications";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "wai-logger" = callPackage
@@ -311331,7 +315330,6 @@ self: {
        ];
        description = "WAI Middleware for Request Throttling";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "wai-middleware-travisci" = callPackage
@@ -311374,7 +315372,6 @@ self: {
        description = "WAI Middleware to validate the request and response bodies";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "wai-middleware-verbs" = callPackage
@@ -311418,7 +315415,6 @@ self: {
        description = "WAI request predicates";
        license = "unknown";
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "wai-problem-details" = callPackage
@@ -312321,15 +316317,15 @@ self: {
        license = lib.licenses.mit;
      }) {};
 
-  "warp-tls_3_4_0" = callPackage
+  "warp-tls_3_4_1" = callPackage
     ({ mkDerivation, base, bytestring, data-default-class, network
      , recv, streaming-commons, tls, tls-session-manager, unliftio, wai
      , warp
      }:
      mkDerivation {
        pname = "warp-tls";
-       version = "3.4.0";
-       sha256 = "1pf3dlqjdybzza9sfs14r4vn63s15m7rpv83v27illbv2fs4a0b2";
+       version = "3.4.1";
+       sha256 = "0c4iz2dm12clcs1fqmi5c0qddzv09nqclfgfs6jhqdmygkvrkxs7";
        libraryHaskellDepends = [
          base bytestring data-default-class network recv streaming-commons
          tls tls-session-manager unliftio wai warp
@@ -312720,6 +316716,7 @@ self: {
        ];
        description = "Wrappers for web frameworks to ease usage with the FP Complete environment";
        license = lib.licenses.mit;
+       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "web-inv-route" = callPackage
@@ -312740,7 +316737,6 @@ self: {
        testHaskellDepends = [ base bytestring HUnit network-uri text ];
        description = "Composable, reversible, efficient web routing using invertible invariants and bijections";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "web-mongrel2" = callPackage
@@ -312852,8 +316848,8 @@ self: {
      }:
      mkDerivation {
        pname = "web-rep";
-       version = "0.10.1";
-       sha256 = "13x2fjq9d6pg89gfc127ipjnkaxza5qbvrym5k5wwpcj11l94mac";
+       version = "0.10.2.0";
+       sha256 = "1bph0zgns0kji4bhirffy4px1rddxyw2yiq6wa197pvl4wkpqn6y";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -312868,7 +316864,6 @@ self: {
        ];
        description = "representations of a web page";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "web-rep-example";
      }) {};
 
@@ -313355,6 +317350,7 @@ self: {
        license = lib.licenses.bsd2;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "testcloud";
+       broken = true;
      }) {};
 
   "webcrank" = callPackage
@@ -313856,8 +317852,8 @@ self: {
      }:
      mkDerivation {
        pname = "webp";
-       version = "0.1.0.2";
-       sha256 = "04bf0apq9q2kpkkhsj93y3fmjkind7dmgb3hf3nxlj7sy46d4mix";
+       version = "0.1.0.3";
+       sha256 = "01p55arpwq14yff0z285fdhrx0pjn9acxasapk7lr2f7ra5fql09";
        libraryHaskellDepends = [ base bytestring JuicyPixels vector ];
        libraryPkgconfigDepends = [ libwebp ];
        libraryToolDepends = [ c2hs ];
@@ -314125,9 +318121,7 @@ self: {
        executableHaskellDepends = [ array base containers random ];
        description = "Wedged postcard generator";
        license = "unknown";
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "wedged";
-       broken = true;
      }) {};
 
   "weeder_2_2_0" = callPackage
@@ -314271,7 +318265,6 @@ self: {
        license = "GPL";
        hydraPlatforms = lib.platforms.none;
        mainProgram = "weekdaze";
-       broken = true;
      }) {};
 
   "weierstrass-functions" = callPackage
@@ -314520,14 +318513,14 @@ self: {
      , prettyprinter, process, QuickCheck, s-cargot, scientific, stm
      , tasty, tasty-checklist, tasty-expected-failure, tasty-hedgehog
      , tasty-hunit, tasty-quickcheck, tasty-sugar, template-haskell
-     , temporary, text, th-abstraction, th-lift, th-lift-instances, time
-     , transformers, unliftio, unordered-containers, utf8-string, vector
-     , versions, zenc
+     , temporary, text, th-lift, th-lift-instances, time, transformers
+     , unliftio, unordered-containers, utf8-string, vector, versions
+     , zenc
      }:
      mkDerivation {
        pname = "what4";
-       version = "1.4";
-       sha256 = "1cmvf1cn4x3g86idbhs27f2hpm0vri51hcrvlss2bx4z85vk649b";
+       version = "1.5";
+       sha256 = "02wl88sma18zhn1pav966kgldiwh942mws01qyp6nxgcx0p9i76s";
        isLibrary = true;
        isExecutable = true;
        enableSeparateDataOutput = true;
@@ -314538,7 +318531,7 @@ self: {
          hashable hashtables io-streams lens libBF megaparsec mtl
          ordered-containers panic parameterized-utils parsec prettyprinter
          process s-cargot scientific stm template-haskell temporary text
-         th-abstraction th-lift th-lift-instances time transformers unliftio
+         th-lift th-lift-instances time transformers unliftio
          unordered-containers utf8-string vector versions zenc
        ];
        executableHaskellDepends = [ base parameterized-utils ];
@@ -315001,7 +318994,6 @@ self: {
        description = "Implements Windows Live Web Authentication and Delegated Authentication";
        license = lib.licenses.bsd3;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "winerror" = callPackage
@@ -315309,8 +319301,8 @@ self: {
     ({ mkDerivation, base, constraints, containers, countable }:
      mkDerivation {
        pname = "witness";
-       version = "0.6.1";
-       sha256 = "02ky1qc4ar8iy3rzjp2j89mp3k7skz5jp65vn7lilmwrvm1b2vcx";
+       version = "0.6.2";
+       sha256 = "0g83d6b6w8djsqkqdarw6szzwvz8h7i05x8jwzpvax86fcvwp3cr";
        libraryHaskellDepends = [ base constraints containers countable ];
        description = "values that witness types";
        license = lib.licenses.bsd2;
@@ -315513,6 +319505,8 @@ self: {
        pname = "wl-pprint-text";
        version = "1.2.0.2";
        sha256 = "0axivwh7bxmljxpfnccs66knxzrqck07byxmp2j737xbb26pf5cj";
+       revision = "1";
+       editedCabalFile = "030lk3dxn9ry0si5zd7lh1pww1i1nx670i1h3z8y4wwiil97pni1";
        libraryHaskellDepends = [ base base-compat text ];
        description = "A Wadler/Leijen Pretty Printer for Text values";
        license = lib.licenses.bsd3;
@@ -315874,9 +319868,7 @@ self: {
        benchmarkHaskellDepends = [ base criterion pandoc text ];
        description = "Get word counts and distributions";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "wrd";
-       broken = true;
      }) {};
 
   "wordcloud" = callPackage
@@ -316417,8 +320409,8 @@ self: {
      }:
      mkDerivation {
        pname = "wreq";
-       version = "0.5.4.0";
-       sha256 = "0wf4ia9zr6wmw9kvn5fhv3gr0h5247nz889j8rhamfgab9yn2a65";
+       version = "0.5.4.1";
+       sha256 = "0fn0cgr15i6zakg98mjkd1lik7r27ixxrg5iimfls154kwmxk8qs";
        isLibrary = true;
        isExecutable = true;
        setupHaskellDepends = [ base Cabal cabal-doctest ];
@@ -316441,6 +320433,45 @@ self: {
        license = lib.licenses.bsd3;
      }) {};
 
+  "wreq_0_5_4_2" = callPackage
+    ({ mkDerivation, aeson, aeson-pretty, attoparsec
+     , authenticate-oauth, base, base16-bytestring, base64-bytestring
+     , bytestring, Cabal, cabal-doctest, case-insensitive, containers
+     , cryptonite, directory, doctest, exceptions, filepath, ghc-prim
+     , hashable, http-client, http-client-tls, http-types, HUnit, lens
+     , lens-aeson, memory, mime-types, network-info, psqueues
+     , QuickCheck, snap-core, snap-server, template-haskell, temporary
+     , test-framework, test-framework-hunit, test-framework-quickcheck2
+     , text, time, time-locale-compat, transformers, unix-compat
+     , unordered-containers, uuid, vector
+     }:
+     mkDerivation {
+       pname = "wreq";
+       version = "0.5.4.2";
+       sha256 = "016m5ij80nxnkz3hvdzx3g4w7yjk40bx47xrn54bx1ni9aq2h6wh";
+       isLibrary = true;
+       isExecutable = true;
+       setupHaskellDepends = [ base Cabal cabal-doctest ];
+       libraryHaskellDepends = [
+         aeson attoparsec authenticate-oauth base base16-bytestring
+         bytestring case-insensitive containers cryptonite exceptions
+         ghc-prim hashable http-client http-client-tls http-types lens
+         lens-aeson memory mime-types psqueues template-haskell text time
+         time-locale-compat unordered-containers
+       ];
+       testHaskellDepends = [
+         aeson aeson-pretty base base64-bytestring bytestring
+         case-insensitive containers directory doctest filepath hashable
+         http-client http-types HUnit lens lens-aeson network-info
+         QuickCheck snap-core snap-server temporary test-framework
+         test-framework-hunit test-framework-quickcheck2 text time
+         transformers unix-compat unordered-containers uuid vector
+       ];
+       description = "An easy-to-use HTTP client library";
+       license = lib.licenses.bsd3;
+       hydraPlatforms = lib.platforms.none;
+     }) {};
+
   "wreq-helper" = callPackage
     ({ mkDerivation, aeson, aeson-result, base, bytestring, http-client
      , text
@@ -316863,8 +320894,6 @@ self: {
        testHaskellDepends = [ base bytestring envy hspec skews text ];
        description = "A-little-higher-level WebSocket client";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "wstunnel" = callPackage
@@ -316960,7 +320989,6 @@ self: {
        ];
        description = "Code for the dice chain problem";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        maintainers = [ lib.maintainers.thielema ];
      }) {};
 
@@ -317595,7 +321623,6 @@ self: {
        ];
        description = "XDG Basedir";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "xdg-desktop-entry" = callPackage
@@ -318678,7 +322705,6 @@ self: {
        description = "An interpreter of \"xml-query\" queries for the \"xml-types\" documents";
        license = lib.licenses.mit;
        hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "xml-syntax" = callPackage
@@ -319398,30 +323424,10 @@ self: {
      }:
      mkDerivation {
        pname = "xor";
-       version = "0.0.1.1";
-       sha256 = "05jwfrg4cm27ldj3dbl0y144njhiha9yiypirbhsg6lc1b36s3kh";
-       revision = "3";
-       editedCabalFile = "17al5ilxr2bqkv565jsv38frqvkxzn642m3j1j80zjmmw762a7sa";
-       libraryHaskellDepends = [ base bytestring ghc-byteorder ];
-       testHaskellDepends = [
-         base bytestring ghc-byteorder QuickCheck tasty tasty-hunit
-         tasty-quickcheck
-       ];
-       benchmarkHaskellDepends = [
-         base bytestring criterion ghc-byteorder
-       ];
-       description = "Efficient XOR masking";
-       license = lib.licenses.gpl2Plus;
-     }) {};
-
-  "xor_0_0_1_2" = callPackage
-    ({ mkDerivation, base, bytestring, criterion, ghc-byteorder
-     , QuickCheck, tasty, tasty-hunit, tasty-quickcheck
-     }:
-     mkDerivation {
-       pname = "xor";
        version = "0.0.1.2";
        sha256 = "0c0a1zg0kwp3jdlgw6y1l6qp00680khxa3sizx5wafdv09rwmrxc";
+       revision = "1";
+       editedCabalFile = "10k9apdrb9dnkhhg3xw1x2ac57ink224l554w4j3yv5w43jybd7r";
        libraryHaskellDepends = [ base bytestring ghc-byteorder ];
        testHaskellDepends = [
          base bytestring ghc-byteorder QuickCheck tasty tasty-hunit
@@ -319432,7 +323438,6 @@ self: {
        ];
        description = "Efficient XOR masking";
        license = lib.licenses.gpl2Plus;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "xorshift" = callPackage
@@ -320550,8 +324555,6 @@ self: {
        ];
        description = "Flexible declarative YAML parsing toolkit";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "yaml2owl" = callPackage
@@ -320618,8 +324621,8 @@ self: {
        pname = "yampa-canvas";
        version = "0.2.3";
        sha256 = "0a1pq1psmc4490isr19z4prnqq1w3374vkfmzpw9s20s2p6k5y7r";
-       revision = "10";
-       editedCabalFile = "1pamw58yr17csjj2ysy0wwx41dkvfdaxxn90k5q7rdb12rfvdyp4";
+       revision = "11";
+       editedCabalFile = "1pwk3g6ipzl94b74vgi34xjvkamm7ivwhs0ah52zg85jp8hr6qkc";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [ base blank-canvas stm time Yampa ];
@@ -320658,8 +324661,6 @@ self: {
        libraryHaskellDepends = [ base gloss Yampa ];
        description = "A GLOSS backend for Yampa";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "yampa-glut" = callPackage
@@ -320707,8 +324708,8 @@ self: {
      }:
      mkDerivation {
        pname = "yampa-test";
-       version = "0.14.3";
-       sha256 = "1r4kjf1ww4gfw310c1srcglxyd34c5qf3rb7xqpncjagvsh027xy";
+       version = "0.14.4";
+       sha256 = "18h94h0pylgn4q6pzkhs3j5qchj9kafw09xh4kgdp2394b7xk4iy";
        libraryHaskellDepends = [
          base normaldistribution QuickCheck Yampa
        ];
@@ -320717,8 +324718,6 @@ self: {
        ];
        description = "Testing library for Yampa";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "yampa2048" = callPackage
@@ -320936,7 +324935,6 @@ self: {
        testToolDepends = [ tasty-discover ];
        description = "Yet another string interpolator";
        license = lib.licenses.cc0;
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "yate" = callPackage
@@ -321720,8 +325718,8 @@ self: {
      }:
      mkDerivation {
        pname = "yesod-auth-oauth2";
-       version = "0.7.1.0";
-       sha256 = "112xdc5i1r1vfi95ws1jlldy6q9kv1cv6h26l3ahmmr8rqw3rz4h";
+       version = "0.7.1.1";
+       sha256 = "1giac751jkygddf09a1h75dd4qv6kjjw5992447k53m1j398dpbn";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
@@ -322015,8 +326013,8 @@ self: {
      }:
      mkDerivation {
        pname = "yesod-core";
-       version = "1.6.24.3";
-       sha256 = "035162bdcrjf2fs2whrhagh9jbclqnlzgp8ixxzi3712gm6dfkn5";
+       version = "1.6.24.4";
+       sha256 = "1r7jpilg42jn1hyg8wxg92jh496c9jhghkrxh8fi0x4rbrcswxj3";
        libraryHaskellDepends = [
          aeson auto-update base blaze-html blaze-markup bytestring
          case-insensitive cereal clientsession conduit conduit-extra
@@ -322332,8 +326330,8 @@ self: {
      }:
      mkDerivation {
        pname = "yesod-form-bootstrap4";
-       version = "3.0.1";
-       sha256 = "0yf4b14y8b5066lwdr7r2ayiavsnkar3s8q984yb1nrz5956f7qd";
+       version = "3.0.1.1";
+       sha256 = "0yii8sllvkqdpjlpq0al8c8srs7x9xy3v0jfcdi1d7rkc0dm2y1v";
        libraryHaskellDepends = [
          base blaze-html blaze-markup shakespeare text yesod-core yesod-form
        ];
@@ -322650,8 +326648,6 @@ self: {
        ];
        description = "A middleware for building CSP headers on the fly";
        license = lib.licenses.mit;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "yesod-newsfeed" = callPackage
@@ -323027,8 +327023,8 @@ self: {
      }:
      mkDerivation {
        pname = "yesod-recaptcha2";
-       version = "1.0.2";
-       sha256 = "0ql05yxq3k8sywncaz3cf3xaihf4pd0ijn139ms8snyps36k6l8h";
+       version = "1.0.2.1";
+       sha256 = "0sk9icq6j3fiiqq0hc2bxwm7mi1a1zli9gkyb8m007nylbqglvn2";
        libraryHaskellDepends = [
          aeson base http-conduit string-transform text yesod-core yesod-form
        ];
@@ -324236,9 +328232,7 @@ self: {
        executableHaskellDepends = [ base bytestring process utility-ht ];
        description = "Upload video to YouTube via YouTube API";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        maintainers = [ lib.maintainers.thielema ];
-       broken = true;
      }) {};
 
   "yql" = callPackage
@@ -324287,9 +328281,7 @@ self: {
        ];
        description = "Builds a static website from templates and data in YAML or CSV files";
        license = lib.licenses.gpl2Plus;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "yst";
-       broken = true;
      }) {};
 
   "ytl" = callPackage
@@ -324318,8 +328310,6 @@ self: {
        testHaskellDepends = [ base MonadRandom random yu-utils ];
        description = "Auth module for Yu";
        license = lib.licenses.gpl3Only;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "yu-core" = callPackage
@@ -324808,7 +328798,6 @@ self: {
        license = lib.licenses.mpl20;
        hydraPlatforms = lib.platforms.none;
        mainProgram = "zephyr";
-       broken = true;
      }) {};
 
   "zephyr-copilot" = callPackage
@@ -324951,9 +328940,7 @@ self: {
        ];
        description = "Haskell implementation of the ZeroMQ clone pattern";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "zeromq4-clone-pattern-exe";
-       broken = true;
      }) {};
 
   "zeromq4-conduit" = callPackage
@@ -325018,9 +329005,7 @@ self: {
        ];
        description = "Haskell implementation of several ZeroMQ patterns";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
        mainProgram = "zeromq4-patterns-exe";
-       broken = true;
      }) {};
 
   "zeromq4-simple" = callPackage
@@ -325105,7 +329090,6 @@ self: {
        ];
        description = "Polysemy effects for testing";
        license = "BSD-2-Clause-Patent";
-       hydraPlatforms = lib.platforms.none;
      }) {};
 
   "zifter" = callPackage
@@ -325252,8 +329236,8 @@ self: {
        pname = "zigzag";
        version = "0.0.1.0";
        sha256 = "1gy2hv4ggxfwrxg9v3qyxpfrm1j5sixckc2j3h37ckzsh5v06mga";
-       revision = "1";
-       editedCabalFile = "04n4m74hlh0fpy7qbgmm0piblc5d54nnj7322wnw2yj50am7hbxc";
+       revision = "2";
+       editedCabalFile = "15bk9kmhmmw40vnh4axva4wx9l9v914f347pd8w71d6wpa0s3fjl";
        libraryHaskellDepends = [ base ];
        testHaskellDepends = [ base tasty tasty-hunit tasty-quickcheck ];
        description = "Zigzag encoding of integers into unsigned integers";
@@ -325585,8 +329569,8 @@ self: {
        pname = "zlib";
        version = "0.6.3.0";
        sha256 = "1nh4xsm3kgsg76jmkcphvy7hhslg9hx1s75mpsskhi2ksjd9ialy";
-       revision = "2";
-       editedCabalFile = "0c8pr02ypwv42288akn3njajvda20kp4vjkbbjnzcarmq0xxjv9q";
+       revision = "3";
+       editedCabalFile = "0hgh4rn9qinckiiwdnbp9rn0kpc06x18466i713971j03zf8wang";
        libraryHaskellDepends = [ base bytestring ];
        librarySystemDepends = [ zlib ];
        testHaskellDepends = [
@@ -325884,8 +329868,8 @@ self: {
      }:
      mkDerivation {
        pname = "zoovisitor";
-       version = "0.2.5.1";
-       sha256 = "0iwc1z52q91dbpd6x2wdz8q9xi5hf7w8b1xpd68km80gnirwbca5";
+       version = "0.2.6.1";
+       sha256 = "1lkmkv03k6icd85jbrv8rzwr1kl8v496m86kyc7sy773vlslkds1";
        libraryHaskellDepends = [ base bytestring exceptions Z-Data ];
        librarySystemDepends = [ zookeeper_mt ];
        testHaskellDepends = [ async base hspec uuid Z-Data ];
@@ -326056,8 +330040,6 @@ self: {
        ];
        description = "Creating and extracting arbitrary archives";
        license = lib.licenses.bsd3;
-       hydraPlatforms = lib.platforms.none;
-       broken = true;
      }) {};
 
   "zuramaru" = callPackage
@@ -326165,8 +330147,8 @@ self: {
      }:
      mkDerivation {
        pname = "zxcvbn-hs";
-       version = "0.3.2";
-       sha256 = "12jr76vxajhqc3rksgz5b26vdcdjyc4gbz02lxv66h0i94zansq8";
+       version = "0.3.5";
+       sha256 = "1vjdpzki02xdxva8a81qhdlzch79b8d87m52jc8kbxhniaf0fibk";
        isLibrary = true;
        isExecutable = true;
        libraryHaskellDepends = [
diff --git a/nixpkgs/pkgs/development/haskell-modules/patches/bloomfilter-fix-on-32bit.patch b/nixpkgs/pkgs/development/haskell-modules/patches/bloomfilter-fix-on-32bit.patch
deleted file mode 100644
index 7b32dcb4ab6f..000000000000
--- a/nixpkgs/pkgs/development/haskell-modules/patches/bloomfilter-fix-on-32bit.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From 35d972b3dc5056110d55315f2256d9c5046299c7 Mon Sep 17 00:00:00 2001
-From: Peter Simons <simons@cryp.to>
-Date: Tue, 1 Sep 2015 17:58:36 +0200
-Subject: [PATCH] Revert "Fix maximum sizing calculation."
-
-This reverts commit 44b01ba38b4fcdb5a85f44fa2f3af1f29cde8f40. The change breaks
-this package on 32 bit platforms. See https://github.com/bos/bloomfilter/issues/7
-for further details.
----
- Data/BloomFilter/Easy.hs | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/Data/BloomFilter/Easy.hs b/Data/BloomFilter/Easy.hs
-index 5143c6e..a349168 100644
---- a/Data/BloomFilter/Easy.hs
-+++ b/Data/BloomFilter/Easy.hs
-@@ -72,7 +72,7 @@ safeSuggestSizing capacity errRate
-             minimum [((-k) * cap / log (1 - (errRate ** (1 / k))), k)
-                      | k <- [1..100]]
-         roundedBits = nextPowerOfTwo (ceiling bits)
--    in if roundedBits <= 0 || roundedBits > 0xffffffff
-+    in if roundedBits <= 0
-        then Left  "capacity too large to represent"
-        else Right (roundedBits, truncate hashes)
- 
--- 
-2.5.1
-