diff --git a/maintainers/scripts/haskell/mark-broken.sh b/maintainers/scripts/haskell/mark-broken.sh index 9aa9433b8023a..31c0c6b15e7c7 100755 --- a/maintainers/scripts/haskell/mark-broken.sh +++ b/maintainers/scripts/haskell/mark-broken.sh @@ -35,19 +35,19 @@ trap "rm ${tmpfile}" 0 echo "Remember that you need to manually run 'maintainers/scripts/haskell/hydra-report.hs get-report' sometime before running this script." echo "Generating a list of broken builds and displaying for manual confirmation ..." -maintainers/scripts/haskell/hydra-report.hs mark-broken-list $mark_broken_list_flags | sort -i > "$tmpfile" +maintainers/scripts/haskell/hydra-report.hs mark-broken-list $mark_broken_list_flags | LC_ALL=C.UTF-8 sort --ignore-case > "$tmpfile" $EDITOR "$tmpfile" tail -n +3 "$broken_config" >> "$tmpfile" cat > "$broken_config" << EOF +# These packages don't compile. broken-packages: - # These packages don't compile. EOF # clear environment here to avoid things like allowing broken builds in -sort -iu "$tmpfile" >> "$broken_config" +LC_ALL=C.UTF-8 sort --ignore-case --unique "$tmpfile" >> "$broken_config" clear="env -u HOME -u NIXPKGS_CONFIG" $clear maintainers/scripts/haskell/regenerate-hackage-packages.sh evalline=$(maintainers/scripts/haskell/hydra-report.hs eval-info) diff --git a/maintainers/scripts/haskell/regenerate-transitive-broken-packages.sh b/maintainers/scripts/haskell/regenerate-transitive-broken-packages.sh index a317dba4d4e77..076602d6d6b92 100755 --- a/maintainers/scripts/haskell/regenerate-transitive-broken-packages.sh +++ b/maintainers/scripts/haskell/regenerate-transitive-broken-packages.sh @@ -20,6 +20,6 @@ cat > $tmpfile << EOF dont-distribute-packages: EOF -nix-instantiate --eval --option restrict-eval true -I . --strict --json maintainers/scripts/haskell/transitive-broken-packages.nix | jq -r . | LC_ALL=C.UTF-8 sort -i >> $tmpfile +nix-instantiate --eval --option restrict-eval true -I . --strict --json maintainers/scripts/haskell/transitive-broken-packages.nix | jq -r . | LC_ALL=C.UTF-8 sort --ignore-case >> $tmpfile mv $tmpfile $config_file diff --git a/maintainers/scripts/haskell/update-stackage.sh b/maintainers/scripts/haskell/update-stackage.sh index 2430edbdd4204..fc33b14b799f6 100755 --- a/maintainers/scripts/haskell/update-stackage.sh +++ b/maintainers/scripts/haskell/update-stackage.sh @@ -46,7 +46,7 @@ sed -r \ -e '/^with-compiler:/d' \ -e '/installed$/d' \ -e '/^$/d' \ - < "${tmpfile}" | sort --ignore-case >"${tmpfile_new}" + < "${tmpfile}" | LC_ALL=C.UTF-8 sort --ignore-case >"${tmpfile_new}" cat > $stackage_config << EOF # Stackage $version diff --git a/pkgs/data/misc/hackage/pin.json b/pkgs/data/misc/hackage/pin.json index 5355aca3d61b9..35448ec9dc739 100644 --- a/pkgs/data/misc/hackage/pin.json +++ b/pkgs/data/misc/hackage/pin.json @@ -1,6 +1,6 @@ { - "commit": "611ebba3fc94becabf6cc6fbe713e4bfad592924", - "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/611ebba3fc94becabf6cc6fbe713e4bfad592924.tar.gz", - "sha256": "1gn3asjrzr6v7lcdg1vyrpv7xv74ldwbz517cvfhh2mxzrawrkmc", - "msg": "Update from Hackage at 2025-04-21T04:38:52Z" + "commit": "0541f1fcdc25b23b03d1296ea03886da83d12375", + "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/0541f1fcdc25b23b03d1296ea03886da83d12375.tar.gz", + "sha256": "04ndjav4zirp0qzf8v3149m92ji092asiiyyrhkc8k4ca8hs8v8q", + "msg": "Update from Hackage at 2025-05-05T12:06:43Z" } diff --git a/pkgs/development/compilers/ghc/head.nix b/pkgs/development/compilers/ghc/head.nix index 483ff60a256de..eff1902bc83f2 100644 --- a/pkgs/development/compilers/ghc/head.nix +++ b/pkgs/development/compilers/ghc/head.nix @@ -1,5 +1,5 @@ import ./common-hadrian.nix { - version = "9.13.20250205"; - rev = "5622a14a7a036ab36e28963a4fba826a5ac798a7"; - sha256 = "1djhs67gz136xvky7wsv44ic60j7xk4fzabr5why2jh312r4vlr4"; + version = "9.13.20250428"; + rev = "22d11fa818fae2c95c494fc0fac1f8cb4c6e7cb6"; + sha256 = "0f3xc4k662yrlx8abqqrbgvwzr0ffnpiw8z4a47nnai4xk5k0wjl"; } diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 1c64baf583d97..fb5d3d8f494ba 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -18,6 +18,7 @@ in with haskellLib; +# To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. self: super: { # Hackage's accelerate is from 2020 and incomptible with our GHC. @@ -88,12 +89,10 @@ self: super: ( let # !!! Use cself/csuper inside for the actual overrides - cabalInstallOverlay = - cself: csuper: - lib.optionalAttrs (lib.versionOlder self.ghc.version "9.12") { - Cabal = cself.Cabal_3_14_2_0; - Cabal-syntax = cself.Cabal-syntax_3_14_2_0; - }; + cabalInstallOverlay = cself: csuper: { + Cabal = cself.Cabal_3_14_2_0; + Cabal-syntax = cself.Cabal-syntax_3_14_2_0; + }; in { cabal-install = @@ -204,6 +203,27 @@ self: super: disableCabalFlag "auto" super.ghc-lib-parser-ex ); + ghcide = appendPatches [ + # Support ghc == 9.10.2 + (pkgs.fetchpatch2 { + name = "ghcide-ghc-9.10.2.patch"; + url = "https://github.com/haskell/haskell-language-server/commit/fb17921128bd56ba74872cae9539767e63b9fd79.patch"; + sha256 = "161kcpfnv3q0n1fgsc0rx2v1rqf16g3pnjqabayym47yg2kp1qiv"; + stripLen = 1; + }) + # Support hie-bios >= 0.15 (unreleased to hackage) + (pkgs.fetchpatch2 { + name = "ghcide-hie-bios-0.15.patch"; + url = "https://github.com/haskell/haskell-language-server/commit/eb06c6f6ad7d7fcc29ff4b62f679f428897147f8.patch"; + sha256 = "0im3mf71chsgk787lz942c8zlmq00gfsd5rclprlsncg0zli1whq"; + includes = [ + "ghcide.cabal" + "**/Diagnostics.hs" + ]; + stripLen = 1; + }) + ] super.ghcide; + ########################################### ### END HASKELL-LANGUAGE-SERVER SECTION ### ########################################### @@ -411,9 +431,6 @@ self: super: # As well as deepseq < 1.5 (so it forbids GHC 9.8) hw-fingertree = doJailbreak super.hw-fingertree; - # hedgehog < 1.5 - hw-prim = doJailbreak super.hw-prim; - # Test suite is slow and sometimes comes up with counter examples. # Upstream is aware (https://github.com/isovector/nspace/issues/1), # if it's a bug, at least doesn't seem to be nixpkgs-specific. @@ -895,6 +912,14 @@ self: super: # https://github.com/joeyadams/haskell-stm-delay/issues/3 stm-delay = dontCheck super.stm-delay; + # Skip test that checks a race condition between stm and stm-queue + stm-queue = overrideCabal (drv: { + testFlags = drv.testFlags or [ ] ++ [ + "--skip" + "/Data.Queue/behaves faster than TQueue in its worst case/" + ]; + }) super.stm-queue; + # https://github.com/pixbi/duplo/issues/25 duplo = doJailbreak super.duplo; @@ -909,10 +934,6 @@ self: super: # "base" dependency. haddock-cheatsheet = doJailbreak super.haddock-cheatsheet; - # Too strict bounds on bytestring < 0.12 - # https://github.com/Gabriella439/Haskell-Pipes-HTTP-Library/issues/18 - pipes-http = doJailbreak super.pipes-http; - # no haddock since this is an umbrella package. cloud-haskell = dontHaddock super.cloud-haskell; @@ -1045,7 +1066,20 @@ self: super: } + "/${name}"; # 2025-04-09: jailbreak to allow bytestring >= 0.12, text >= 2.1 - jailbreak = true; + # Note: jailbreak ignores constraints under an if(flag) + postPatch = '' + check_sed() { + if ! test -s "$1"; then + echo "sed: pattern '$2' doesn't match anything" >&2 + exit 1 + fi + } + sed -i ${name}.cabal \ + -e 's/\(bytestring\) .*/\1/w c1' \ + -e 's/\(text\) .*/\1/w c2' + check_sed c1 'bytestring .*' + check_sed c2 'text .*' + ''; }) super.${name}; in lib.genAttrs [ "selda" "selda-sqlite" "selda-json" ] mkSeldaPackage @@ -1232,17 +1266,6 @@ self: super: # test suite requires git and does a bunch of git operations restless-git = dontCheck super.restless-git; - # Missing test files - # https://github.com/pbrisbin/jsonpatch/issues/10 - jsonpatch = overrideCabal (drv: { - testTargets = - lib.warnIf (lib.versionAtLeast drv.version "0.3.0.2") - "haskellPackages.jsonpatch: override can be dropped" - [ - "readme" # disabled: "spec" - ]; - }) super.jsonpatch; - # Work around https://github.com/haskell/c2hs/issues/192. c2hs = dontCheck super.c2hs; @@ -1294,8 +1317,8 @@ self: super: dhall-yaml = self.generateOptparseApplicativeCompletions [ "dhall-to-yaml-ng" "yaml-to-dhall" ] ( doJailbreak super.dhall-yaml ); # bytestring <0.12, text<2.1 + # 2025-02-14: see also https://github.com/dhall-lang/dhall-haskell/issues/2638 dhall-bash = doJailbreak super.dhall-bash; # bytestring <0.12, text <2.1 - # see also https://github.com/dhall-lang/dhall-haskell/issues/2638 # musl fixes # dontCheck: use of non-standard strptime "%s" which musl doesn't support; only used in test @@ -1470,6 +1493,16 @@ self: super: # https://github.com/haskell-servant/servant-ekg/issues/15 servant-ekg = doJailbreak super.servant-ekg; + # Fixes bug in an Ord instance that was causing the test suite to fail + # https://github.com/fpringle/servant-routes/issues/33 + servant-routes = appendPatches [ + (pkgs.fetchpatch { + name = "servant-routes-fix-ord.patch"; + url = "https://github.com/fpringle/servant-routes/commit/d1ef071f11c6a0810637beb8ea0b08f8e524b48a.patch"; + sha256 = "1c2xpi7sz0621fj9r1010587d1l39j6mm8l4vqmz9pldccmcb0f2"; + }) + ] super.servant-routes; + # it wants to build a statically linked binary by default hledger-flow = overrideCabal (drv: { postPatch = @@ -1555,37 +1588,6 @@ self: super: lsp = self.lsp_2_1_0_0; }; - ghcjs-dom-hello = appendPatches [ - (fetchpatch { - url = "https://github.com/ghcjs/ghcjs-dom-hello/commit/53991df6a4eba9f1e9633eb22f6a0486a79491c3.patch"; - sha256 = "sha256-HQeUgjvzYyY14+CDYiMahAMn7fBcy2d7p8/kqGq+rnI="; - }) - (fetchpatch { - url = "https://github.com/ghcjs/ghcjs-dom-hello/commit/d766d937121f7ea5c4c154bd533a1eae47f531c9.patch"; - sha256 = "sha256-QTkH+L+JMwGyuoqzHBnrokT7KzpHC4YiAWoeiaFBLUw="; - }) - (fetchpatch { - url = "https://github.com/ghcjs/ghcjs-dom-hello/commit/831464d995f4033c9aa84f9ed9fb37a268f34d4e.patch"; - sha256 = "sha256-hQMy+78geTuxd3kbdiyYqoAFrauu90HbpPi0EEKjMzM="; - }) - ] super.ghcjs-dom-hello; - - # Needs https://github.com/ghcjs/jsaddle-hello/pull/5 and hackage release - jsaddle-hello = appendPatches [ - (fetchpatch { - url = "https://github.com/ghcjs/jsaddle-hello/commit/c4de837675117b821c50a5079d20d84ec16ff26a.patch"; - sha256 = "sha256-NsM7QqNLt5V8i5bveYgMrawGnZVsIuAoJfBF75jBwV0="; - }) - (fetchpatch { - url = "https://github.com/ghcjs/jsaddle-hello/commit/5c437363833684ea951ec74a0d0fdf5b6fbaca85.patch"; - sha256 = "sha256-CUyZsts0FAQ3c8Z+zfvwbmlAJCMcidV80n8dA/SoRls="; - }) - (fetchpatch { - url = "https://github.com/ghcjs/jsaddle-hello/commit/e2da9e266fbfa8f7fcf3009ab6cfbf825a8bcf7a.patch"; - sha256 = "sha256-WL0CcnlMt6KI7MOZMg74fNN/I4gYSO3n+GiaXB2BOP0="; - }) - ] super.jsaddle-hello; - # Tests disabled and broken override needed because of missing lib chrome-test-utils: https://github.com/reflex-frp/reflex-dom/issues/392 reflex-dom-core = lib.pipe super.reflex-dom-core [ doDistribute @@ -1594,7 +1596,15 @@ self: super: ]; # Tests disabled because they assume to run in the whole jsaddle repo and not the hackage tarball of jsaddle-warp. - jsaddle-warp = dontCheck super.jsaddle-warp; + jsaddle-warp = + appendPatch + # https://github.com/ghcjs/jsaddle/pull/158 + (fetchpatch { + url = "https://github.com/ghcjs/jsaddle/commit/3a5648dd2e326c589170b58af711c72ab2a10a84.patch"; + relative = "jsaddle-warp"; + sha256 = "sha256-Eqm/oFRvQsAWtmd/Q1m25lOlcYB+j4bJ27t43CzZpHo="; + }) + (dontCheck super.jsaddle-warp); # https://github.com/ghcjs/jsaddle/issues/151 jsaddle-webkit2gtk = @@ -1719,14 +1729,11 @@ self: super: # So let's not go there and just disable the tests altogether. hspec-core = dontCheck super.hspec-core; - # - Deps are required during the build for testing and also during execution, - # so add them to build input and also wrap the resulting binary so they're in - # PATH. - # - Patch can be removed on next package set bump (for v0.2.11) - - # 2023-06-26: Test failure: https://hydra.nixos.org/build/225081865 update-nix-fetchgit = let + # Deps are required during the build for testing and also during execution, + # so add them to build input and also wrap the resulting binary so they're in + # PATH. deps = [ pkgs.git pkgs.nix @@ -1734,6 +1741,7 @@ self: super: ]; in lib.pipe super.update-nix-fetchgit [ + # 2023-06-26: Test failure: https://hydra.nixos.org/build/225081865 dontCheck (self.generateOptparseApplicativeCompletions [ "update-nix-fetchgit" ]) (overrideCabal (drv: { @@ -1891,10 +1899,6 @@ self: super: feed = dontCheck super.feed; spacecookie = overrideCabal (old: { - # Security relevant patch update - version = "1.0.0.3"; - sha256 = "1kzzbq22dk277jcx04w154y4vwa92zmnf40jcbgiihkz5rvisix0"; - buildTools = (old.buildTools or [ ]) ++ [ pkgs.buildPackages.installShellFiles ]; # let testsuite discover the resulting binary preCheck = @@ -2164,9 +2168,6 @@ self: super: sha256 = "0l15ccfdys100jf50s9rr4p0d0ikn53bkh7a9qlk9i0y0z5jc6x1"; }) super.basic-cpuid; - # 2025-02-11: Too strict bounds on bytestring - streamly-bytestring = doJailbreak super.streamly-bytestring; - # Allow building with language-docker >= 13 (!); waiting for 2.13 release. hadolint = doJailbreak ( appendPatches [ @@ -2524,9 +2525,6 @@ self: super: }; } super.hoogle; - # Too strict upper bound on HTTP - oeis = doJailbreak super.oeis; - inherit ( let @@ -2592,9 +2590,7 @@ self: super: # Overly strict bounds on tasty-quickcheck (test suite) (< 0.11) hashable = doJailbreak super.hashable; - # https://github.com/well-typed/cborg/issues/340 cborg = lib.pipe super.cborg [ - doJailbreak # Fix build on 32-bit: https://github.com/well-typed/cborg/pull/322 (appendPatches ( lib.optionals pkgs.stdenv.hostPlatform.is32bit [ @@ -2712,6 +2708,20 @@ self: super: tasty-autocollect = dontCheck super.tasty-autocollect; postgres-websockets = lib.pipe super.postgres-websockets [ + (appendPatches [ + (pkgs.fetchpatch { + # Needed for the patch below to apply. + name = "remove-protolude.patch"; + url = "https://github.com/diogob/postgres-websockets/commit/8027c0f6dc0c5fe6bab4e3e7730db8653b2c51cc.patch"; + hash = "sha256-gefVUR+tJLrmpwnc1hf4GjLbGVe1GwNmLn5YU7qW/HY="; + }) + (pkgs.fetchpatch { + # Can be removed with the next update. + name = "fix-connection-closing-when-no-write-mode-is-present.patch"; + url = "https://github.com/diogob/postgres-websockets/commit/577a2f0bf4750c682c2c3c63e37d90e0ec6f95eb.patch"; + hash = "sha256-7PCVbfNiJhWfmQrEjaVqbmCL5jffhofOto1RF2FVYJo="; + }) + ]) (addTestToolDepends [ pkgs.postgresql pkgs.postgresqlTestHook diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.10.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.10.x.nix index a60792df7e21b..dcfa3b8859c06 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-9.10.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-9.10.x.nix @@ -67,8 +67,9 @@ self: super: { # 2025-04-09: jailbreak to allow hedgehog >= 1.5, hspec-hedgehog >=0.2 extensions = doJailbreak (doDistribute self.extensions_0_1_0_2); fourmolu = doDistribute self.fourmolu_0_16_0_0; - ghc-lib = doDistribute self.ghc-lib_9_10_1_20250103; - ghc-lib-parser = doDistribute self.ghc-lib-parser_9_10_1_20250103; + # https://github.com/digital-asset/ghc-lib/issues/600 + ghc-lib = doDistribute (doJailbreak self.ghc-lib_9_10_2_20250503); + ghc-lib-parser = doDistribute (doJailbreak self.ghc-lib-parser_9_10_2_20250503); ghc-lib-parser-ex = doDistribute self.ghc-lib-parser-ex_9_10_0_0; htree = doDistribute self.htree_0_2_0_0; ormolu = doDistribute self.ormolu_0_7_7_0; diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.12.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.12.x.nix index cb32463d3ce64..19dcf50b5bf39 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-9.12.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-9.12.x.nix @@ -88,9 +88,9 @@ with haskellLib; extensions = doDistribute self.extensions_0_1_0_3; doctest = doDistribute self.doctest_0_24_0; ghc-syntax-highlighter = doDistribute self.ghc-syntax-highlighter_0_0_13_0; - ghc-lib = doDistribute self.ghc-lib_9_12_2_20250320; + ghc-lib = doDistribute self.ghc-lib_9_12_2_20250421; ghc-exactprint = doDistribute self.ghc-exactprint_1_12_0_0; - ghc-lib-parser = doDistribute self.ghc-lib-parser_9_12_2_20250320; + ghc-lib-parser = doDistribute self.ghc-lib-parser_9_12_2_20250421; ghc-lib-parser-ex = doDistribute self.ghc-lib-parser-ex_9_12_0_0; hlint = doDistribute self.hlint_3_10; fourmolu = doDistribute self.fourmolu_0_18_0_0; diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix index fc4fe254d1e88..ad2433fec1b77 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-9.8.x.nix @@ -71,7 +71,6 @@ self: super: { sha256 = "sha256-Mo65FfP1nh7QTY+oLia22hj4eV2v9hpXlYsrFKljA3E="; }) super.hevm; HaskellNet-SSL = doJailbreak super.HaskellNet-SSL; # bytestring >=0.9 && <0.12 - saltine = doJailbreak super.saltine; # bytestring && <0.12, deepseq <1.5, text > 1.2 && <1.3 || >=2.0 && <2.1 inflections = doJailbreak super.inflections; # text >=0.2 && <2.1 # diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml index 533f1e99c532b..7093d0f9787d5 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/broken.yaml @@ -1,5 +1,5 @@ +# These packages don't compile. broken-packages: - # These packages don't compile. - 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 @@ -14,22 +14,25 @@ broken-packages: - abstract-par-accelerate # failure in job https://hydra.nixos.org/build/296049870 at 2025-05-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 + - AC-EasyRaster-GTK # failure in job https://hydra.nixos.org/build/233226232 at 2023-09-02 + - AC-HalfInteger # failure in job https://hydra.nixos.org/build/233239266 at 2023-09-02 + - ac-machine # failure in job https://hydra.nixos.org/build/233253535 at 2023-09-02 + - AC-MiniTest # failure in job https://hydra.nixos.org/build/233216015 at 2023-09-02 + - AC-Terminal # failure in job https://hydra.nixos.org/build/233192747 at 2023-09-02 + - AC-VanillaArray # failure in job https://hydra.nixos.org/build/233216801 at 2023-09-02 - accelerate-fftw # failure in job https://hydra.nixos.org/build/296049868 at 2025-05-02 - accelerate-random # failure in job https://hydra.nixos.org/build/296049869 at 2025-05-02 - accelerate-utility # failure in job https://hydra.nixos.org/build/296049871 at 2025-05-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 - - 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 # failure in job https://hydra.nixos.org/build/233229388 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 @@ -51,17 +54,14 @@ broken-packages: - 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 + - Adaptive # failure in job https://hydra.nixos.org/build/233217421 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 - adblock2privoxy # failure in job https://hydra.nixos.org/build/295091236 at 2025-04-22 @@ -106,36 +106,36 @@ broken-packages: - 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 + - ag-pictgen # failure in job https://hydra.nixos.org/build/233252615 at 2023-09-02 - Agata # failure in job https://hydra.nixos.org/build/233221026 at 2023-09-02 - - agda2train # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/239247619 at 2023-11-10 - 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 + - agda2train # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/239247619 at 2023-11-10 - 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 - aip-version # failure in job https://hydra.nixos.org/build/267985101 at 2024-07-31 - - 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 + - air-th # failure in job https://hydra.nixos.org/build/233228206 at 2023-09-02 + - airbrake # failure in job https://hydra.nixos.org/build/233199319 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 - ajhc # failure in job https://hydra.nixos.org/build/233197894 at 2023-09-02 + - al # failure in job https://hydra.nixos.org/build/252733710 at 2024-03-16 - 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 - - al # failure in job https://hydra.nixos.org/build/252733710 at 2024-03-16 - alfred # failure in job https://hydra.nixos.org/build/233227316 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 # failure in job https://hydra.nixos.org/build/296049876 at 2025-05-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 + - AlgorithmW # failure in job https://hydra.nixos.org/build/233245254 at 2023-09-02 - align-affine # failure in job https://hydra.nixos.org/build/233230079 at 2023-09-02 - align-equal # failure in job https://hydra.nixos.org/build/295091309 at 2025-04-22 - align-text # failure in job https://hydra.nixos.org/build/233215779 at 2023-09-02 @@ -153,6 +153,7 @@ broken-packages: - 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 + - amazon-products # failure in job https://hydra.nixos.org/build/233193877 at 2023-09-02 - amazonka-contrib-rds-utils # failure building library in job https://hydra.nixos.org/build/237240275 at 2023-10-21 - amazonka-dynamodb # failure in job https://hydra.nixos.org/build/295091412 at 2025-04-22 - amazonka-dynamodb-streams # failure in job https://hydra.nixos.org/build/295091422 at 2025-04-22 @@ -160,7 +161,6 @@ broken-packages: - amazonka-mtl # failure in job https://hydra.nixos.org/build/295091544 at 2025-04-22 - amazonka-s3-encryption # failure in job https://hydra.nixos.org/build/295091601 at 2025-04-22 - amazonka-s3-streaming # failure in job https://hydra.nixos.org/build/295091587 at 2025-04-22 - - 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 - amqp-streamly # failure in job https://hydra.nixos.org/build/295091669 at 2025-04-22 @@ -170,14 +170,14 @@ broken-packages: - analyze # failure in job https://hydra.nixos.org/build/233251441 at 2023-09-02 - anansi # failure in job https://hydra.nixos.org/build/273451545 at 2024-10-01 - 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-activity # failure in job https://hydra.nixos.org/build/233203400 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 + - animascii # failure in job https://hydra.nixos.org/build/233211290 at 2023-09-02 - animate # failure in job https://hydra.nixos.org/build/233243661 at 2023-09-02 - anitomata-aseprite # failure in job https://hydra.nixos.org/build/255675501 at 2024-04-16 - anki-tools # failure in job https://hydra.nixos.org/build/233205129 at 2023-09-02 @@ -209,10 +209,11 @@ broken-packages: - api-rpc-factom # failure in job https://hydra.nixos.org/build/233198474 at 2023-09-02 - api-tools # failure in job https://hydra.nixos.org/build/252720262 at 2024-03-16 - apns-http2 # failure in job https://hydra.nixos.org/build/233248620 at 2023-09-02 + - app-lens # failure in job https://hydra.nixos.org/build/233193948 at 2023-09-02 + - app-settings # failure in job https://hydra.nixos.org/build/252726841 at 2024-03-16 - 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 - apple # failure in job https://hydra.nixos.org/build/269877626 at 2024-08-19 - - 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 @@ -222,9 +223,8 @@ broken-packages: - 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 - - app-settings # failure in job https://hydra.nixos.org/build/252726841 at 2024-03-16 - - 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 + - arbb-vm # failure in job https://hydra.nixos.org/build/233252062 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 @@ -241,26 +241,26 @@ broken-packages: - 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 + - arpack # failure in job https://hydra.nixos.org/build/233240937 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 + - arrayfire # failure in job https://hydra.nixos.org/build/233225004 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 + - arrowapply-utils # failure in job https://hydra.nixos.org/build/233192063 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 + - 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 - 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 @@ -272,17 +272,17 @@ broken-packages: - 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-core # failure in job https://hydra.nixos.org/build/252727584 at 2024-03-16 - assumpta # failure in job https://hydra.nixos.org/build/233245580 at 2023-09-02 - - astar-monad # failure in job https://hydra.nixos.org/build/252720647 at 2024-03-16 + - assumpta-core # failure in job https://hydra.nixos.org/build/252727584 at 2024-03-16 - ast-monad # failure in job https://hydra.nixos.org/build/233192822 at 2023-09-02 + - astar-monad # failure in job https://hydra.nixos.org/build/252720647 at 2024-03-16 - 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 + - asynchronous-exceptions # failure in job https://hydra.nixos.org/build/233218419 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 @@ -298,8 +298,8 @@ broken-packages: - attempt # failure in job https://hydra.nixos.org/build/233233073 at 2023-09-02 - attenuation # failure in job https://hydra.nixos.org/build/252721241 at 2024-03-16 - 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 + - AttoBencode # failure in job https://hydra.nixos.org/build/233198079 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-run # failure in job https://hydra.nixos.org/build/295091785 at 2025-04-22 @@ -309,24 +309,24 @@ broken-packages: - 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 + - aur-api # failure in job https://hydra.nixos.org/build/233237328 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 - - autoapply # failure in job https://hydra.nixos.org/build/295091805 at 2025-04-22 - auto # failure in job https://hydra.nixos.org/build/233211088 at 2023-09-02 - - automata # failure in job https://hydra.nixos.org/build/295091890 at 2025-04-22 + - auto-split # failure in job https://hydra.nixos.org/build/295091795 at 2025-04-22 + - autoapply # failure in job https://hydra.nixos.org/build/295091805 at 2025-04-22 - autom # failure in job https://hydra.nixos.org/build/234461198 at 2023-09-13 + - automata # failure in job https://hydra.nixos.org/build/295091890 at 2025-04-22 - 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 - autoproc # failure in job https://hydra.nixos.org/build/252730569 at 2024-03-16 - - auto-split # failure in job https://hydra.nixos.org/build/295091795 at 2025-04-22 - 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 + - avro-piper # failure in job https://hydra.nixos.org/build/233197510 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 @@ -352,6 +352,7 @@ broken-packages: - 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 + - b-tree # failure in job https://hydra.nixos.org/build/295091832 at 2025-04-22 - babl # failure in job https://hydra.nixos.org/build/233204665 at 2023-09-02 - babynf # failure in job https://hydra.nixos.org/build/295091858 at 2025-04-22 - backstop # failure in job https://hydra.nixos.org/build/233223957 at 2023-09-02 @@ -369,6 +370,11 @@ broken-packages: - 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 + - base-compat-migrate # failure in job https://hydra.nixos.org/build/233208966 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 - 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 @@ -376,12 +382,7 @@ broken-packages: - base64-bytes # failure in job https://hydra.nixos.org/build/295091866 at 2025-04-22 - 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 @@ -397,11 +398,11 @@ broken-packages: - 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-automigrate # failure in job https://hydra.nixos.org/build/282936134 at 2024-12-24 - beam # failure in job https://hydra.nixos.org/build/233213313 at 2023-09-02 + - beam-automigrate # failure in job https://hydra.nixos.org/build/282936134 at 2024-12-24 - 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 + - beamable # failure in job https://hydra.nixos.org/build/233211619 at 2023-09-02 - bearlibterminal # failure in job https://hydra.nixos.org/build/295091877 at 2025-04-22 - bech32 # failure in job https://hydra.nixos.org/build/233194823 at 2023-09-02 - beeminder-api # failure in job https://hydra.nixos.org/build/259970664 at 2024-05-19 @@ -426,8 +427,8 @@ broken-packages: - 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 + - bidispec-extras # failure in job https://hydra.nixos.org/build/233235808 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 @@ -440,8 +441,9 @@ broken-packages: - 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 + - bind-marshal # failure in job https://hydra.nixos.org/build/233196758 at 2023-09-02 - binder # failure in job https://hydra.nixos.org/build/295091930 at 2025-04-22 + - 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 @@ -471,33 +473,32 @@ broken-packages: - 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 - bindynamic # failure in job https://hydra.nixos.org/build/295091957 at 2025-04-22 - binembed # failure in job https://hydra.nixos.org/build/233219100 at 2023-09-02 - binrep-instances # failure in job https://hydra.nixos.org/build/295092045 at 2025-04-22 - 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 + - biocore # failure in job https://hydra.nixos.org/build/233229466 at 2023-09-02 + - biohazard # failure in job https://hydra.nixos.org/build/233249284 at 2023-09-02 - birds-of-paradise # failure in job https://hydra.nixos.org/build/295091958 at 2025-04-22 - 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 + - bit-stream # failure in job https://hydra.nixos.org/build/233230353 at 2023-09-02 - bitcoin-compact-filters # failure in job https://hydra.nixos.org/build/252726935 at 2024-03-16 - - 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 - bitcoin-scripting # failure in job https://hydra.nixos.org/build/252734577 at 2024-03-16 + - bitcoind-rpc # failure in job https://hydra.nixos.org/build/233204068 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 - bits-show # failure in job https://hydra.nixos.org/build/252714912 at 2024-03-16 - - bit-stream # failure in job https://hydra.nixos.org/build/233230353 at 2023-09-02 + - bitset # failure in job https://hydra.nixos.org/build/233218622 at 2023-09-02 + - bitspeak # failure in job https://hydra.nixos.org/build/233219582 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 @@ -543,12 +544,12 @@ broken-packages: - boots # failure in job https://hydra.nixos.org/build/252733526 at 2024-03-16 - boring-window-switcher # failure in job https://hydra.nixos.org/build/233252547 at 2023-09-02 - borsh # failure in job https://hydra.nixos.org/build/252718760 at 2024-03-16 - - botan-bindings # failure in job https://hydra.nixos.org/build/253695799 at 2024-03-31 - bot # failure in job https://hydra.nixos.org/build/233230089 at 2023-09-02 + - botan-bindings # failure in job https://hydra.nixos.org/build/253695799 at 2024-03-31 - 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 + - bounded-array # failure in job https://hydra.nixos.org/build/233200854 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 @@ -558,6 +559,7 @@ broken-packages: - 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-calendar # failure in job https://hydra.nixos.org/build/296518003 at 2025-05-14 - 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 @@ -568,8 +570,8 @@ broken-packages: - broadcast-chan-conduit # failure in job https://hydra.nixos.org/build/295092082 at 2025-04-22 - 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 + - broker-haskell # failure in job https://hydra.nixos.org/build/233200969 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 @@ -579,18 +581,17 @@ broken-packages: - 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 - - b-tree # failure in job https://hydra.nixos.org/build/295091832 at 2025-04-22 + - buffer # failure in job https://hydra.nixos.org/build/233216007 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 - bugsnag-haskell # failure in job https://hydra.nixos.org/build/295092087 at 2025-04-22 - bugzilla # failure in job https://hydra.nixos.org/build/233223784 at 2023-09-02 + - build-env # failure in job https://hydra.nixos.org/build/252734826 at 2024-03-16 - 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 - - build-env # failure in job https://hydra.nixos.org/build/252734826 at 2024-03-16 - builder # failure in job https://hydra.nixos.org/build/233207846 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 @@ -613,22 +614,23 @@ broken-packages: - 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 - bytestring-mmap # failure in job https://hydra.nixos.org/build/252733270 at 2024-03-16 - - 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 + - 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 + - bytestringreadp # failure in job https://hydra.nixos.org/build/233209066 at 2023-09-02 - bzlib-conduit-jappie # failure in job https://hydra.nixos.org/build/233210179 at 2023-09-02 + - c-dsl # failure in job https://hydra.nixos.org/build/233236075 at 2023-09-02 + - c-io # failure in job https://hydra.nixos.org/build/233198654 at 2023-09-02 + - c-mosquitto # failure in job https://hydra.nixos.org/build/233231310 at 2023-09-02 + - C-structs # failure in job https://hydra.nixos.org/build/233247498 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 + - ca-patterns # failure in job https://hydra.nixos.org/build/233246800 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-build-programs # failure in job https://hydra.nixos.org/build/257091363 at 2024-04-27 @@ -645,7 +647,6 @@ broken-packages: - 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-helper # failure in job https://hydra.nixos.org/build/252732588 at 2024-03-16 - 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 @@ -653,15 +654,12 @@ broken-packages: - 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-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 - cabal-scaffold # failure in job https://hydra.nixos.org/build/295453285 at 2025-05-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-sign # failure in job https://hydra.nixos.org/build/295092160 at 2025-04-22 - cabal-src # failure in job https://hydra.nixos.org/build/233229475 at 2023-09-02 @@ -669,11 +667,19 @@ broken-packages: - cabal-toolkit # failure in job https://hydra.nixos.org/build/233192328 at 2023-09-02 - cabal-uninstall # failure in job https://hydra.nixos.org/build/252739542 at 2024-03-16 - cabal-upload # failure in job https://hydra.nixos.org/build/233207791 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 + - cabalgraph # failure in job https://hydra.nixos.org/build/233241573 at 2023-09-02 + - cabalish # failure in job https://hydra.nixos.org/build/233193578 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 - 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 + - cached # failure in job https://hydra.nixos.org/build/233249807 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 - caerbannog # failure in job https://hydra.nixos.org/build/252729101 at 2024-03-16 @@ -681,11 +687,11 @@ broken-packages: - cairo-canvas # failure in job https://hydra.nixos.org/build/252719057 at 2024-03-16 - 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 + - cal-layout # failure in job https://hydra.nixos.org/build/233191194 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 - candid # failure in job https://hydra.nixos.org/build/295092213 at 2025-04-22 @@ -697,7 +703,6 @@ broken-packages: - 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 - caps # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237244140 at 2023-10-21 @@ -707,18 +712,18 @@ broken-packages: - 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 + - cas-hashable # failure in job https://hydra.nixos.org/build/233238789 at 2023-09-02 - casa-abbreviations-and-acronyms # failure in job https://hydra.nixos.org/build/233194663 at 2023-09-02 - casadi-bindings-core # failure in job https://hydra.nixos.org/build/294582281 at 2025-04-09 - 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-conduit # failure in job https://hydra.nixos.org/build/233220495 at 2023-09-02 - cassava-records # failure in job https://hydra.nixos.org/build/233259049 at 2023-09-02 - cassette # failure in job https://hydra.nixos.org/build/233201251 at 2023-09-02 - castle # failure in job https://hydra.nixos.org/build/233204027 at 2023-09-02 @@ -733,20 +738,19 @@ broken-packages: - 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 - - 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 # failure in job https://hydra.nixos.org/build/252735236 at 2024-03-16 - 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 # failure in job https://hydra.nixos.org/build/252735236 at 2024-03-16 - 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 + - 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 - 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 + - cef3-raw # failure in job https://hydra.nixos.org/build/233216467 at 2023-09-02 - cellrenderer-cairo # failure in job https://hydra.nixos.org/build/233245838 at 2023-09-02 - cerberus # failure in job https://hydra.nixos.org/build/295092440 at 2025-04-22 - cereal-data-dword # failure in job https://hydra.nixos.org/build/295092224 at 2025-04-22 @@ -754,12 +758,12 @@ broken-packages: - 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 - cereal-uuid # failure in job https://hydra.nixos.org/build/295092232 at 2025-04-22 - - 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 + - cfenv # failure in job https://hydra.nixos.org/build/233235017 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 + - cgen # failure in job https://hydra.nixos.org/build/233198570 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 - chakra # failure in job https://hydra.nixos.org/build/282936173 at 2024-12-24 @@ -767,19 +771,19 @@ broken-packages: - 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 - changeset # failure in job https://hydra.nixos.org/build/295092242 at 2025-04-22 - - character-cases # failure in job https://hydra.nixos.org/build/233197636 at 2023-09-02 - char-qq # failure in job https://hydra.nixos.org/build/295092253 at 2025-04-22 - - charter # failure in job https://hydra.nixos.org/build/233237264 at 2023-09-02 + - character-cases # failure in job https://hydra.nixos.org/build/233197636 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 + - charter # failure in job https://hydra.nixos.org/build/233237264 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 - chatty-utils # failure in job https://hydra.nixos.org/build/252710715 at 2024-03-16 - chatwork # failure in job https://hydra.nixos.org/build/233240489 at 2023-09-02 - check-cfg-ambiguity # failure in job https://hydra.nixos.org/build/233251852 at 2023-09-02 - - checked-exceptions # failure in job https://hydra.nixos.org/build/295092260 at 2025-04-22 - 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 + - checked-exceptions # failure in job https://hydra.nixos.org/build/295092260 at 2025-04-22 - 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 - chiasma # failure in job https://hydra.nixos.org/build/295122809 at 2025-04-22 @@ -788,10 +792,10 @@ broken-packages: - 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 + - chr-parse # failure in job https://hydra.nixos.org/build/233243933 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 - chronos-bench # failure in job https://hydra.nixos.org/build/295092276 at 2025-04-22 - - 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 @@ -800,7 +804,6 @@ broken-packages: - 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 - 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 @@ -808,8 +811,8 @@ broken-packages: - circle # failure in job https://hydra.nixos.org/build/252722965 at 2024-03-16 - 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 + - cjk # failure in job https://hydra.nixos.org/build/233258734 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 @@ -818,7 +821,6 @@ broken-packages: - 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-finite # failure in job https://hydra.nixos.org/build/295092297 at 2025-04-22 - - clashilator # failure in job https://hydra.nixos.org/build/273442437 at 2024-10-01 - clash-lib-hedgehog # failure in job https://hydra.nixos.org/build/295122808 at 2025-04-22 - clash-multisignal # failure in job https://hydra.nixos.org/build/273463331 at 2024-10-01 - clash-prelude-quickcheck # failure in job https://hydra.nixos.org/build/273453747 at 2024-10-01 @@ -826,6 +828,7 @@ broken-packages: - clash-systemverilog # failure in job https://hydra.nixos.org/build/273453889 at 2024-10-01 - clash-verilog # failure in job https://hydra.nixos.org/build/273466517 at 2024-10-01 - clash-vhdl # failure in job https://hydra.nixos.org/build/273460098 at 2024-10-01 + - clashilator # failure in job https://hydra.nixos.org/build/273442437 at 2024-10-01 - ClasshSS # failure in job https://hydra.nixos.org/build/255688076 at 2024-04-16 - ClassLaws # failure in job https://hydra.nixos.org/build/233243019 at 2023-09-02 - classy-effects-base # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237233636 at 2023-10-21 @@ -840,8 +843,8 @@ broken-packages: - clerk # failure in job https://hydra.nixos.org/build/252713517 at 2024-03-16 - 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 # failure in job https://hydra.nixos.org/build/233191087 at 2023-09-02 + - cli-builder # failure in job https://hydra.nixos.org/build/233209961 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 @@ -850,8 +853,8 @@ broken-packages: - 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 + - clocked # failure in job https://hydra.nixos.org/build/233241524 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 @@ -872,10 +875,13 @@ broken-packages: - 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 + - co-log-concurrent # failure in job https://hydra.nixos.org/build/295092333 at 2025-04-22 + - co-log-json # failure in job https://hydra.nixos.org/build/295092337 at 2025-04-22 + - co-log-polysemy-formatting # failure building executable 'example' in job https://hydra.nixos.org/build/237249360 at 2023-10-21 + - co-log-sys # failure in job https://hydra.nixos.org/build/233206587 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 @@ -887,36 +893,30 @@ broken-packages: - 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 - coercion-extras # failure in job https://hydra.nixos.org/build/295092384 at 2025-04-22 - - 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 + - coinbase-pro # failure in job https://hydra.nixos.org/build/233245350 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-concurrent # failure in job https://hydra.nixos.org/build/295092333 at 2025-04-22 - - co-log-json # failure in job https://hydra.nixos.org/build/295092337 at 2025-04-22 - - co-log-polysemy-formatting # failure building executable 'example' in job https://hydra.nixos.org/build/237249360 at 2023-10-21 - - co-log-sys # failure in job https://hydra.nixos.org/build/233206587 at 2023-09-02 + - collections-api # failure in job https://hydra.nixos.org/build/233220769 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 - colour-text # failure in job https://hydra.nixos.org/build/252712609 at 2024-03-16 - coltrane # failure in job https://hydra.nixos.org/build/233216437 at 2023-09-02 + - com # failure in job https://hydra.nixos.org/build/233213869 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 + - combinat-compat # failure in job https://hydra.nixos.org/build/233201337 at 2023-09-02 - combinator-interactive # failure in job https://hydra.nixos.org/build/233233138 at 2023-09-02 + - combinatorial-problems # failure in job https://hydra.nixos.org/build/233244505 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 + - commander # failure in job https://hydra.nixos.org/build/233239812 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 - comonad-extras # failure in job https://hydra.nixos.org/build/252715520 at 2024-03-16 - - 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-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-mutable-vector # failure in job https://hydra.nixos.org/build/245539335 at 2024-01-02 @@ -924,6 +924,8 @@ broken-packages: - compact-socket # failure in job https://hydra.nixos.org/build/245539349 at 2024-01-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 + - 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 - compaREST # failure in job https://hydra.nixos.org/build/295122812 at 2025-04-22 - 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 @@ -953,9 +955,9 @@ broken-packages: - 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-state # failure in job https://hydra.nixos.org/build/233248441 at 2023-09-02 + - Concurrential # failure in job https://hydra.nixos.org/build/233221502 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 @@ -969,18 +971,18 @@ broken-packages: - 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 + - conf # failure in job https://hydra.nixos.org/build/233213738 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 - conferer-warp # failure in job https://hydra.nixos.org/build/295092470 at 2025-04-22 - - conf # failure in job https://hydra.nixos.org/build/233213738 at 2023-09-02 + - config-parser # failure in job https://hydra.nixos.org/build/233206136 at 2023-09-02 + - config-value-getopt # failure in job https://hydra.nixos.org/build/233204566 at 2023-09-02 - ConfigFile # failure in job https://hydra.nixos.org/build/294581227 at 2025-04-09 - 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 - - 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 - conftrack # failure in job https://hydra.nixos.org/build/269672273 at 2024-08-19 - congruence-relation # failure in job https://hydra.nixos.org/build/233222125 at 2023-09-02 @@ -989,37 +991,37 @@ broken-packages: - conlogger # failure in job https://hydra.nixos.org/build/233193354 at 2023-09-02 - connection # failure in job https://hydra.nixos.org/build/252717790 at 2024-03-16 - 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 + - connections # failure in job https://hydra.nixos.org/build/233193445 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 - console-style # failure in job https://hydra.nixos.org/build/252730000 at 2024-03-16 - - 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 + - constable # failure in job https://hydra.nixos.org/build/233256456 at 2023-09-02 + - constr-eq # failure in job https://hydra.nixos.org/build/233231863 at 2023-09-02 - constrained # failure in job https://hydra.nixos.org/build/233248444 at 2023-09-02 + - constrained-dynamic # failure in job https://hydra.nixos.org/build/233192949 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 - 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-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 + - ContextAlgebra # failure in job https://hydra.nixos.org/build/233197054 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 + - continued-fractions # failure in job https://hydra.nixos.org/build/233258785 at 2023-09-02 + - contra-tracers # failure in job https://hydra.nixos.org/build/233197959 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-block # failure in job https://hydra.nixos.org/build/295092490 at 2025-04-22 - 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 @@ -1033,23 +1035,24 @@ broken-packages: - cooklang-hs # failure in job https://hydra.nixos.org/build/295092511 at 2025-04-22 - copilot-bluespec # failure in job https://hydra.nixos.org/build/253685418 at 2024-03-31 - copilot-frp-sketch # copilot >=3.7 && <3.8, + - copilot-verifier # failure in job https://hydra.nixos.org/build/297024747 at 2025-05-14 - copr # failure in job https://hydra.nixos.org/build/233252310 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 # failure in job https://hydra.nixos.org/build/233253971 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 - core-effect-effectful # failure in job https://hydra.nixos.org/build/252723824 at 2024-03-16 - - 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 + - corebot-bliki # failure in job https://hydra.nixos.org/build/233241143 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 - corenlp-parser # failure in job https://hydra.nixos.org/build/295092562 at 2025-04-22 - corenlp-types # failure in job https://hydra.nixos.org/build/243808366 at 2024-01-01 - - 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 + - CouchDB # failure in job https://hydra.nixos.org/build/233253163 at 2023-09-02 + - couchdb-conduit # failure in job https://hydra.nixos.org/build/233227244 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 @@ -1064,6 +1067,7 @@ broken-packages: - cpuperf # failure in job https://hydra.nixos.org/build/233252964 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 + - cr # failure in job https://hydra.nixos.org/build/233235318 at 2023-09-02 - crack # failure in job https://hydra.nixos.org/build/233229111 at 2023-09-02 - cradle # failure in job https://hydra.nixos.org/build/259974954 at 2024-05-19 - Craft3e # failure in job https://hydra.nixos.org/build/233255152 at 2023-09-02 @@ -1072,10 +1076,9 @@ broken-packages: - crc16 # failure in job https://hydra.nixos.org/build/233253624 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 - - credentials # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237240683 at 2023-10-21 - credential-store # failure in job https://hydra.nixos.org/build/233230143 at 2023-09-02 + - credentials # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237240683 at 2023-10-21 - 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-plus # failure in job https://hydra.nixos.org/build/233194095 at 2023-09-02 @@ -1087,31 +1090,30 @@ broken-packages: - 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 # failure in job https://hydra.nixos.org/build/252738609 at 2024-03-16 - 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 - crypto-enigma # failure in job https://hydra.nixos.org/build/252722224 at 2024-03-16 - - Crypto # failure in job https://hydra.nixos.org/build/252738609 at 2024-03-16 - - 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-box # failure in job https://hydra.nixos.org/build/295092591 at 2025-04-22 - 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-random # failure in job https://hydra.nixos.org/build/252715261 at 2024-03-16 + - 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 + - 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 + - crypton-box # failure in job https://hydra.nixos.org/build/295092591 at 2025-04-22 + - 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 - csg # failure in job https://hydra.nixos.org/build/252719752 at 2024-03-16 - 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-easings # failure in job https://hydra.nixos.org/build/233203513 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 @@ -1125,8 +1127,8 @@ broken-packages: - curl-runnings # failure in job https://hydra.nixos.org/build/233258680 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 + - CurryDB # failure in job https://hydra.nixos.org/build/233238995 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 @@ -1134,6 +1136,7 @@ broken-packages: - 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 + - d-bus # failure in job https://hydra.nixos.org/build/233228668 at 2023-09-02 - d10 # failure in job https://hydra.nixos.org/build/252720183 at 2024-03-16 - d3js # failure in job https://hydra.nixos.org/build/233251474 at 2023-09-02 - daemonize-doublefork # failure in job https://hydra.nixos.org/build/252714429 at 2024-03-16 @@ -1144,11 +1147,11 @@ broken-packages: - 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 - dap # failure in job https://hydra.nixos.org/build/237239767 at 2023-10-21 - - 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 + - darcs2dot # failure in job https://hydra.nixos.org/build/233209236 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 @@ -1158,19 +1161,15 @@ broken-packages: - 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 - - datacrypto # failure in job https://hydra.nixos.org/build/295092721 at 2025-04-22 - 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-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 @@ -1178,38 +1177,42 @@ broken-packages: - 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-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-r-tree # failure in job https://hydra.nixos.org/build/233232284 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 + - 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 + - datacrypto # failure in job https://hydra.nixos.org/build/295092721 at 2025-04-22 + - datadog # failure in job https://hydra.nixos.org/build/233191124 at 2023-09-02 + - DataIndex # failure in job https://hydra.nixos.org/build/233254506 at 2023-09-02 + - datalog # failure in job https://hydra.nixos.org/build/233242707 at 2023-09-02 + - datapacker # failure in job https://hydra.nixos.org/build/233206524 at 2023-09-02 + - datarobot # failure in job https://hydra.nixos.org/build/233206913 at 2023-09-02 + - DataTreeView # failure in job https://hydra.nixos.org/build/233213871 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 @@ -1223,32 +1226,31 @@ broken-packages: - 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-core # failure in job https://hydra.nixos.org/build/233228888 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 + - dclabel-eci11 # failure in job https://hydra.nixos.org/build/233210572 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 + - Deadpan-DDP # failure in job https://hydra.nixos.org/build/233221990 at 2023-09-02 - dear-imgui # failure in job https://hydra.nixos.org/build/295092776 at 2025-04-22 - debruijn # failure in job https://hydra.nixos.org/build/283207128 at 2024-12-31 - - 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 + - debugger-hs # failure in job https://hydra.nixos.org/build/233206302 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 - - deeplearning-hs # failure in job https://hydra.nixos.org/build/296049880 at 2025-05-02 - deepl # failure in job https://hydra.nixos.org/build/233232956 at 2023-09-02 + - deeplearning-hs # failure in job https://hydra.nixos.org/build/296049880 at 2025-05-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 @@ -1265,21 +1267,21 @@ broken-packages: - 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 + - dep-t # failure in job https://hydra.nixos.org/build/233217847 at 2023-09-02 - dependency # failure in job https://hydra.nixos.org/build/252727325 at 2024-03-16 - dependent-hashmap # failure in job https://hydra.nixos.org/build/233202881 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-enumerable # failure in job https://hydra.nixos.org/build/233254290 at 2023-09-02 - derive-gadt # failure in job https://hydra.nixos.org/build/233220430 at 2023-09-02 - derive-has-field # failure in job https://hydra.nixos.org/build/252735604 at 2024-03-16 - - 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-storable-plugin # failure in job https://hydra.nixos.org/build/295092800 at 2025-04-22 - derive-trie # failure in job https://hydra.nixos.org/build/233207961 at 2023-09-02 + - deriveJsonNoPrefix # failure in job https://hydra.nixos.org/build/233242453 at 2023-09-02 - deriving-openapi3 # failure in job https://hydra.nixos.org/build/252718489 at 2024-03-16 - derp-lib # failure in job https://hydra.nixos.org/build/233199053 at 2023-09-02 - derulo # failure in job https://hydra.nixos.org/build/252725148 at 2024-03-16 @@ -1324,11 +1326,12 @@ broken-packages: - 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 + - diff-gestalt # failure in job https://hydra.nixos.org/build/233195164 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 + - digest-pure # failure in job https://hydra.nixos.org/build/233194135 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 @@ -1336,28 +1339,27 @@ broken-packages: - digestive-functors-lucid # failure in job https://hydra.nixos.org/build/233209397 at 2023-09-02 - digestive-functors-scotty # failure in job https://hydra.nixos.org/build/252719811 at 2024-03-16 - 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 + - digit # failure in job https://hydra.nixos.org/build/237241758 at 2023-10-21 - 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 - - digit # failure in job https://hydra.nixos.org/build/237241758 at 2023-10-21 - 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 - dino # failure in job https://hydra.nixos.org/build/252725815 at 2024-03-16 - 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-contents # failure in job https://hydra.nixos.org/build/295092900 at 2025-04-22 - direct-plugins # failure in job https://hydra.nixos.org/build/233211547 at 2023-09-02 + - directed-cubical # failure in job https://hydra.nixos.org/build/233215175 at 2023-09-02 + - directory-contents # failure in job https://hydra.nixos.org/build/295092900 at 2025-04-22 - direm # failure in job https://hydra.nixos.org/build/233211496 at 2023-09-02 - dirstream # failure in job https://hydra.nixos.org/build/273442606 at 2024-10-01 - disco # failure in job https://hydra.nixos.org/build/233212298 at 2023-09-02 - discord-haskell # failure in job https://hydra.nixos.org/build/295092870 at 2025-04-22 - - discordian-calendar # failure in job https://hydra.nixos.org/build/233218124 at 2023-09-02 - discord-register # failure in job https://hydra.nixos.org/build/295092898 at 2025-04-22 - discord-types # failure in job https://hydra.nixos.org/build/233251778 at 2023-09-02 + - discordian-calendar # failure in job https://hydra.nixos.org/build/233218124 at 2023-09-02 - discount # failure in job https://hydra.nixos.org/build/256329404 at 2024-04-16 - 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 @@ -1367,8 +1369,9 @@ broken-packages: - disk-bytes # failure in job https://hydra.nixos.org/build/252722796 at 2024-03-16 - diskhash # failure in job https://hydra.nixos.org/build/233230362 at 2023-09-02 - disposable # timeout - - 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 + - dist-upload # failure in job https://hydra.nixos.org/build/233225018 at 2023-09-02 + - distance # failure in job https://hydra.nixos.org/build/233255082 at 2023-09-02 - distributed-fork-aws-lambda # failure in job https://hydra.nixos.org/build/295093001 at 2025-04-22 - distributed-process-fsm # failure in job https://hydra.nixos.org/build/295092907 at 2025-04-22 - distributed-process-lifted # failure in job https://hydra.nixos.org/build/295092891 at 2025-04-22 @@ -1378,7 +1381,6 @@ broken-packages: - distributed-process-simplelocalnet # failure in job https://hydra.nixos.org/build/295092899 at 2025-04-22 - distributed-process-task # failure in job https://hydra.nixos.org/build/295092905 at 2025-04-22 - 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 @@ -1388,13 +1390,15 @@ broken-packages: - dnscache # failure in job https://hydra.nixos.org/build/233227512 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 + - do-notation-dsl # failure in job https://hydra.nixos.org/build/233252824 at 2023-09-02 + - do-spaces # failure in job https://hydra.nixos.org/build/233244331 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 # failure in job https://hydra.nixos.org/build/233195921 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 - 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 @@ -1403,17 +1407,15 @@ broken-packages: - 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 - doi # failure in job https://hydra.nixos.org/build/295092999 at 2025-04-22 - - domaindriven-core # failure in job https://hydra.nixos.org/build/233234739 at 2023-09-02 - dom-events # failure in job https://hydra.nixos.org/build/233231199 at 2023-09-02 - - dominion # failure in job https://hydra.nixos.org/build/252714022 at 2024-03-16 - 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 + - domaindriven-core # failure in job https://hydra.nixos.org/build/233234739 at 2023-09-02 + - dominion # failure in job https://hydra.nixos.org/build/252714022 at 2024-03-16 + - domplate # failure in job https://hydra.nixos.org/build/233241400 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 + - dotfs # failure in job https://hydra.nixos.org/build/233200762 at 2023-09-02 - double-x-encoding # failure in job https://hydra.nixos.org/build/253694746 at 2024-03-31 - 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 @@ -1426,19 +1428,19 @@ broken-packages: - 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 - dr-cabal # failure in job https://hydra.nixos.org/build/233253361 at 2023-09-02 + - dragen # failure in job https://hydra.nixos.org/build/233254270 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 # failure in job https://hydra.nixos.org/build/233220463 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 - driving-classes-plugin # failure in job https://hydra.nixos.org/build/252724273 at 2024-03-16 - 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 + - dsc # failure in job https://hydra.nixos.org/build/233243851 at 2023-09-02 - dsmc # failure in job https://hydra.nixos.org/build/252711940 at 2024-03-16 - 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 @@ -1462,10 +1464,11 @@ broken-packages: - 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 + - dwarfadt # failure in job https://hydra.nixos.org/build/233254895 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 + - dyna-processing # failure in job https://hydra.nixos.org/build/234451875 at 2023-09-13 - dynamic-graph # failure in job https://hydra.nixos.org/build/252718318 at 2024-03-16 - 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 @@ -1473,7 +1476,6 @@ broken-packages: - dynamic-pipeline # failure in job https://hydra.nixos.org/build/295092993 at 2025-04-22 - DynamicTimeWarp # failure in job https://hydra.nixos.org/build/233238244 at 2023-09-02 - dynamodb-simple # failure building library in job https://hydra.nixos.org/build/237238415 at 2023-10-21 - - 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 @@ -1496,8 +1498,8 @@ broken-packages: - ebird-client # failure in job https://hydra.nixos.org/build/295093002 at 2025-04-22 - ebnf-bff # failure in job https://hydra.nixos.org/build/233221694 at 2023-09-02 - ec2-unikernel # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237245061 at 2023-10-21 - - eccrypto-ed25519-bindings # failure in job https://hydra.nixos.org/build/233217399 at 2023-09-02 - eccrypto # failure in job https://hydra.nixos.org/build/295093032 at 2025-04-22 + - 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 # failure in job https://hydra.nixos.org/build/241421274 at 2023-11-19 - ecta-plugin # failure in job https://hydra.nixos.org/build/233224764 at 2023-09-02 @@ -1511,11 +1513,11 @@ broken-packages: - 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 - edits # failure in job https://hydra.nixos.org/build/295093075 at 2025-04-22 + - effect-handlers # failure in job https://hydra.nixos.org/build/233234988 at 2023-09-02 + - effect-stack # failure in job https://hydra.nixos.org/build/233212358 at 2023-09-02 - effectful-st # failure in job https://hydra.nixos.org/build/233248591 at 2023-09-02 - effectful-zoo # failure in job https://hydra.nixos.org/build/283208805 at 2024-12-31 - - 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 - eflint # failure in job https://hydra.nixos.org/build/295122827 at 2025-04-22 @@ -1527,8 +1529,8 @@ broken-packages: - 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 - either-both # failure in job https://hydra.nixos.org/build/252717090 at 2024-03-16 - - 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 + - EitherT # failure in job https://hydra.nixos.org/build/233217056 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-cloudwatch # failure in job https://hydra.nixos.org/build/237236508 at 2023-10-21 @@ -1539,12 +1541,11 @@ broken-packages: - ekg-rrd # failure in job https://hydra.nixos.org/build/233214672 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 # Elm is no longer actively maintained on Hackage: https://github.com/NixOS/nixpkgs/pull/9233. - elm-build-lib # Elm is no longer actively maintained on Hackage: https://github.com/NixOS/nixpkgs/pull/9233. - elm-compiler # Elm is no longer actively maintained on Hackage: https://github.com/NixOS/nixpkgs/pull/9233. - - Elm # Elm is no longer actively maintained on Hackage: https://github.com/NixOS/nixpkgs/pull/9233. - elm-export-persistent # failure in job https://hydra.nixos.org/build/233248910 at 2023-09-02 - elm-get # Elm is no longer actively maintained on Hackage: https://github.com/NixOS/nixpkgs/pull/9233. - - elminator # failure in job https://hydra.nixos.org/build/252729949 at 2024-03-16 - elm-make # Elm is no longer actively maintained on Hackage: https://github.com/NixOS/nixpkgs/pull/9233. - elm-package # Elm is no longer actively maintained on Hackage: https://github.com/NixOS/nixpkgs/pull/9233. - elm-reactor # Elm is no longer actively maintained on Hackage: https://github.com/NixOS/nixpkgs/pull/9233. @@ -1552,12 +1553,13 @@ broken-packages: - elm-server # Elm is no longer actively maintained on Hackage: https://github.com/NixOS/nixpkgs/pull/9233. - elm-websocket # failure in job https://hydra.nixos.org/build/233192201 at 2023-09-02 - elm-yesod # Elm is no longer actively maintained on Hackage: https://github.com/NixOS/nixpkgs/pull/9233. + - elminator # failure in job https://hydra.nixos.org/build/252729949 at 2024-03-16 - 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 # deprecated, depends on outdated dependencies - 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 + - emailaddress # failure in job https://hydra.nixos.org/build/233202700 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 @@ -1572,26 +1574,27 @@ broken-packages: - 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 + - 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 - 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 + - enummapset-th # failure in job https://hydra.nixos.org/build/233225322 at 2023-09-02 + - env-extra # failure in job https://hydra.nixos.org/build/296519026 at 2025-05-14 - env-parser # failure in job https://hydra.nixos.org/build/233237933 at 2023-09-02 + - envelope # failure in job https://hydra.nixos.org/build/233199309 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 + - epic # failure in job https://hydra.nixos.org/build/233204921 at 2023-09-02 - epoll # failure in job https://hydra.nixos.org/build/233247564 at 2023-09-02 - eprocess # failure in job https://hydra.nixos.org/build/252722826 at 2024-03-16 - - epubname # failure in job https://hydra.nixos.org/build/233198937 at 2023-09-02 - epub-tools # failure in job https://hydra.nixos.org/build/252717848 at 2024-03-16 + - 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 @@ -1615,46 +1618,46 @@ broken-packages: - espial # failure in job https://hydra.nixos.org/build/295093136 at 2025-04-22 - 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 + - ess # failure in job https://hydra.nixos.org/build/233218789 at 2023-09-02 - essence-of-live-coding-gloss-example # failure in job https://hydra.nixos.org/build/295093130 at 2025-04-22 - essence-of-live-coding-pulse-example # failure in job https://hydra.nixos.org/build/295093155 at 2025-04-22 - - ess # failure in job https://hydra.nixos.org/build/233218789 at 2023-09-02 - estimators # failure in job https://hydra.nixos.org/build/295093128 at 2025-04-22 - 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 + - etcd # failure in job https://hydra.nixos.org/build/233196041 at 2023-09-02 - ethereum-analyzer-deps # failure in job https://hydra.nixos.org/build/252732846 at 2024-03-16 - 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 - evdev-streamly # failure in job https://hydra.nixos.org/build/295093212 at 2025-04-22 + - eve # failure in job https://hydra.nixos.org/build/252715362 at 2024-03-16 - 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 - - eve # failure in job https://hydra.nixos.org/build/252715362 at 2024-03-16 - - 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 + - event-driven # failure in job https://hydra.nixos.org/build/233233946 at 2023-09-02 - eventloop # failure in job https://hydra.nixos.org/build/295093203 at 2025-04-22 - 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 - - eventuo11y-dsl # failure in job https://hydra.nixos.org/build/252711345 at 2024-03-16 - eventuo11y # failure in job https://hydra.nixos.org/build/252711747 at 2024-03-16 + - eventuo11y-dsl # failure in job https://hydra.nixos.org/build/252711345 at 2024-03-16 - evoke # failure in job https://hydra.nixos.org/build/233213948 at 2023-09-02 - EVP # failure in job https://hydra.nixos.org/build/237241792 at 2023-10-21 - 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-monads-tf # failure in job https://hydra.nixos.org/build/252739085 at 2024-03-16 - exception-via # failure in job https://hydra.nixos.org/build/233197670 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 - 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 + - exh # failure in job https://hydra.nixos.org/build/233253883 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 @@ -1662,8 +1665,8 @@ broken-packages: - 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 - - experimenter # failure in job https://hydra.nixos.org/build/252726011 at 2024-03-16 - exp-extended # failure in job https://hydra.nixos.org/build/233236139 at 2023-09-02 + - experimenter # failure in job https://hydra.nixos.org/build/252726011 at 2024-03-16 - 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 @@ -1682,11 +1685,13 @@ broken-packages: - extism # failure in job https://hydra.nixos.org/build/233242807 at 2023-09-02 - extism-manifest # failure in job https://hydra.nixos.org/build/295093191 at 2025-04-22 - extism-pdk # failure in job https://hydra.nixos.org/build/237239071 at 2023-10-21 - - 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 + - extractelf # failure in job https://hydra.nixos.org/build/233240806 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 + - ez3 # failure in job https://hydra.nixos.org/build/233233362 at 2023-09-02 + - f-algebra-gen # failure in job https://hydra.nixos.org/build/233194303 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 - 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 @@ -1695,34 +1700,34 @@ broken-packages: - fad # failure in job https://hydra.nixos.org/build/252716941 at 2024-03-16 - failable # failure in job https://hydra.nixos.org/build/252731566 at 2024-03-16 - 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 - failure # failure in job https://hydra.nixos.org/build/252738855 at 2024-03-16 + - 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 - falling-turnip # failure in job https://hydra.nixos.org/build/252737877 at 2024-03-16 - - 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 - fast-digits # failure in job https://hydra.nixos.org/build/295093219 at 2025-04-22 - fast-downward # failure in job https://hydra.nixos.org/build/252721794 at 2024-03-16 + - fast-nats # failure in job https://hydra.nixos.org/build/233238596 at 2023-09-02 + - fast-tagsoup-utf8-only # failure in job https://hydra.nixos.org/build/233202322 at 2023-09-02 + - fastbayes # failure in job https://hydra.nixos.org/build/233223718 at 2023-09-02 - fastedit # failure in job https://hydra.nixos.org/build/233213468 at 2023-09-02 - faster-megaparsec # failure in job https://hydra.nixos.org/build/252713238 at 2024-03-16 - fastly # failure in job https://hydra.nixos.org/build/233213136 at 2023-09-02 - fastmemo # failure in job https://hydra.nixos.org/build/252739389 at 2024-03-16 - - 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 - fastsum # failure in job https://hydra.nixos.org/build/252716407 at 2024-03-16 - - 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 - fb # failure in job https://hydra.nixos.org/build/295093236 at 2025-04-22 - - 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 + - fb-util # failure in job https://hydra.nixos.org/build/296519228 at 2025-05-14 + - fbmessenger-api # failure in job https://hydra.nixos.org/build/233247641 at 2023-09-02 - fca # failure in job https://hydra.nixos.org/build/233205050 at 2023-09-02 + - fcache # failure in job https://hydra.nixos.org/build/233258505 at 2023-09-02 - fcf-composite # failure in job https://hydra.nixos.org/build/233252957 at 2023-09-02 - fcf-containers # failure in job https://hydra.nixos.org/build/252729702 at 2024-03-16 - fcf-graphs # failure in job https://hydra.nixos.org/build/233254885 at 2023-09-02 @@ -1735,10 +1740,10 @@ broken-packages: - 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 - fedora-repoquery # failure in job https://hydra.nixos.org/build/269676305 at 2024-08-19 - - feedback # failure in job https://hydra.nixos.org/build/295093247 at 2025-04-22 - 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 + - feedback # failure in job https://hydra.nixos.org/build/295093247 at 2025-04-22 - fei-cocoapi # failure in job https://hydra.nixos.org/build/252726625 at 2024-03-16 - 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 @@ -1752,26 +1757,26 @@ broken-packages: - 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-and-cases # failure in job https://hydra.nixos.org/build/267971589 at 2024-07-31 - fields # failure in job https://hydra.nixos.org/build/233197886 at 2023-09-02 + - fields-and-cases # failure in job https://hydra.nixos.org/build/267971589 at 2024-07-31 - 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 - 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-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 + - file-templates # failure in job https://hydra.nixos.org/build/233255339 at 2023-09-02 + - filediff # failure in job https://hydra.nixos.org/build/233256056 at 2023-09-02 - FileManip # failure in job https://hydra.nixos.org/build/233237292 at 2023-09-02 + - FileManipCompat # failure in job https://hydra.nixos.org/build/233254887 at 2023-09-02 - fileneglect # failure in job https://hydra.nixos.org/build/233209920 at 2023-09-02 - filepather # failure in job https://hydra.nixos.org/build/237242258 at 2023-10-21 - FilePather # failure in job https://hydra.nixos.org/build/252715750 at 2024-03-16 - Files # failure in job https://hydra.nixos.org/build/233207543 at 2023-09-02 + - FileSystem # failure in job https://hydra.nixos.org/build/233230289 at 2023-09-02 - filesystem-abstractions # failure in job https://hydra.nixos.org/build/295093277 at 2025-04-22 - 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 @@ -1780,10 +1785,10 @@ broken-packages: - 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 - finitary-optics # constraint issues https://hydra.nixos.org/build/295428386 - - FiniteCategoriesGraphViz # failure in job https://hydra.nixos.org/build/295090973 at 2025-04-22 - finite # failure in job https://hydra.nixos.org/build/233226313 at 2023-09-02 - finite-field # failure in job https://hydra.nixos.org/build/295093309 at 2025-04-22 - finite-fields # failure in job https://hydra.nixos.org/build/233191530 at 2023-09-02 + - FiniteCategoriesGraphViz # failure in job https://hydra.nixos.org/build/295090973 at 2025-04-22 - finito # failure in job https://hydra.nixos.org/build/252721862 at 2024-03-16 - firefly-example # failure in job https://hydra.nixos.org/build/233259350 at 2023-09-02 - firestore # failure in job https://hydra.nixos.org/build/295093356 at 2025-04-22 @@ -1793,38 +1798,38 @@ broken-packages: - 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 + - 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 - 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-width # failure in job https://hydra.nixos.org/build/233236195 at 2023-09-02 + - fixedprec # failure in job https://hydra.nixos.org/build/233231519 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 + - fizzbuzz-as-a-service # failure in job https://hydra.nixos.org/build/233235796 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 - - flatbuffers # failure in job https://hydra.nixos.org/build/252718245 at 2024-03-16 - - flatbuffers-parser # failure in job https://hydra.nixos.org/build/295093316 at 2025-04-22 - 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 + - flatbuffers # failure in job https://hydra.nixos.org/build/252718245 at 2024-03-16 + - flatbuffers-parser # failure in job https://hydra.nixos.org/build/295093316 at 2025-04-22 - 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 - flink-statefulfun # failure in job https://hydra.nixos.org/build/252724456 at 2024-03-16 - Flint2 # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/239246414 at 2023-11-10 - - float128 # failure in job https://hydra.nixos.org/build/252733549 at 2024-03-16 - float-binstring # failure in job https://hydra.nixos.org/build/233203257 at 2023-09-02 + - float128 # failure in job https://hydra.nixos.org/build/252733549 at 2024-03-16 - flock # failure in job https://hydra.nixos.org/build/233245164 at 2023-09-02 + - flow-er # failure in job https://hydra.nixos.org/build/233202082 at 2023-09-02 - flow2dot # failure in job https://hydra.nixos.org/build/252733511 at 2024-03-16 - - 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-api # failure in job https://hydra.nixos.org/build/233215251 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 @@ -1842,8 +1847,9 @@ broken-packages: - 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 - follow-file # failure in job https://hydra.nixos.org/build/252732901 at 2024-03-16 - - 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 + - fontconfig-pure # failure in job https://hydra.nixos.org/build/233254573 at 2023-09-02 + - for-free # failure in job https://hydra.nixos.org/build/233235927 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 @@ -1852,7 +1858,6 @@ broken-packages: - 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 - formal # failure in job https://hydra.nixos.org/build/295093401 at 2025-04-22 @@ -1882,10 +1887,15 @@ broken-packages: - free-alacarte # failure in job https://hydra.nixos.org/build/275141793 at 2024-10-21 - free-applicative-t # failure in job https://hydra.nixos.org/build/252715728 at 2024-03-16 - 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 + - free-theorems # failure in job https://hydra.nixos.org/build/252725016 at 2024-03-16 + - 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 + - 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 + - freenect # failure in job https://hydra.nixos.org/build/233196105 at 2023-09-02 - freer-effects # failure in job https://hydra.nixos.org/build/233214270 at 2023-09-02 - freer-simple-catching # failure in job https://hydra.nixos.org/build/295122831 at 2025-04-22 - freer-simple-http # failure in job https://hydra.nixos.org/build/295122832 at 2025-04-22 @@ -1894,14 +1904,8 @@ broken-packages: - freer-simple-time # failure in job https://hydra.nixos.org/build/295122836 at 2025-04-22 - 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 # failure in job https://hydra.nixos.org/build/252725016 at 2024-03-16 - - 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 + - FreeTypeGL # failure in job https://hydra.nixos.org/build/233212222 at 2023-09-02 - fregel # failure in job https://hydra.nixos.org/build/252734327 at 2024-03-16 - 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 @@ -1913,8 +1917,8 @@ broken-packages: - 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 + - fsmActions # failure in job https://hydra.nixos.org/build/233224366 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 @@ -1929,14 +1933,14 @@ broken-packages: - 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-tools # failure in job https://hydra.nixos.org/build/295122838 at 2025-04-22 - - functional-arrow # failure in job https://hydra.nixos.org/build/295093396 at 2025-04-22 - function-instances-algebra # failure in job https://hydra.nixos.org/build/233202209 at 2023-09-02 - - functora-witch # failure in job https://hydra.nixos.org/build/295093402 at 2025-04-22 + - functional-arrow # failure in job https://hydra.nixos.org/build/295093396 at 2025-04-22 - functor-combinators # failure in job https://hydra.nixos.org/build/252714438 at 2024-03-16 - 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-utils # failure in job https://hydra.nixos.org/build/233213259 at 2023-09-02 + - functora-witch # failure in job https://hydra.nixos.org/build/295093402 at 2025-04-22 + - functorm # failure in job https://hydra.nixos.org/build/233212335 at 2023-09-02 - Fungi # failure in job https://hydra.nixos.org/build/233253088 at 2023-09-02 - funnyprint # failure in job https://hydra.nixos.org/build/295122840 at 2025-04-22 - funpat # failure in job https://hydra.nixos.org/build/233222123 at 2023-09-02 @@ -1958,10 +1962,11 @@ broken-packages: - fwgl-javascript # broken by fwgl, manually entered here, because it does not appear in transitive-broken.yaml at 2024-07-09 - fx # failure in job https://hydra.nixos.org/build/295093438 at 2025-04-22 - fxpak # failure in job https://hydra.nixos.org/build/265955610 at 2024-07-14 + - g-npm # failure in job https://hydra.nixos.org/build/233215965 at 2023-09-02 - g4ip # failure in job https://hydra.nixos.org/build/233248315 at 2023-09-02 - gambler # failure in job https://hydra.nixos.org/build/252732701 at 2024-03-16 - - 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 + - gameclock # failure in job https://hydra.nixos.org/build/233234964 at 2023-09-02 - gamgee # failure in job https://hydra.nixos.org/build/233249846 at 2023-09-02 - gang-of-threads # failure in job https://hydra.nixos.org/build/252716251 at 2024-03-16 - Ganymede # failure in job https://hydra.nixos.org/build/233248892 at 2023-09-02 @@ -1977,7 +1982,8 @@ broken-packages: - gemini-server # failure in job https://hydra.nixos.org/build/295093453 at 2025-04-22 - gemmula-altera # failure in job https://hydra.nixos.org/build/252721416 at 2024-03-16 - gemstone # failure in job https://hydra.nixos.org/build/233202246 at 2023-09-02 - - genai-lib # failure in job https://hydra.nixos.org/build/295093478 at 2025-04-22 + - gen-imports # failure in job https://hydra.nixos.org/build/233216588 at 2023-09-02 + - gen-passwd # failure in job https://hydra.nixos.org/build/233224836 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-prelude # failure in job https://hydra.nixos.org/build/233248628 at 2023-09-02 @@ -1998,25 +2004,24 @@ broken-packages: - 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 - - generics-eot # failure in job https://hydra.nixos.org/build/252717610 at 2024-03-16 - - 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-trie # failure in job https://hydra.nixos.org/build/252733076 at 2024-03-16 - generic-xmlpickler # failure in job https://hydra.nixos.org/build/233246507 at 2023-09-02 + - generics-eot # failure in job https://hydra.nixos.org/build/252717610 at 2024-03-16 + - generics-mrsop # failure in job https://hydra.nixos.org/build/233233310 at 2023-09-02 + - genericserialize # failure in job https://hydra.nixos.org/build/233253092 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 - GenSmsPdu # failure in job https://hydra.nixos.org/build/253702098 at 2024-03-31 - gentlemark # failure in job https://hydra.nixos.org/build/233202158 at 2023-09-02 - genvalidity-appendful # failure in job https://hydra.nixos.org/build/295093519 at 2025-04-22 - genvalidity-mergeful # failure in job https://hydra.nixos.org/build/295093508 at 2025-04-22 - - genvalidity-network-uri # failure in job https://hydra.nixos.org/build/295454526 at 2025-05-02 + - geo-resolver # failure in job https://hydra.nixos.org/build/233206563 at 2023-09-02 + - geo-uk # failure in job https://hydra.nixos.org/build/233221284 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 @@ -2025,15 +2030,14 @@ broken-packages: - 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 - 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 + - gh-labeler # failure in job https://hydra.nixos.org/build/233233139 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 @@ -2047,23 +2051,8 @@ broken-packages: - 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-bench # failure in job https://hydra.nixos.org/build/265539170 at 2024-07-14 - - ghcide-test-utils # failure in job https://hydra.nixos.org/build/253687657 at 2024-03-31 - - 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 - ghc-internal # failure in job https://hydra.nixos.org/build/260723678 at 2024-05-25 - - ghcjs-ajax # failure in job https://hydra.nixos.org/build/295093584 at 2025-04-22 - - ghcjs-base-stub # timeout - - ghcjs-dom-jsffi # failure in job https://hydra.nixos.org/build/233215225 at 2023-09-02 - - ghcjs-fetch # timeout - - ghcjs-promise # failure in job https://hydra.nixos.org/build/233243985 at 2023-09-02 - - ghcjs-websockets # Does not work on the js backend added in 9.6+, only on ghcjs, where we markUnbroken - - 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 @@ -2077,31 +2066,50 @@ broken-packages: - ghc-syb-utils # failure in job https://hydra.nixos.org/build/233229196 at 2023-09-02 - ghc-symbol # failure in job https://hydra.nixos.org/build/252710738 at 2024-03-16 - ghc-time-alloc-prof # failure in job https://hydra.nixos.org/build/233242289 at 2023-09-02 - - ghcup # failure in job https://hydra.nixos.org/build/295093612 at 2025-04-22 - 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 - - gibberish # failure in job https://hydra.nixos.org/build/255688714 at 2024-04-16 - - 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-gstapp # failure in job https://hydra.nixos.org/build/253686159 at 2024-03-31 - - gi-gsttag # failure in job https://hydra.nixos.org/build/233197576 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 + - ghcide-bench # failure in job https://hydra.nixos.org/build/265539170 at 2024-07-14 + - ghcide-test-utils # failure in job https://hydra.nixos.org/build/253687657 at 2024-03-31 + - ghcjs-ajax # failure in job https://hydra.nixos.org/build/295093584 at 2025-04-22 + - ghcjs-base-stub # timeout + - ghcjs-dom-jsffi # failure in job https://hydra.nixos.org/build/233215225 at 2023-09-02 + - ghcjs-fetch # timeout + - ghcjs-promise # failure in job https://hydra.nixos.org/build/233243985 at 2023-09-02 + - ghcjs-websockets # Does not work on the js backend added in 9.6+, only on ghcjs, where we markUnbroken + - ghcjs-xhr # failure in job https://hydra.nixos.org/build/233235693 at 2023-09-02 + - ghclive # failure in job https://hydra.nixos.org/build/233231592 at 2023-09-02 + - ghcup # failure in job https://hydra.nixos.org/build/295093612 at 2025-04-22 + - gi-coglpango # failure in job https://hydra.nixos.org/build/233194401 at 2023-09-02 + - gi-gio-hs-list-model # failure in job https://hydra.nixos.org/build/233241640 at 2023-09-02 + - gi-gstapp # failure in job https://hydra.nixos.org/build/253686159 at 2024-03-31 + - gi-gsttag # failure in job https://hydra.nixos.org/build/233197576 at 2023-09-02 - gi-gtksheet # failure in job https://hydra.nixos.org/build/233211386 at 2023-09-02 - gi-ibus # failure in job https://hydra.nixos.org/build/233220272 at 2023-09-02 - gi-keybinder # failure in job https://hydra.nixos.org/build/265273447 at 2024-07-14 + - gi-webkit2webextension # failure in job https://hydra.nixos.org/build/254424710 at 2024-03-31 + - gi-webkitwebprocessextension # failure in job https://hydra.nixos.org/build/233227647 at 2023-09-02 + - giak # failure in job https://hydra.nixos.org/build/233242229 at 2023-09-02 + - gibberish # failure in job https://hydra.nixos.org/build/255688714 at 2024-04-16 + - Gifcurry # failure in job https://hydra.nixos.org/build/233200204 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 # failure in job https://hydra.nixos.org/build/233225634 at 2023-09-02 - git-all # failure in job https://hydra.nixos.org/build/233252935 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-jump # failure in job https://hydra.nixos.org/build/233206544 at 2023-09-02 + - git-repair # failure in job https://hydra.nixos.org/build/233222686 at 2023-09-02 + - git-vogue # failure in job https://hydra.nixos.org/build/233249420 at 2023-09-02 - gitea-api # failure in job https://hydra.nixos.org/build/295093716 at 2025-04-22 - - 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 @@ -2110,28 +2118,23 @@ broken-packages: - 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 - 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-webkit2webextension # failure in job https://hydra.nixos.org/build/254424710 at 2024-03-31 - - 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 - glambda # failure in job https://hydra.nixos.org/build/252728236 at 2024-03-16 - 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 + - GLFW-b-demo # failure in job https://hydra.nixos.org/build/233230505 at 2023-09-02 + - gli # failure in job https://hydra.nixos.org/build/233210279 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 + - global-variables # failure in job https://hydra.nixos.org/build/233204607 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-examples # failure in job https://hydra.nixos.org/build/252718124 at 2024-03-16 @@ -2143,7 +2146,6 @@ broken-packages: - gltf-codec # failure in job https://hydra.nixos.org/build/233205342 at 2023-09-02 - glualint # failure in job https://hydra.nixos.org/build/295093757 at 2025-04-22 - 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 - gnutls # failure in job https://hydra.nixos.org/build/252734570 at 2024-03-16 - 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 @@ -2168,14 +2170,14 @@ broken-packages: - gogol-useraccounts # failure in job https://hydra.nixos.org/build/286425223 at 2025-01-25 - 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 - - googlepolyline # failure in job https://hydra.nixos.org/build/233209674 at 2023-09-02 + - google-oauth2-easy # failure in job https://hydra.nixos.org/build/233251694 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 + - GoogleCodeJam # failure in job https://hydra.nixos.org/build/233234738 at 2023-09-02 + - googlepolyline # failure in job https://hydra.nixos.org/build/233209674 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 @@ -2185,8 +2187,8 @@ broken-packages: - 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 + - GPipe-Core # failure in job https://hydra.nixos.org/build/233194426 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 - grab # failure in job https://hydra.nixos.org/build/252727759 at 2024-03-16 @@ -2195,23 +2197,23 @@ broken-packages: - 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 + - graph-matchings # failure in job https://hydra.nixos.org/build/233245821 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 + - graph-trace # failure in job https://hydra.nixos.org/build/295093918 at 2025-04-22 + - graph-utils # failure in job https://hydra.nixos.org/build/233224932 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 - - graph-trace # failure in job https://hydra.nixos.org/build/295093918 at 2025-04-22 - 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 @@ -2228,27 +2230,27 @@ broken-packages: - groot # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237248418 at 2023-10-21 - 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 - - groupBy # failure in job https://hydra.nixos.org/build/295093944 at 2025-04-22 - - 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 - - growler # failure in job https://hydra.nixos.org/build/233207497 at 2023-09-02 + - groupBy # failure in job https://hydra.nixos.org/build/295093944 at 2025-04-22 + - grouped-list # failure in job https://hydra.nixos.org/build/233240891 at 2023-09-02 - grow-vector # failure in job https://hydra.nixos.org/build/233196279 at 2023-09-02 + - growler # failure in job https://hydra.nixos.org/build/233207497 at 2023-09-02 - grpc-api-etcd # failure in job https://hydra.nixos.org/build/233239600 at 2023-09-02 - grpc-haskell-core # failure in job https://hydra.nixos.org/build/267997256 at 2024-07-31 - gruvbox-colors # failure in job https://hydra.nixos.org/build/295454932 at 2025-05-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 + - gtk-helpers # failure in job https://hydra.nixos.org/build/233244213 at 2023-09-02 + - gtk-toy # failure in job https://hydra.nixos.org/build/233208132 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 - gtvm-hs # failure in job https://hydra.nixos.org/build/295093971 at 2025-04-22 - guardian # failure in job https://hydra.nixos.org/build/233662964 at 2023-09-02 - guess-combinator # failure in job https://hydra.nixos.org/build/295093981 at 2025-04-22 @@ -2256,27 +2258,31 @@ broken-packages: - 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 + - h-booru # failure in job https://hydra.nixos.org/build/233258209 at 2023-09-02 + - h-gpgme # failure in job https://hydra.nixos.org/build/233240826 at 2023-09-02 + - h-reversi # failure in job https://hydra.nixos.org/build/233235617 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 - h3-hs # failure in job https://hydra.nixos.org/build/267984231 at 2024-07-31 - haar # failure in job https://hydra.nixos.org/build/233217259 at 2023-09-02 + - hablog # failure in job https://hydra.nixos.org/build/296933029 at 2025-05-14 - HABQT # failure in job https://hydra.nixos.org/build/233256547 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 - 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 + - hackage2hwn # failure in job https://hydra.nixos.org/build/233246308 at 2023-09-02 + - hackager # failure in job https://hydra.nixos.org/build/233247230 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 @@ -2300,11 +2306,10 @@ broken-packages: - 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 - - hakyllbars # failure in job https://hydra.nixos.org/build/295094017 at 2025-04-22 - hakyll-blaze-templates # failure in job https://hydra.nixos.org/build/233207117 at 2023-09-02 + - hakyll-contrib # failure in job https://hydra.nixos.org/build/233195056 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-dir-list # failure in job https://hydra.nixos.org/build/233221518 at 2023-09-02 @@ -2314,10 +2319,11 @@ broken-packages: - 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 + - hakyllbars # failure in job https://hydra.nixos.org/build/295094017 at 2025-04-22 - hal # failure in job https://hydra.nixos.org/build/295094030 at 2025-04-22 - - halfs # failure in job https://hydra.nixos.org/build/233235337 at 2023-09-02 + - HaLeX # failure in job https://hydra.nixos.org/build/233233225 at 2023-09-02 - half-space # failure in job https://hydra.nixos.org/build/295094026 at 2025-04-22 + - 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 @@ -2334,20 +2340,21 @@ broken-packages: - 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 - hangman # failure in job https://hydra.nixos.org/build/252718314 at 2024-03-16 + - HangmanAscii # failure in job https://hydra.nixos.org/build/233192660 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 + - happindicator3 # failure in job https://hydra.nixos.org/build/233191315 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 + - HAppS-Util # failure in job https://hydra.nixos.org/build/233237912 at 2023-09-02 - happstack # failure in job https://hydra.nixos.org/build/233196813 at 2023-09-02 + - happstack-clientsession # failure in job https://hydra.nixos.org/build/233224969 at 2023-09-02 - happstack-hamlet # failure in job https://hydra.nixos.org/build/233227835 at 2023-09-02 - happstack-heist # failure in job https://hydra.nixos.org/build/252723609 at 2024-03-16 - happstack-hstringtemplate # failure in job https://hydra.nixos.org/build/233201171 at 2023-09-02 @@ -2356,10 +2363,9 @@ broken-packages: - 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 + - happy-hour # failure in job https://hydra.nixos.org/build/252732958 at 2024-03-16 - 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 - - happy-hour # failure in job https://hydra.nixos.org/build/252732958 at 2024-03-16 - 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 @@ -2373,38 +2379,34 @@ broken-packages: - harp # failure in job https://hydra.nixos.org/build/252730015 at 2024-03-16 - 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 + - has # failure in job https://hydra.nixos.org/build/233193689 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 - hascalam # failure in job https://hydra.nixos.org/build/295094052 at 2025-04-22 - - 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 + - hascard # failure in job https://hydra.nixos.org/build/233238626 at 2023-09-02 - hascas # failure in job https://hydra.nixos.org/build/233250350 at 2023-09-02 - Haschoo # failure in job https://hydra.nixos.org/build/295090988 at 2025-04-22 - HasChor # failure in job https://hydra.nixos.org/build/295090966 at 2025-04-22 - - has # failure in job https://hydra.nixos.org/build/233193689 at 2023-09-02 + - hash # failure in job https://hydra.nixos.org/build/233219137 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 - hashable-orphans # failure in job https://hydra.nixos.org/build/252738804 at 2024-03-16 - - hashabler # failure in job https://hydra.nixos.org/build/233236154 at 2023-09-02 - hashable-time # failure in job https://hydra.nixos.org/build/252733552 at 2024-03-16 + - 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 - hasherize # failure in job https://hydra.nixos.org/build/252712987 at 2024-03-16 - - 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 + - hask # failure in job https://hydra.nixos.org/build/233215974 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-abci # failure in job https://hydra.nixos.org/build/259980321 at 2024-05-19 - 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 @@ -2413,12 +2415,9 @@ broken-packages: - 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 - haskell-docs-cli # failure in job https://hydra.nixos.org/build/252718877 at 2024-03-16 - haskell-ffprobe # failure in job https://hydra.nixos.org/build/267973417 at 2024-07-31 - - 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 @@ -2427,16 +2426,12 @@ broken-packages: - 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-mpi # failure in job https://hydra.nixos.org/build/269654341 at 2024-08-19 - 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 - - HaskellNet # failure in job https://hydra.nixos.org/build/295091001 at 2025-04-22 - - 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 @@ -2446,8 +2441,6 @@ broken-packages: - 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-snake # failure in job https://hydra.nixos.org/build/241433525 at 2023-11-19 - 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 @@ -2457,15 +2450,28 @@ broken-packages: - 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/295094095 at 2025-04-22 - - 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 + - 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 + - HaskellAnalysisProgram # failure in job https://hydra.nixos.org/build/233235074 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 + - HaskellForMaths # failure in job https://hydra.nixos.org/build/233237608 at 2023-09-02 + - HaskellLM # failure in job https://hydra.nixos.org/build/233237641 at 2023-09-02 + - HaskellNet # failure in job https://hydra.nixos.org/build/295091001 at 2025-04-22 + - 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 + - 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 + - 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 - 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 - haskmon # failure in job https://hydra.nixos.org/build/233228390 at 2023-09-02 @@ -2504,8 +2510,8 @@ broken-packages: - 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 - - 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 + - hatex-guide # failure in job https://hydra.nixos.org/build/233258593 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 - haven # failure in job https://hydra.nixos.org/build/233216806 at 2023-09-02 @@ -2522,7 +2528,6 @@ broken-packages: - 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 @@ -2542,9 +2547,9 @@ broken-packages: - 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 + - hdf # failure in job https://hydra.nixos.org/build/233221986 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 @@ -2555,15 +2560,15 @@ broken-packages: - 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 + - heartbeat-streams # failure in job https://hydra.nixos.org/build/233214515 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-gen # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237243271 at 2023-10-21 + - 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 @@ -2585,11 +2590,11 @@ broken-packages: - 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 + - her-lexer-parsec # failure in job https://hydra.nixos.org/build/233237312 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 @@ -2605,8 +2610,8 @@ broken-packages: - 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 + - hexpress # failure in job https://hydra.nixos.org/build/233219047 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 @@ -2622,9 +2627,9 @@ broken-packages: - 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 + - HGamer3D # failure in job https://hydra.nixos.org/build/233200642 at 2023-09-02 + - HGamer3D-Data # failure in job https://hydra.nixos.org/build/233248475 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 @@ -2633,7 +2638,6 @@ broken-packages: - 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 @@ -2643,25 +2647,25 @@ broken-packages: - 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 + - hi # failure in job https://hydra.nixos.org/build/295094222 at 2025-04-22 - 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 + - hid-examples # failure in job https://hydra.nixos.org/build/233221413 at 2023-09-02 + - hidden-char # failure in job https://hydra.nixos.org/build/233206791 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 - - hi # failure in job https://hydra.nixos.org/build/295094222 at 2025-04-22 - hifi # failure in job https://hydra.nixos.org/build/233192325 at 2023-09-02 - higgledy # failure in job https://hydra.nixos.org/build/252718176 at 2024-03-16 - 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 - highlighter # failure in job https://hydra.nixos.org/build/252735594 at 2024-03-16 - highlighting-kate # failure in job https://hydra.nixos.org/build/252739418 at 2024-03-16 - - 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 - hikchr # failure in job https://hydra.nixos.org/build/295094234 at 2025-04-22 - hills # failure in job https://hydra.nixos.org/build/233215201 at 2023-09-02 @@ -2672,9 +2676,9 @@ broken-packages: - hinotify-conduit # failure in job https://hydra.nixos.org/build/252710760 at 2024-03-16 - 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 + - hinter # failure in job https://hydra.nixos.org/build/233245954 at 2023-09-02 + - hinterface # failure in job https://hydra.nixos.org/build/233250383 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 - hips # failure in job https://hydra.nixos.org/build/252728413 at 2024-03-16 @@ -2683,15 +2687,15 @@ broken-packages: - 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 + - historian # failure in job https://hydra.nixos.org/build/233210703 at 2023-09-02 - hit-on # failure in job https://hydra.nixos.org/build/233233939 at 2023-09-02 - hix # failure in job https://hydra.nixos.org/build/267986775 at 2024-07-31 - 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 + - hjsonpointer # failure in job https://hydra.nixos.org/build/233238177 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 @@ -2772,10 +2776,11 @@ broken-packages: - 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 + - ho-rewriting # failure in job https://hydra.nixos.org/build/233253726 at 2023-09-02 + - hoauth # failure in job https://hydra.nixos.org/build/233191191 at 2023-09-02 - hoauth2-demo # failure in job https://hydra.nixos.org/build/295094328 at 2025-04-22 - hoauth2-providers-tutorial # failure in job https://hydra.nixos.org/build/295094327 at 2025-04-22 - 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 @@ -2799,9 +2804,9 @@ broken-packages: - 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 + - hood-off # failure in job https://hydra.nixos.org/build/233249500 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 @@ -2814,7 +2819,6 @@ broken-packages: - 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 # failure in job https://hydra.nixos.org/build/244399500 at 2024-01-01 @@ -2848,25 +2852,57 @@ broken-packages: - hqcsim # failure in job https://hydra.nixos.org/build/270086589 at 2024-08-31 - hquantlib # failure in job https://hydra.nixos.org/build/295094357 at 2025-04-22 - hquery # failure in job https://hydra.nixos.org/build/233203709 at 2023-09-02 + - hR # failure in job https://hydra.nixos.org/build/233205131 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 + - hs-asapo # failure in job https://hydra.nixos.org/build/273456994 at 2024-10-01 + - hs-aws-lambda # failure in job https://hydra.nixos.org/build/295094343 at 2025-04-22 + - hs-brotli # failure in job https://hydra.nixos.org/build/233215213 at 2023-09-02 + - hs-carbon # failure in job https://hydra.nixos.org/build/252722544 at 2024-03-16 + - hs-carbon-examples # failure in job https://hydra.nixos.org/build/234440337 at 2023-09-13 + - hs-di # failure in job https://hydra.nixos.org/build/233254606 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 + - hs-excelx # failure in job https://hydra.nixos.org/build/233230761 at 2023-09-02 + - hs-fltk # failure in job https://hydra.nixos.org/build/233225244 at 2023-09-02 + - hs-gizapp # failure in job https://hydra.nixos.org/build/233248733 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 + - hs-logo # failure in job https://hydra.nixos.org/build/233211298 at 2023-09-02 + - hs-nombre-generator # failure in job https://hydra.nixos.org/build/233246102 at 2023-09-02 + - hs-openmoji-data # failure in job https://hydra.nixos.org/build/295094356 at 2025-04-22 + - hs-opentelemetry-awsxray # failure in job https://hydra.nixos.org/build/295094396 at 2025-04-22 + - hs-opentelemetry-instrumentation-auto # failure in job https://hydra.nixos.org/build/253678404 at 2024-03-31 + - hs-pattrans # failure in job https://hydra.nixos.org/build/233230577 at 2023-09-02 + - hs-pgms # failure in job https://hydra.nixos.org/build/233237693 at 2023-09-02 + - hs-pkg-config # failure in job https://hydra.nixos.org/build/233240839 at 2023-09-02 + - hs-re # failure in job https://hydra.nixos.org/build/233253430 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-samtools # failure in job https://hydra.nixos.org/build/236688025 at 2023-10-04 + - hs-scrape # failure in job https://hydra.nixos.org/build/233244221 at 2023-09-02 + - hs-server-starter # failure in job https://hydra.nixos.org/build/295094379 at 2025-04-22 + - hs-snowtify # failure in job https://hydra.nixos.org/build/233200511 at 2023-09-02 + - hs-speedscope # failure in job https://hydra.nixos.org/build/295094385 at 2025-04-22 + - hs-tags # failure in job https://hydra.nixos.org/build/233258358 at 2023-09-02 + - hs-tango # failure in job https://hydra.nixos.org/build/276377558 at 2024-11-06 + - hs-term-emulator # failure in job https://hydra.nixos.org/build/233252262 at 2023-09-02 + - hs-twitter # failure in job https://hydra.nixos.org/build/233214283 at 2023-09-02 + - hs-twitterarchiver # failure in job https://hydra.nixos.org/build/233241847 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 - 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 - hsakamai # failure in job https://hydra.nixos.org/build/252722933 at 2024-03-16 - hsaml2 # failure in job https://hydra.nixos.org/build/233252618 at 2023-09-02 - - hs-asapo # failure in job https://hydra.nixos.org/build/273456994 at 2024-10-01 - hsautogui # failure in job https://hydra.nixos.org/build/253687662 at 2024-03-31 - - hs-aws-lambda # failure in job https://hydra.nixos.org/build/295094343 at 2025-04-22 - 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 @@ -2878,8 +2914,6 @@ broken-packages: - 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 - - hs-carbon # failure in job https://hydra.nixos.org/build/252722544 at 2024-03-16 - 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 @@ -2887,24 +2921,18 @@ broken-packages: - 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 - hsec-sync # failure in job https://hydra.nixos.org/build/265274250 at 2024-07-14 - hsec-tools # failure in job https://hydra.nixos.org/build/265287998 at 2024-07-14 - hsenv # failure in job https://hydra.nixos.org/build/233196846 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 - hsftp # failure in job https://hydra.nixos.org/build/283199528 at 2024-12-31 - - 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 @@ -2914,8 +2942,6 @@ broken-packages: - 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 - hsinspect # failure in job https://hydra.nixos.org/build/295094410 at 2025-04-22 - - 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 @@ -2923,27 +2949,21 @@ broken-packages: - 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 - - hs-openmoji-data # failure in job https://hydra.nixos.org/build/295094356 at 2025-04-22 - - hs-opentelemetry-awsxray # failure in job https://hydra.nixos.org/build/295094396 at 2025-04-22 - - hs-opentelemetry-instrumentation-auto # failure in job https://hydra.nixos.org/build/253678404 at 2024-03-31 - 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 - - hsparql # failure in job https://hydra.nixos.org/build/295094469 at 2025-04-22 - - hs-pattrans # failure in job https://hydra.nixos.org/build/233230577 at 2023-09-02 + - hsp # failure in job https://hydra.nixos.org/build/252718609 at 2024-03-16 - hsp-cgi # failure in job https://hydra.nixos.org/build/233254927 at 2023-09-02 + - hsparql # failure in job https://hydra.nixos.org/build/295094469 at 2025-04-22 - 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-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 @@ -2952,46 +2972,29 @@ broken-packages: - hspec-snap # failure in job https://hydra.nixos.org/build/252725428 at 2024-03-16 - 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 + - hspec2 # failure in job https://hydra.nixos.org/build/233251459 at 2023-09-02 - HsPerl5 # failure in job https://hydra.nixos.org/build/233256038 at 2023-09-02 - - hsp # failure in job https://hydra.nixos.org/build/252718609 at 2024-03-16 - - 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-samtools # failure in job https://hydra.nixos.org/build/236688025 at 2023-10-04 - - 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 - - hs-server-starter # failure in job https://hydra.nixos.org/build/295094379 at 2025-04-22 - 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 - - hs-speedscope # failure in job https://hydra.nixos.org/build/295094385 at 2025-04-22 - 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 - - hs-tango # failure in job https://hydra.nixos.org/build/276377558 at 2024-11-06 - - 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 + - hstatsd # failure in job https://hydra.nixos.org/build/233232363 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 + - hsx # failure in job https://hydra.nixos.org/build/233211907 at 2023-09-02 - hsx2hs # failure in job https://hydra.nixos.org/build/252733316 at 2024-03-16 - 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 @@ -3012,9 +3015,6 @@ broken-packages: - 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-exe # failure in job https://hydra.nixos.org/build/260189666 at 2024-05-19 - - 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 @@ -3039,9 +3039,12 @@ broken-packages: - 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 - http-slim # failure in job https://hydra.nixos.org/build/252734524 at 2024-03-16 - - httpstan # failure in job https://hydra.nixos.org/build/233202072 at 2023-09-02 - http-test # failure in job https://hydra.nixos.org/build/252738556 at 2024-03-16 - http-wget # failure in job https://hydra.nixos.org/build/233236793 at 2023-09-02 + - http2-client-exe # failure in job https://hydra.nixos.org/build/260189666 at 2024-05-19 + - 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 + - httpstan # failure in job https://hydra.nixos.org/build/233202072 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 @@ -3051,10 +3054,10 @@ broken-packages: - 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 + - hum # failure in job https://hydra.nixos.org/build/233203730 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 @@ -3068,7 +3071,6 @@ broken-packages: - 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 - hw-aeson # failure in job https://hydra.nixos.org/build/295094563 at 2025-04-22 - - hwall-auth-iitk # failure in job https://hydra.nixos.org/build/233217629 at 2023-09-02 - hw-aws-sqs-conduit # failure building library in job https://hydra.nixos.org/build/237235400 at 2023-10-21 - hw-ci-assist # failure in job https://hydra.nixos.org/build/233207990 at 2023-09-02 - hw-conduit # failure in job https://hydra.nixos.org/build/252713114 at 2024-03-16 @@ -3076,13 +3078,10 @@ broken-packages: - hw-diagnostics # failure in job https://hydra.nixos.org/build/252734742 at 2024-03-16 - 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 - hw-fingertree-strict # failure in job https://hydra.nixos.org/build/252718249 at 2024-03-16 - - 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 - hw-kafka-conduit # failure in job https://hydra.nixos.org/build/252714760 at 2024-03-16 - hw-lazy # failure in job https://hydra.nixos.org/build/252722974 at 2024-03-16 - - hworker # failure in job https://hydra.nixos.org/build/233220098 at 2023-09-02 - hw-packed-vector # failure in job https://hydra.nixos.org/build/252735800 at 2024-03-16 - hw-parser # failure in job https://hydra.nixos.org/build/295094576 at 2025-04-22 - hw-playground-linear # failure in job https://hydra.nixos.org/build/233208994 at 2023-09-02 @@ -3090,14 +3089,18 @@ broken-packages: - hw-prim-bits # failure in job https://hydra.nixos.org/build/233246627 at 2023-09-02 - hw-rankselect-base # failure in job https://hydra.nixos.org/build/295122851 at 2025-04-22 - 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-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 + - hwall-auth-iitk # failure in job https://hydra.nixos.org/build/233217629 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 + - hworker # failure in job https://hydra.nixos.org/build/233220098 at 2023-09-02 + - hwsl2 # failure in job https://hydra.nixos.org/build/233203941 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 - - hxthelper # failure in job https://hydra.nixos.org/build/282936106 at 2024-12-24 (> 10 years since last release) - hxt-pickle-utils # failure in job https://hydra.nixos.org/build/233212654 at 2023-09-02 + - hxthelper # failure in job https://hydra.nixos.org/build/282936106 at 2024-12-24 (> 10 years since last release) - 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 @@ -3105,9 +3108,9 @@ broken-packages: - 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 + - hyper-haskell-server # failure in job https://hydra.nixos.org/build/233244991 at 2023-09-02 - hyperdrive # failure in job https://hydra.nixos.org/build/233223556 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 @@ -3116,20 +3119,21 @@ broken-packages: - hyraxAbif # failure in job https://hydra.nixos.org/build/233195246 at 2023-09-02 - hzenity # failure in job https://hydra.nixos.org/build/295094627 at 2025-04-22 - hzulip # failure in job https://hydra.nixos.org/build/233191086 at 2023-09-02 + - i # failure in job https://hydra.nixos.org/build/295094611 at 2025-04-22 - 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 + - iban # failure in job https://hydra.nixos.org/build/233236424 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 + - ideas # failure in job https://hydra.nixos.org/build/233248212 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 @@ -3137,11 +3141,10 @@ broken-packages: - 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 - - i # failure in job https://hydra.nixos.org/build/295094611 at 2025-04-22 - 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 + - ige # failure in job https://hydra.nixos.org/build/233224389 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 @@ -3151,9 +3154,9 @@ broken-packages: - 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/265955663 at 2024-07-14 - illuminate # failure in job https://hydra.nixos.org/build/233219478 at 2023-09-02 + - image-type # failure in job https://hydra.nixos.org/build/233251466 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 @@ -3168,6 +3171,8 @@ broken-packages: - 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 + - in-other-words # failure in job https://hydra.nixos.org/build/252711798 at 2024-03-16 + - in-other-words-plugin # failure in job https://hydra.nixos.org/build/233202396 at 2023-09-02 - inchworm # failure in job https://hydra.nixos.org/build/233219017 at 2023-09-02 - incremental-sat-solver # failure in job https://hydra.nixos.org/build/252738274 at 2024-03-16 - indentation-core # failure in job https://hydra.nixos.org/build/233257946 at 2023-09-02 @@ -3177,16 +3182,16 @@ broken-packages: - indexed-extras # failure in job https://hydra.nixos.org/build/252739554 at 2024-03-16 - 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 + - inf-interval # failure in job https://hydra.nixos.org/build/233193217 at 2023-09-02 + - infer-upstream # failure in job https://hydra.nixos.org/build/233191739 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 + - inilist # failure in job https://hydra.nixos.org/build/233203791 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 @@ -3194,8 +3199,6 @@ broken-packages: - inline-c-cuda # failure in job https://hydra.nixos.org/build/237234701 at 2023-10-21 - 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 # failure in job https://hydra.nixos.org/build/252711798 at 2024-03-16 - - 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-control # failure in job https://hydra.nixos.org/build/252726549 at 2024-03-16 @@ -3203,6 +3206,8 @@ broken-packages: - 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 + - int-interval-map # failure in job https://hydra.nixos.org/build/233244556 at 2023-09-02 + - int-multimap # failure in job https://hydra.nixos.org/build/233210427 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 @@ -3216,57 +3221,56 @@ broken-packages: - 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 + - interpol # failure in job https://hydra.nixos.org/build/233218430 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 - interspersed # failure in job https://hydra.nixos.org/build/252722645 at 2024-03-16 - - 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-algebra # failure in job https://hydra.nixos.org/build/233208487 at 2023-09-02 - interval-patterns # failure in job https://hydra.nixos.org/build/239259401 at 2023-11-10 - 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-multimap # failure in job https://hydra.nixos.org/build/233210427 at 2023-09-02 - intricacy # failure in job https://hydra.nixos.org/build/252711846 at 2024-03-16 - 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 + - introduction # failure in job https://hydra.nixos.org/build/233223585 at 2023-09-02 - inventory # failure in job https://hydra.nixos.org/build/295094716 at 2025-04-22 - invertible-hlist # failure in job https://hydra.nixos.org/build/295094739 at 2025-04-22 - 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 - io-sim # failure in job https://hydra.nixos.org/build/295094727 at 2025-04-22 + - ioctl # failure in job https://hydra.nixos.org/build/233191634 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 + - ip-quoter # failure in job https://hydra.nixos.org/build/233234581 at 2023-09-02 - ipcvar # failure in job https://hydra.nixos.org/build/252724626 at 2024-03-16 - 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/295094782 at 2025-04-22 - - 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-dcc # failure in job https://hydra.nixos.org/build/233230181 at 2023-09-02 - irc-fun-types # failure in job https://hydra.nixos.org/build/233255910 at 2023-09-02 + - ircbot # failure in job https://hydra.nixos.org/build/295094782 at 2025-04-22 - 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/295455675 at 2025-05-02 + - iridium # failure in job https://hydra.nixos.org/build/233211261 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 + - iso-deriving # failure in job https://hydra.nixos.org/build/252738238 at 2024-03-16 - 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 - - iso-deriving # failure in job https://hydra.nixos.org/build/252738238 at 2024-03-16 - isotope # failure in job https://hydra.nixos.org/build/233204650 at 2023-09-02 + - it-has # failure in job https://hydra.nixos.org/build/233212395 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 - iterable # failure in job https://hydra.nixos.org/build/252729530 at 2024-03-16 @@ -3274,11 +3278,11 @@ broken-packages: - 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 + - j # failure in job https://hydra.nixos.org/build/252716408 at 2024-03-16 - 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 @@ -3303,7 +3307,6 @@ broken-packages: - 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 # failure in job https://hydra.nixos.org/build/252729255 at 2024-03-16 - - j # failure in job https://hydra.nixos.org/build/252716408 at 2024-03-16 - 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 - jl # failure in job https://hydra.nixos.org/build/252726423 at 2024-03-16 @@ -3318,41 +3321,41 @@ broken-packages: - 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 - - jsdom-extras # failure in job https://hydra.nixos.org/build/295094819 at 2025-04-22 - 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 + - jsdom-extras # failure in job https://hydra.nixos.org/build/295094819 at 2025-04-22 - 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 - json-autotype # failure in job https://hydra.nixos.org/build/295094817 at 2025-04-22 - - 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 - - jsonlogic # failure in job https://hydra.nixos.org/build/252726075 at 2024-03-16 - - 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 - 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-to-haskell # failure in job https://hydra.nixos.org/build/252711573 at 2024-03-16 + - json-to-type # failure in job https://hydra.nixos.org/build/275143966 at 2024-10-21 - json-tokens # failure in job https://hydra.nixos.org/build/295094852 at 2025-04-22 - json-tools # failure in job https://hydra.nixos.org/build/233247019 at 2023-09-02 - - json-to-type # failure in job https://hydra.nixos.org/build/275143966 at 2024-10-21 - json-tracer # failure in job https://hydra.nixos.org/build/233196632 at 2023-09-02 + - json2 # failure in job https://hydra.nixos.org/build/233242447 at 2023-09-02 + - JSONb # failure in job https://hydra.nixos.org/build/233231060 at 2023-09-02 + - jsonextfilter # failure in job https://hydra.nixos.org/build/233194770 at 2023-09-02 + - jsonlogic # failure in job https://hydra.nixos.org/build/252726075 at 2024-03-16 + - 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 + - jsonresume # failure in job https://hydra.nixos.org/build/233202350 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 - 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 @@ -3393,8 +3396,8 @@ broken-packages: - 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 + - kdesrc-build-extra # failure in job https://hydra.nixos.org/build/233193718 at 2023-09-02 - kdt # test failure in job https://hydra.nixos.org/build/239264029 at 2023-11-10 - 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 @@ -3405,14 +3408,14 @@ broken-packages: - 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 + - key # failure in job https://hydra.nixos.org/build/252710595 at 2024-03-16 - 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 - - key # failure in job https://hydra.nixos.org/build/252710595 at 2024-03-16 - keysafe # failure in job https://hydra.nixos.org/build/265284122 at 2024-07-14 - khph # failure in job https://hydra.nixos.org/build/233258109 at 2023-09-02 + - ki-effectful # failure in job https://hydra.nixos.org/build/295094885 at 2025-04-22 - 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 - - ki-effectful # failure in job https://hydra.nixos.org/build/295094885 at 2025-04-22 - kindly-functors # failure in job https://hydra.nixos.org/build/295094891 at 2025-04-22 - kleene # failure in job https://hydra.nixos.org/build/295094919 at 2025-04-22 - kleene-list # failure in job https://hydra.nixos.org/build/233237651 at 2023-09-02 @@ -3439,28 +3442,30 @@ broken-packages: - 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 + - l-bfgs-b # failure in job https://hydra.nixos.org/build/233258769 at 2023-09-02 + - L-seed # failure in job https://hydra.nixos.org/build/233222324 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 + - lambda # failure in job https://hydra.nixos.org/build/252740018 at 2024-03-16 + - 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 + - lambda-cube # failure in job https://hydra.nixos.org/build/233226812 at 2023-09-02 + - lambda-sampler # failure in job https://hydra.nixos.org/build/233205734 at 2023-09-02 + - lambda-toolbox # failure in job https://hydra.nixos.org/build/233194921 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 - - 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 - - lambda # failure in job https://hydra.nixos.org/build/252740018 at 2024-03-16 - 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 - lambdasound # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237027557 at 2023-10-04 - 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 @@ -3482,8 +3487,8 @@ broken-packages: - 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-lua2 # failure in job https://hydra.nixos.org/build/233197435 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 @@ -3499,8 +3504,8 @@ broken-packages: - 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 - large-anon # base >=4.14 && <4.19, ghc >=8.10 && <9.7 https://hydra.nixos.org/build/295428414 - - LargeCardinalHierarchy # failure in job https://hydra.nixos.org/build/233250339 at 2023-09-02 - large-records # failure in job https://hydra.nixos.org/build/295094961 at 2025-04-22 + - LargeCardinalHierarchy # failure in job https://hydra.nixos.org/build/233250339 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 @@ -3512,42 +3517,39 @@ broken-packages: - 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 - layers-game # failure in job https://hydra.nixos.org/build/295094997 at 2025-04-22 - - 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-bootstrap # failure in job https://hydra.nixos.org/build/233223699 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 + - lazy # failure in job https://hydra.nixos.org/build/295094978 at 2025-04-22 - lazy-async # failure in job https://hydra.nixos.org/build/252730698 at 2024-03-16 - - lazyboy # failure in job https://hydra.nixos.org/build/233201158 at 2023-09-02 - lazy-bracket # failure in job https://hydra.nixos.org/build/252727186 at 2024-03-16 - - lazy # failure in job https://hydra.nixos.org/build/295094978 at 2025-04-22 - 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 + - 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 - 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 - lbfgs # failure in job https://hydra.nixos.org/build/282178103 at 2024-12-23 - 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 + - ldif # failure in job https://hydra.nixos.org/build/233195577 at 2023-09-02 - leaf # failure in job https://hydra.nixos.org/build/233212614 at 2023-09-02 - leanpub-concepts # failure in job https://hydra.nixos.org/build/295095015 at 2025-04-22 - 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 + - Learning # failure in job https://hydra.nixos.org/build/233237137 at 2023-09-02 - leb128 # failure in job https://hydra.nixos.org/build/252731801 at 2024-03-16 - 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-accelerate # failure in job https://hydra.nixos.org/build/296049887 at 2025-05-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-indexed-plated # failure in job https://hydra.nixos.org/build/295095017 at 2025-04-22 - 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 @@ -3557,10 +3559,12 @@ broken-packages: - lens-typelevel # failure in job https://hydra.nixos.org/build/233225963 at 2023-09-02 - lens-witherable # failure in job https://hydra.nixos.org/build/295095030 at 2025-04-22 - lens-xml # failure in job https://hydra.nixos.org/build/233245746 at 2023-09-02 + - lenses # failure in job https://hydra.nixos.org/build/233239109 at 2023-09-02 + - lensref # failure in job https://hydra.nixos.org/build/233205479 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 + - Level0 # failure in job https://hydra.nixos.org/build/233220758 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 @@ -3611,22 +3615,22 @@ broken-packages: - 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 + - line # failure in job https://hydra.nixos.org/build/295095069 at 2025-04-22 + - 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 - linear-accelerate # failure in job https://hydra.nixos.org/build/296049888 at 2025-05-02 - linear-algebra-cblas # failure in job https://hydra.nixos.org/build/233239710 at 2023-09-02 - - linearmap-category # failure in job https://hydra.nixos.org/build/236690982 at 2023-10-04 - linear-maps # failure in job https://hydra.nixos.org/build/233258332 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 # failure in job https://hydra.nixos.org/build/295095069 at 2025-04-22 - - line-indexed-cursor # failure in job https://hydra.nixos.org/build/233210607 at 2023-09-02 + - linearmap-category # failure in job https://hydra.nixos.org/build/236690982 at 2023-10-04 + - linearscan # failure in job https://hydra.nixos.org/build/233257541 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 + - linkedhashmap # failure in job https://hydra.nixos.org/build/233234634 at 2023-09-02 - linklater # failure in job https://hydra.nixos.org/build/233220508 at 2023-09-02 - linnet # failure in job https://hydra.nixos.org/build/245788523 at 2024-01-07 - linode # failure in job https://hydra.nixos.org/build/233256512 at 2023-09-02 @@ -3646,7 +3650,6 @@ broken-packages: - 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 - - 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-singleton # failure in job https://hydra.nixos.org/build/252723010 at 2024-03-16 @@ -3655,6 +3658,7 @@ broken-packages: - 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 + - listlike-instances # failure in job https://hydra.nixos.org/build/233238303 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 @@ -3674,36 +3678,36 @@ broken-packages: - 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 + - loc-test # failure in job https://hydra.nixos.org/build/233198477 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 + - log-warper # failure in job https://hydra.nixos.org/build/233220417 at 2023-09-02 + - log2json # failure in job https://hydra.nixos.org/build/233211819 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-colors # failure in job https://hydra.nixos.org/build/295095150 at 2025-04-22 - 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 - logging-effect-syslog # failure in job https://hydra.nixos.org/build/295095176 at 2025-04-22 - - logic-classes # failure in job https://hydra.nixos.org/build/295095194 at 2025-04-22 - Logic # failure in job https://hydra.nixos.org/build/233206217 at 2023-09-02 + - logic-classes # failure in job https://hydra.nixos.org/build/295095194 at 2025-04-22 - 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 - longshot # bounds issues https://hydra.nixos.org/build/295428416 - 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 + - loop-while # failure in job https://hydra.nixos.org/build/233198041 at 2023-09-02 + - loopbreaker # failure in job https://hydra.nixos.org/build/233235857 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 @@ -3715,7 +3719,6 @@ broken-packages: - lp-diagrams-svg # failure in job https://hydra.nixos.org/build/233220097 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 - lti13 # failure in job https://hydra.nixos.org/build/252715722 at 2024-03-16 @@ -3724,10 +3727,10 @@ broken-packages: - 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 + - lucid2-htmx # failure in job https://hydra.nixos.org/build/233196674 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 @@ -3736,8 +3739,8 @@ broken-packages: - 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 + - lxd-client-config # failure in job https://hydra.nixos.org/build/233225008 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 @@ -3757,24 +3760,24 @@ broken-packages: - 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 + - magic-tyfams # failure in job https://hydra.nixos.org/build/233218287 at 2023-09-02 - magicbane # failure in job https://hydra.nixos.org/build/295095267 at 2025-04-22 - 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 - magma # failure in job https://hydra.nixos.org/build/295095210 at 2025-04-22 - 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 + - 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 - 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 + - map-reduce-folds # failure in job https://hydra.nixos.org/build/233245163 at 2023-09-02 + - mapalgebra # failure in job https://hydra.nixos.org/build/233215542 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 @@ -3791,11 +3794,11 @@ broken-packages: - master-plan # failure in job https://hydra.nixos.org/build/233208718 at 2023-09-02 - matcha # failure in job https://hydra.nixos.org/build/265271888 at 2024-07-14 - 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 + - mathflow # failure in job https://hydra.nixos.org/build/233195457 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 @@ -3814,9 +3817,9 @@ broken-packages: - 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 + - mcm # failure in job https://hydra.nixos.org/build/233229087 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 @@ -3825,8 +3828,8 @@ broken-packages: - 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 + - Mecha # failure in job https://hydra.nixos.org/build/233243480 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 @@ -3839,28 +3842,28 @@ broken-packages: - 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 + - memcached # failure in job https://hydra.nixos.org/build/233190993 at 2023-09-02 + - memcached-binary # failure in job https://hydra.nixos.org/build/233192281 at 2023-09-02 - memfd # failure in job https://hydra.nixos.org/build/295095297 at 2025-04-22 - memis # failure in job https://hydra.nixos.org/build/233207107 at 2023-09-02 + - memo-ptr # failure in job https://hydra.nixos.org/build/233216357 at 2023-09-02 + - memo-sqlite # failure in job https://hydra.nixos.org/build/233243897 at 2023-09-02 - memoization-utils # failure in job https://hydra.nixos.org/build/233220093 at 2023-09-02 - memoize # failure in job https://hydra.nixos.org/build/295095333 at 2025-04-22 - - 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 - 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 + - 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 - 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 @@ -3869,7 +3872,9 @@ broken-packages: - 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 + - mi # failure in job https://hydra.nixos.org/build/233227735 at 2023-09-02 - miconix-test # failure in job https://hydra.nixos.org/build/233230738 at 2023-09-02 + - micro-recursion-schemes # failure in job https://hydra.nixos.org/build/233214118 at 2023-09-02 - microbase # failure in job https://hydra.nixos.org/build/233204368 at 2023-09-02 - microdns # failure in job https://hydra.nixos.org/build/295095321 at 2025-04-22 - microformats2-parser # failure in job https://hydra.nixos.org/build/233238485 at 2023-09-02 @@ -3877,26 +3882,24 @@ broken-packages: - 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 + - midisurface # failure in job https://hydra.nixos.org/build/233224559 at 2023-09-02 + - mig-swagger-ui # failure in job https://hydra.nixos.org/build/295095369 at 2025-04-22 - mighttpd2 # failure in job https://hydra.nixos.org/build/233213125 at 2023-09-02 - migrant-core # failure in job https://hydra.nixos.org/build/295095347 at 2025-04-22 - migrant-postgresql-simple # failure in job https://hydra.nixos.org/build/233191795 at 2023-09-02 - - mig-swagger-ui # failure in job https://hydra.nixos.org/build/295095369 at 2025-04-22 - 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 - mines # failure in job https://hydra.nixos.org/build/252722834 at 2024-03-16 + - mini-egison # failure in job https://hydra.nixos.org/build/295095354 at 2025-04-22 - MiniAgda # failure in job https://hydra.nixos.org/build/233259586 at 2023-09-02 - minicurl # failure in job https://hydra.nixos.org/build/252710787 at 2024-03-16 - - mini-egison # failure in job https://hydra.nixos.org/build/295095354 at 2025-04-22 - 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 @@ -3912,8 +3915,8 @@ broken-packages: - 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 + - mltool # failure in job https://hydra.nixos.org/build/233203849 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 @@ -3921,66 +3924,47 @@ broken-packages: - 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 - 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 + - mockazo # failure in job https://hydra.nixos.org/build/233234923 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 + - MoeDict # failure in job https://hydra.nixos.org/build/233255252 at 2023-09-02 - moesocks # failure in job https://hydra.nixos.org/build/233258741 at 2023-09-02 - moffy-samples-gtk3-run # failure in job https://hydra.nixos.org/build/295095451 at 2025-04-22 - moffy-samples-gtk4-run # failure in job https://hydra.nixos.org/build/295095458 at 2025-04-22 - 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 # failure in job https://hydra.nixos.org/build/252729237 at 2024-03-16 - - 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 - - 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 - monad-gen # failure in job https://hydra.nixos.org/build/252730194 at 2024-03-16 - - monadic-arrays # failure in job https://hydra.nixos.org/build/252726939 at 2024-03-16 - - monadiccp # failure in job https://hydra.nixos.org/build/233191794 at 2023-09-02 - - monadic-recursion-schemes # failure in job https://hydra.nixos.org/build/295095464 at 2025-04-22 - monad-introspect # failure in job https://hydra.nixos.org/build/233248261 at 2023-09-02 - - monadio-unwrappable # failure in job https://hydra.nixos.org/build/252736153 at 2024-03-16 - - Monadius # failure in job https://hydra.nixos.org/build/234456746 at 2023-09-13 - monad-journal # failure in job https://hydra.nixos.org/build/252714543 at 2024-03-16 - 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 # failure in job https://hydra.nixos.org/build/252715531 at 2024-03-16 - - 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-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-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 - - Monadoro # failure in job https://hydra.nixos.org/build/295091036 at 2025-04-22 - 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-peel # failure in job https://hydra.nixos.org/build/252723606 at 2024-03-16 - monad-persist # failure in job https://hydra.nixos.org/build/233214035 at 2023-09-02 - monad-primitive # failure in job https://hydra.nixos.org/build/252713027 at 2024-03-16 - monad-products # failure in job https://hydra.nixos.org/build/252738477 at 2024-03-16 - - 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 - - monads-fd # failure in job https://hydra.nixos.org/build/252731103 at 2024-03-16 - 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 @@ -3988,23 +3972,42 @@ broken-packages: - 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 - - monadtransform # failure in job https://hydra.nixos.org/build/252727336 at 2024-03-16 - 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 + - monadacme # failure in job https://hydra.nixos.org/build/233218330 at 2023-09-02 + - MonadCatchIO-mtl # failure in job https://hydra.nixos.org/build/233228214 at 2023-09-02 + - MonadCatchIO-transformers # failure in job https://hydra.nixos.org/build/252729237 at 2024-03-16 + - MonadCatchIO-transformers-foreign # failure in job https://hydra.nixos.org/build/233251635 at 2023-09-02 + - MonadCompose # failure in job https://hydra.nixos.org/build/233204478 at 2023-09-02 + - monadcryptorandom # failure in job https://hydra.nixos.org/build/233235604 at 2023-09-02 + - monadic-arrays # failure in job https://hydra.nixos.org/build/252726939 at 2024-03-16 + - monadic-recursion-schemes # failure in job https://hydra.nixos.org/build/295095464 at 2025-04-22 + - monadiccp # failure in job https://hydra.nixos.org/build/233191794 at 2023-09-02 + - monadio-unwrappable # failure in job https://hydra.nixos.org/build/252736153 at 2024-03-16 + - Monadius # failure in job https://hydra.nixos.org/build/234456746 at 2023-09-13 + - monadLib-compose # failure in job https://hydra.nixos.org/build/233237652 at 2023-09-02 + - monadloc # failure in job https://hydra.nixos.org/build/252715531 at 2024-03-16 + - 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 + - Monadoro # failure in job https://hydra.nixos.org/build/295091036 at 2025-04-22 + - MonadRandomLazy # failure in job https://hydra.nixos.org/build/233247540 at 2023-09-02 + - monads-fd # failure in job https://hydra.nixos.org/build/252731103 at 2024-03-16 + - MonadStack # failure in job https://hydra.nixos.org/build/233239920 at 2023-09-02 + - monadtransform # failure in job https://hydra.nixos.org/build/252727336 at 2024-03-16 + - 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 + - monocypher # failure in job https://hydra.nixos.org/build/233195745 at 2023-09-02 - monoid # failure in job https://hydra.nixos.org/build/233252888 at 2023-09-02 + - monoid-absorbing # failure in job https://hydra.nixos.org/build/233236465 at 2023-09-02 + - monoid-owns # failure in job https://hydra.nixos.org/build/233259043 at 2023-09-02 - monoidmap # failure in job https://hydra.nixos.org/build/295095498 at 2025-04-22 - monoidmap-internal # failure in job https://hydra.nixos.org/build/295095513 at 2025-04-22 - - 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 @@ -4031,12 +4034,12 @@ broken-packages: - 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 # failure in job https://hydra.nixos.org/build/233237728 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 + - ms-graph-api # failure in job https://hydra.nixos.org/build/233219042 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 @@ -4049,18 +4052,19 @@ broken-packages: - mtp # failure in job https://hydra.nixos.org/build/233212895 at 2023-09-02 - mtree # failure in job https://hydra.nixos.org/build/252722593 at 2024-03-16 - mtsl # failure in job https://hydra.nixos.org/build/233207653 at 2023-09-02 + - mu-schema # failure in job https://hydra.nixos.org/build/233235916 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 + - mudbath # failure in job https://hydra.nixos.org/build/233198648 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 + - multi-instance # failure in job https://hydra.nixos.org/build/233203186 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 - MultiChor # failure in job https://hydra.nixos.org/build/295091050 at 2025-04-22 - multicurryable # failure in job https://hydra.nixos.org/build/252731222 at 2024-03-16 - multidir # failure in job https://hydra.nixos.org/build/295456419 at 2025-05-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 @@ -4073,29 +4077,29 @@ broken-packages: - 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 + - musicScroll # failure in job https://hydra.nixos.org/build/233197933 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 + - mustache2hs # failure in job https://hydra.nixos.org/build/233229095 at 2023-09-02 - mutable # failure in job https://hydra.nixos.org/build/233204639 at 2023-09-02 - mvar-lock # failure in job https://hydra.nixos.org/build/252735681 at 2024-03-16 - 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 + - my-package-testing # failure in job https://hydra.nixos.org/build/233201843 at 2023-09-02 + - my-test-docs # failure in job https://hydra.nixos.org/build/233191840 at 2023-09-02 - myanimelist-export # failure in job https://hydra.nixos.org/build/233255510 at 2023-09-02 - myers-diff # failure in job https://hydra.nixos.org/build/295095575 at 2025-04-22 - 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 - mysnapsession # failure in job https://hydra.nixos.org/build/252732102 at 2024-03-16 - mysql-effect # failure in job https://hydra.nixos.org/build/233248718 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 + - n-m # failure in job https://hydra.nixos.org/build/254311712 at 2024-03-31 - 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 @@ -4104,11 +4108,11 @@ broken-packages: - 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 - nano-md5 # failure in job https://hydra.nixos.org/build/233222265 at 2023-09-02 + - nanoAgda # failure in job https://hydra.nixos.org/build/233259294 at 2023-09-02 + - nanocurses # failure in job https://hydra.nixos.org/build/233215906 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 @@ -4119,9 +4123,9 @@ broken-packages: - 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 + - nat-sized-numbers # failure in job https://hydra.nixos.org/build/233244238 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 - NaturalLanguageAlphabets # failure in job https://hydra.nixos.org/build/245539294 at 2024-01-02 - NaturalSort # failure in job https://hydra.nixos.org/build/233213239 at 2023-09-02 @@ -4134,8 +4138,8 @@ broken-packages: - 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 + - neither-data # failure in job https://hydra.nixos.org/build/233201266 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 @@ -4143,16 +4147,16 @@ broken-packages: - neptune-backend # failure in job https://hydra.nixos.org/build/233214329 at 2023-09-02 - nerd-font-icons # failure in job https://hydra.nixos.org/build/295456454 at 2025-05-02 - nero # failure in job https://hydra.nixos.org/build/233216907 at 2023-09-02 + - nest # failure in job https://hydra.nixos.org/build/233224450 at 2023-09-02 + - nested-sequence # failure in job https://hydra.nixos.org/build/233221359 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 + - net-spider # failure in job https://hydra.nixos.org/build/295095612 at 2025-04-22 - 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 - - net-spider # failure in job https://hydra.nixos.org/build/295095612 at 2025-04-22 - netw # failure in job https://hydra.nixos.org/build/253678214 at 2024-03-31 - 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 @@ -4164,7 +4168,6 @@ broken-packages: - 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-manager-tui # failure in job https://hydra.nixos.org/build/233247972 at 2023-09-02 - network-messagepack-rpc-websocket # timeout - network-metrics # failure in job https://hydra.nixos.org/build/233259963 at 2023-09-02 @@ -4179,6 +4182,7 @@ broken-packages: - network-uri-json # failure in job https://hydra.nixos.org/build/295095653 at 2025-04-22 - 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 + - networked-game # failure in job https://hydra.nixos.org/build/233239577 at 2023-09-02 - neural # failure in job https://hydra.nixos.org/build/295095743 at 2025-04-22 - 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 @@ -4202,38 +4206,37 @@ broken-packages: - 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 + - nix-tools # failure in job https://hydra.nixos.org/build/233662959 at 2023-09-02 + - nixdu # failure in job https://hydra.nixos.org/build/233257712 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-tools # failure in job https://hydra.nixos.org/build/233662959 at 2023-09-02 - nkeys # failure in job https://hydra.nixos.org/build/255693929 at 2024-04-16 - nlp-scores # failure in job https://hydra.nixos.org/build/233232770 at 2023-09-02 + - nm # failure in job https://hydra.nixos.org/build/233258727 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 - - n-m # failure in job https://hydra.nixos.org/build/254311712 at 2024-03-31 - 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 + - no-role-annots # failure in job https://hydra.nixos.org/build/233229589 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 + - non-empty-zipper # failure in job https://hydra.nixos.org/build/233244341 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 - nonemptymap # failure in job https://hydra.nixos.org/build/252711949 at 2024-03-16 - - 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 + - not-prelude # failure in job https://hydra.nixos.org/build/233248453 at 2023-09-02 - notcpp # failure in job https://hydra.nixos.org/build/233216543 at 2023-09-02 - notifications-tray-icon # failure in job https://hydra.nixos.org/build/267969113 at 2024-07-31 - 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 @@ -4242,12 +4245,12 @@ broken-packages: - 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 - 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 + - nullary # failure in job https://hydra.nixos.org/build/233214073 at 2023-09-02 - nullpipe # failure in job https://hydra.nixos.org/build/233245129 at 2023-09-02 + - number-wall # failure in job https://hydra.nixos.org/build/233197764 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-logarithms # failure in job https://hydra.nixos.org/build/252727978 at 2024-03-16 - numeric-optimization-backprop # failure in job https://hydra.nixos.org/build/252733863 at 2024-03-16 - numeric-qq # failure in job https://hydra.nixos.org/build/233207127 at 2023-09-02 @@ -4259,16 +4262,16 @@ broken-packages: - numtype-tf # failure in job https://hydra.nixos.org/build/233243483 at 2023-09-02 - nurbs # failure in job https://hydra.nixos.org/build/295095756 at 2025-04-22 - Nutri # failure in job https://hydra.nixos.org/build/233244244 at 2023-09-02 - - NXTDSL # failure in job https://hydra.nixos.org/build/233193483 at 2023-09-02 - NXT # failure in job https://hydra.nixos.org/build/265955670 at 2024-07-14 + - NXTDSL # failure in job https://hydra.nixos.org/build/233193483 at 2023-09-02 - nyan-interpolation-core # failure in job https://hydra.nixos.org/build/295095752 at 2025-04-22 - nylas # failure in job https://hydra.nixos.org/build/233193540 at 2023-09-02 - oalg-base # failure in job https://hydra.nixos.org/build/295095765 at 2025-04-22 - 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 - - obd # failure in job https://hydra.nixos.org/build/265955660 at 2024-07-14 - ob # failure in job https://hydra.nixos.org/build/295095755 at 2025-04-22 + - obd # failure in job https://hydra.nixos.org/build/265955660 at 2024-07-14 - 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 @@ -4282,34 +4285,38 @@ broken-packages: - ogmarkup # failure in job https://hydra.nixos.org/build/233229980 at 2023-09-02 - ohhecs # failure in job https://hydra.nixos.org/build/267987310 at 2024-07-31 - ohloh-hs # failure in job https://hydra.nixos.org/build/233228177 at 2023-09-02 - - oidc-client # failure in job https://hydra.nixos.org/build/295095776 at 2025-04-22 - oi # failure in job https://hydra.nixos.org/build/233190838 at 2023-09-02 + - oidc-client # failure in job https://hydra.nixos.org/build/295095776 at 2025-04-22 - 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 - ollama-haskell # failure in job https://hydra.nixos.org/build/276371507 at 2024-11-06 - om-actor # failure in job https://hydra.nixos.org/build/233231027 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-plugin-imports # failure in job https://hydra.nixos.org/build/295456635 at 2025-05-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 - 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-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 - omnifmt # failure in job https://hydra.nixos.org/build/233219763 at 2023-09-02 - - om-plugin-imports # failure in job https://hydra.nixos.org/build/295456635 at 2025-05-02 - on-a-horse # failure in job https://hydra.nixos.org/build/233199193 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 + - ONC-RPC # failure in job https://hydra.nixos.org/build/233225207 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 - oops # failure in job https://hydra.nixos.org/build/252738443 at 2024-03-16 + - op # failure in job https://hydra.nixos.org/build/233201812 at 2023-09-02 - op2 # failure in job https://hydra.nixos.org/build/255683846 at 2024-04-16 - 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-textsearch # failure in job https://hydra.nixos.org/build/259602432 at 2024-05-15 - 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 + - open-haddock # failure in job https://hydra.nixos.org/build/233205112 at 2023-09-02 + - open-pandoc # failure in job https://hydra.nixos.org/build/233247973 at 2023-09-02 + - open-signals # failure in job https://hydra.nixos.org/build/233207409 at 2023-09-02 - OpenAFP # failure in job https://hydra.nixos.org/build/233249295 at 2023-09-02 - openai # failure in job https://hydra.nixos.org/build/295095863 at 2025-04-22 - openai-servant-gen # failure in job https://hydra.nixos.org/build/295095800 at 2025-04-22 @@ -4321,8 +4328,8 @@ broken-packages: - 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-extra # broken eval by missing system dependency - opencv # failure in job https://hydra.nixos.org/build/252717564 at 2024-03-16 + - opencv-extra # broken eval by missing system dependency - 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 - opendht-hs # failure in job https://hydra.nixos.org/build/295095820 at 2025-04-22 @@ -4330,12 +4337,9 @@ broken-packages: - 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 - openid # https://github.com/elliottt/hsopenid/issues/15 - - open-pandoc # failure in job https://hydra.nixos.org/build/233247973 at 2023-09-02 + - openid-connect # failure in job https://hydra.nixos.org/build/233196765 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 @@ -4348,7 +4352,6 @@ broken-packages: - operate-do # failure in job https://hydra.nixos.org/build/233257129 at 2023-09-02 - operational-class # failure in job https://hydra.nixos.org/build/252715658 at 2024-03-16 - 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 - opt-env-conf-test # failure in job https://hydra.nixos.org/build/295095834 at 2025-04-22 @@ -4363,18 +4366,18 @@ broken-packages: - optstream # failure in job https://hydra.nixos.org/build/233200326 at 2023-09-02 - opus # failure in job https://hydra.nixos.org/build/295095855 at 2025-04-22 - 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 + - OrchestrateDB # failure in job https://hydra.nixos.org/build/233200562 at 2023-09-02 - order-statistics # failure in job https://hydra.nixos.org/build/233255710 at 2023-09-02 + - ordered # failure in job https://hydra.nixos.org/build/233226269 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 + - org-mode # failure in job https://hydra.nixos.org/build/295095864 at 2025-04-22 + - org-parser # failure in job https://hydra.nixos.org/build/233223593 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 - - org-mode # failure in job https://hydra.nixos.org/build/295095864 at 2025-04-22 - 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 @@ -4387,8 +4390,8 @@ broken-packages: - 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 + - osm-conduit # failure in job https://hydra.nixos.org/build/233259898 at 2023-09-02 - oso2pdf # failure in job https://hydra.nixos.org/build/233235234 at 2023-09-02 - osv # failure in job https://hydra.nixos.org/build/295095872 at 2025-04-22 - osx-ar # failure in job https://hydra.nixos.org/build/233194090 at 2023-09-02 @@ -4399,34 +4402,34 @@ broken-packages: - 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 + - pa-field-parser # failure in job https://hydra.nixos.org/build/295095885 at 2025-04-22 + - pack # failure in job https://hydra.nixos.org/build/233243562 at 2023-09-02 - package-description-remote # failure in job https://hydra.nixos.org/build/233221358 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-dawg # failure in job https://hydra.nixos.org/build/233207332 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 - - pa-field-parser # failure in job https://hydra.nixos.org/build/295095885 at 2025-04-22 - pagarme # failure in job https://hydra.nixos.org/build/233201914 at 2023-09-02 - pagerduty # failure in job https://hydra.nixos.org/build/245788462 at 2024-01-07 - 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 + - pan-os-syslog # failure in job https://hydra.nixos.org/build/233244422 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-emphasize-code # failure in job https://hydra.nixos.org/build/252733347 at 2024-03-16 - 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-code # failure in job https://hydra.nixos.org/build/252710408 at 2024-03-16 - pandoc-include # failure in job https://hydra.nixos.org/build/233199152 at 2023-09-02 + - pandoc-include-code # failure in job https://hydra.nixos.org/build/252710408 at 2024-03-16 - 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 @@ -4440,11 +4443,11 @@ broken-packages: - pandoc-symreg # failure in job https://hydra.nixos.org/build/252726624 at 2024-03-16 - 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 + - PandocAgda # failure in job https://hydra.nixos.org/build/233332745 at 2023-09-02 - pandocz # failure in job https://hydra.nixos.org/build/269679598 at 2024-08-19 - 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 @@ -4452,8 +4455,8 @@ broken-packages: - 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-core # failure in job https://hydra.nixos.org/build/233212274 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 @@ -4475,22 +4478,22 @@ broken-packages: - 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 + - 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 - parsec-extra # failure in job https://hydra.nixos.org/build/252728153 at 2024-03-16 - parsec-free # failure in job https://hydra.nixos.org/build/252735408 at 2024-03-16 - 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 + - 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 - 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 + - parser241 # failure in job https://hydra.nixos.org/build/233238792 at 2023-09-02 + - parsergen # failure in job https://hydra.nixos.org/build/233197332 at 2023-09-02 + - parsers-megaparsec # failure in job https://hydra.nixos.org/build/233234736 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 @@ -4502,40 +4505,40 @@ broken-packages: - partly # failure in job https://hydra.nixos.org/build/233229003 at 2023-09-02 - paseto # failure in job https://hydra.nixos.org/build/275145626 at 2024-10-21 - 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 + - passman-core # failure in job https://hydra.nixos.org/build/233217997 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 + - pasta-curves # failure in job https://hydra.nixos.org/build/233196512 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 - - paths # failure in job https://hydra.nixos.org/build/252731256 at 2024-03-16 - path-sing # failure in job https://hydra.nixos.org/build/237234354 at 2023-10-21 - path-text-utf8 # failure in job https://hydra.nixos.org/build/295095981 at 2025-04-22 + - Pathfinder # failure in job https://hydra.nixos.org/build/233236573 at 2023-09-02 + - paths # failure in job https://hydra.nixos.org/build/252731256 at 2024-03-16 - 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 + - pbc4hs # failure in job https://hydra.nixos.org/build/233247062 at 2023-09-02 + - PBKDF2 # failure in job https://hydra.nixos.org/build/233201545 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 - pcf-font # failure in job https://hydra.nixos.org/build/295095992 at 2025-04-22 + - 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 - pcubature # failure in job https://hydra.nixos.org/build/253698476 at 2024-03-31 - - 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 + - pdfinfo # failure in job https://hydra.nixos.org/build/233214432 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 @@ -4548,14 +4551,16 @@ broken-packages: - 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 + - PerfectHash # failure in job https://hydra.nixos.org/build/233252581 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-common # failure in job https://hydra.nixos.org/build/233224868 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 + - 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 - 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 @@ -4575,23 +4580,21 @@ broken-packages: - 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 - persistent-vector # failure in job https://hydra.nixos.org/build/252721689 at 2024-03-16 - - 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 - - pgp-wordlist # failure in job https://hydra.nixos.org/build/252723543 at 2024-03-16 - pg-query # failure in job https://hydra.nixos.org/build/283202281 at 2024-12-31 - 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 + - pgdl # failure in job https://hydra.nixos.org/build/233203790 at 2023-09-02 + - pgf2 # failure in job https://hydra.nixos.org/build/233234332 at 2023-09-02 + - pgp-wordlist # failure in job https://hydra.nixos.org/build/252723543 at 2024-03-16 + - pgsql-simple # failure in job https://hydra.nixos.org/build/233228421 at 2023-09-02 + - pgstream # failure in job https://hydra.nixos.org/build/233201596 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 @@ -4613,8 +4616,11 @@ broken-packages: - photoname # failure in job https://hydra.nixos.org/build/252736965 at 2024-03-16 - 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 + - pi-forall # failure in job https://hydra.nixos.org/build/233247486 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 + - pia-forward # failure in job https://hydra.nixos.org/build/233219067 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 @@ -4625,16 +4631,13 @@ broken-packages: - pidfile # failure in job https://hydra.nixos.org/build/252735609 at 2024-03-16 - 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 # failure in job https://hydra.nixos.org/build/295096082 at 2025-04-22 - 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 - - piped # failure in job https://hydra.nixos.org/build/252729903 at 2024-03-16 - Pipe # failure in job https://hydra.nixos.org/build/233243604 at 2023-09-02 + - piped # failure in job https://hydra.nixos.org/build/252729903 at 2024-03-16 - 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 @@ -4660,17 +4663,18 @@ broken-packages: - 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 + - pixel-printer # failure in job https://hydra.nixos.org/build/233238475 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 + - pl-synth # failure in job https://hydra.nixos.org/build/295096103 at 2025-04-22 - 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 + - planar-graph # failure in job https://hydra.nixos.org/build/233217108 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 @@ -4679,34 +4683,33 @@ broken-packages: - PlayingCards # failure in job https://hydra.nixos.org/build/233239100 at 2023-09-02 - playlists-http # failure in job https://hydra.nixos.org/build/295096180 at 2025-04-22 - plegg # failure in job https://hydra.nixos.org/build/255679256 at 2024-04-16 - - 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 + - plist-buddy # failure in job https://hydra.nixos.org/build/233199181 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-gtk3 # failure in job https://hydra.nixos.org/build/233202048 at 2023-09-02 - plot-lab # failure in job https://hydra.nixos.org/build/233242283 at 2023-09-02 + - ploterific # failure in job https://hydra.nixos.org/build/233228102 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 - plow-log # failure in job https://hydra.nixos.org/build/252717614 at 2024-03-16 - - pl-synth # failure in job https://hydra.nixos.org/build/295096103 at 2025-04-22 + - plow-log-async # failure in job https://hydra.nixos.org/build/233201736 at 2023-09-02 - plucky # failure in job https://hydra.nixos.org/build/252718793 at 2024-03-16 - 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 + - plural # failure in job https://hydra.nixos.org/build/233198934 at 2023-09-02 - ply-loader # failure in job https://hydra.nixos.org/build/252720663 at 2024-03-16 - 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 + - point-octree # failure in job https://hydra.nixos.org/build/295096122 at 2025-04-22 - 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 - - point-octree # failure in job https://hydra.nixos.org/build/295096122 at 2025-04-22 - poke # failure in job https://hydra.nixos.org/build/295096146 at 2025-04-22 - 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 @@ -4717,10 +4720,10 @@ broken-packages: - 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 # failure in job https://hydra.nixos.org/build/233255655 at 2023-09-02 - 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 @@ -4744,9 +4747,9 @@ broken-packages: - 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-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 + - pool-conduit # failure in job https://hydra.nixos.org/build/233246643 at 2023-09-02 + - poolboy # failure in job https://hydra.nixos.org/build/233195085 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 @@ -4764,10 +4767,11 @@ broken-packages: - postcodes # failure in job https://hydra.nixos.org/build/233247290 at 2023-09-02 - postgis-trivial # failure in job https://hydra.nixos.org/build/295096168 at 2025-04-22 - postgres-embedded # failure in job https://hydra.nixos.org/build/233246098 at 2023-09-02 + - postgres-tmp # failure in job https://hydra.nixos.org/build/233258685 at 2023-09-02 + - PostgreSQL # failure in job https://hydra.nixos.org/build/233258066 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 @@ -4784,7 +4788,6 @@ broken-packages: - 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 - 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 @@ -4825,18 +4828,17 @@ broken-packages: - pretty-html # failure in job https://hydra.nixos.org/build/295096226 at 2025-04-22 - 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 + - pretty-types # failure in job https://hydra.nixos.org/build/252727063 at 2024-03-16 - prettyprint-avh4 # failure in job https://hydra.nixos.org/build/295096246 at 2025-04-22 - prettyprinter-convert-ansi-wl-pprint # failure in job https://hydra.nixos.org/build/252718603 at 2024-03-16 - prettyprinter-vty # failure in job https://hydra.nixos.org/build/233251729 at 2023-09-02 - - pretty-types # failure in job https://hydra.nixos.org/build/252727063 at 2024-03-16 - - primal # failure in job https://hydra.nixos.org/build/233260049 at 2023-09-02 + - prim # failure in job https://hydra.nixos.org/build/233215988 at 2023-09-02 - prim-array # failure in job https://hydra.nixos.org/build/233220574 at 2023-09-02 + - prim-instances # failure in job https://hydra.nixos.org/build/233215690 at 2023-09-02 + - prim-ref # failure in job https://hydra.nixos.org/build/233226138 at 2023-09-02 + - primal # failure in job https://hydra.nixos.org/build/233260049 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-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 @@ -4846,36 +4848,38 @@ broken-packages: - 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-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 + - 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 - 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 + - printcess # failure in job https://hydra.nixos.org/build/233212768 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 + - PriorityChansConverger # failure in job https://hydra.nixos.org/build/233217782 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 + - pro-source # failure in job https://hydra.nixos.org/build/233226793 at 2023-09-02 - prob-fx # failure in job https://hydra.nixos.org/build/233239940 at 2023-09-02 + - probable # failure in job https://hydra.nixos.org/build/233243771 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 + - processing # failure in job https://hydra.nixos.org/build/233232969 at 2023-09-02 + - processmemory # failure in job https://hydra.nixos.org/build/233217444 at 2023-09-02 - procex # failure in job https://hydra.nixos.org/build/295096282 at 2025-04-22 - 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 - prodapi-proxy # failure in job https://hydra.nixos.org/build/295096290 at 2025-04-22 - prodapi-userauth # failure in job https://hydra.nixos.org/build/295096314 at 2025-04-22 - - 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 + - prof2pretty # failure in job https://hydra.nixos.org/build/233240665 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 + - 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 - 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 @@ -4894,16 +4898,15 @@ broken-packages: - 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 - 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 - proteaaudio-sdl # failure in job https://hydra.nixos.org/build/295096350 at 2025-04-22 - - 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-combinators # failure in job https://hydra.nixos.org/build/252726979 at 2024-03-16 - proto-lens-etcd # failure in job https://hydra.nixos.org/build/295096320 at 2025-04-22 - proto-lens-jsonpb # failure in job https://hydra.nixos.org/build/295096317 at 2025-04-22 + - protocol # failure in job https://hydra.nixos.org/build/233224436 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 - 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 @@ -4933,17 +4936,17 @@ broken-packages: - 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 + - pure-zlib # failure in job https://hydra.nixos.org/build/233241392 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 - purescript-tsd-gen # failure in job https://hydra.nixos.org/build/267964841 at 2024-07-31 - - 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 + - push-notifications # failure in job https://hydra.nixos.org/build/233199364 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 - pushover # failure in job https://hydra.nixos.org/build/252739908 at 2024-03-16 - 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 @@ -4962,9 +4965,9 @@ broken-packages: - 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 - qm-interpolated-string # failure in job https://hydra.nixos.org/build/295096370 at 2025-04-22 - - qrcode-core # failure in job https://hydra.nixos.org/build/295096377 at 2025-04-22 - - 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 + - qrcode # failure in job https://hydra.nixos.org/build/233225438 at 2023-09-02 + - qrcode-core # failure in job https://hydra.nixos.org/build/295096377 at 2025-04-22 - qsem # failure in job https://hydra.nixos.org/build/295096373 at 2025-04-22 - 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 @@ -4981,6 +4984,7 @@ broken-packages: - 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/295457190 at 2025-05-02 + - quick-schema # failure in job https://hydra.nixos.org/build/233256519 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 @@ -4991,12 +4995,11 @@ broken-packages: - 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 - quickcheck-state-machine-distributed # failure in job https://hydra.nixos.org/build/295096422 at 2025-04-22 - - 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 + - QuickCheckVariant # failure in job https://hydra.nixos.org/build/233239276 at 2023-09-02 - quickjs-hs # failure in job https://hydra.nixos.org/build/233248440 at 2023-09-02 - QuickPlot # failure in job https://hydra.nixos.org/build/252731670 at 2024-03-16 - 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 @@ -5006,6 +5009,8 @@ broken-packages: - 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 + - r-glpk-phonetic-languages-ukrainian-durations # failure in job https://hydra.nixos.org/build/253703155 at 2024-03-31 + - R-pandoc # failure in job https://hydra.nixos.org/build/233192114 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 @@ -5018,17 +5023,17 @@ broken-packages: - 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 + - rand-vars # failure in job https://hydra.nixos.org/build/233219255 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 - 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-fu-multivariate # failure in job https://hydra.nixos.org/build/252715951 at 2024-03-16 - 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 + - Randometer # failure in job https://hydra.nixos.org/build/233231023 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 - rank-product # failure in job https://hydra.nixos.org/build/233239589 at 2023-09-02 @@ -5047,30 +5052,30 @@ broken-packages: - react # failure in job https://hydra.nixos.org/build/257372364 at 2024-04-27 - 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 + - react-tutorial-haskell-server # failure in job https://hydra.nixos.org/build/233201256 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-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 + - readability # failure in job https://hydra.nixos.org/build/233205178 at 2023-09-02 + - reader-soup # failure in job https://hydra.nixos.org/build/233198810 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 + - reasonable-lens # failure in job https://hydra.nixos.org/build/233233111 at 2023-09-02 + - rec-smallarray # failure in job https://hydra.nixos.org/build/233258592 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 + - record-encode # failure in job https://hydra.nixos.org/build/233216156 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 + - records # failure in job https://hydra.nixos.org/build/233254822 at 2023-09-02 - recursive-line-count # failure in job https://hydra.nixos.org/build/252736942 at 2024-03-16 - recursors # failure in job https://hydra.nixos.org/build/233234451 at 2023-09-02 - redis-hs # failure in job https://hydra.nixos.org/build/233191943 at 2023-09-02 @@ -5079,15 +5084,16 @@ broken-packages: - reduce-equations # failure in job https://hydra.nixos.org/build/270034373 at 2024-08-19 - 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 + - 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 + - ref-extras # failure in job https://hydra.nixos.org/build/233255903 at 2023-09-02 + - ref-mtl # failure in job https://hydra.nixos.org/build/233260152 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 - - refined1 # failure in job https://hydra.nixos.org/build/295096553 at 2025-04-22 - 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 + - refined1 # failure in job https://hydra.nixos.org/build/295096553 at 2025-04-22 - refinery # failure in job https://hydra.nixos.org/build/252717003 at 2024-03-16 - 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 @@ -5105,24 +5111,19 @@ broken-packages: - reflex-orphans # failure in job https://hydra.nixos.org/build/233249128 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/295096544 at 2025-04-22 - - 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 # failure in job https://hydra.nixos.org/build/252717808 at 2024-03-16 - 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 + - reformat # failure in job https://hydra.nixos.org/build/233212381 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-pcre2 # failure in job https://hydra.nixos.org/build/295096563 at 2025-04-22 - regex-posix-unittest # failure in job https://hydra.nixos.org/build/233249685 at 2023-09-02 - - regexpr # failure in job https://hydra.nixos.org/build/252711170 at 2024-03-16 - - 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 @@ -5131,6 +5132,10 @@ broken-packages: - 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 + - regexdot # failure in job https://hydra.nixos.org/build/233217389 at 2023-09-02 + - regexpr # failure in job https://hydra.nixos.org/build/252711170 at 2024-03-16 + - 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 - 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-options # failure in job https://hydra.nixos.org/build/295096594 at 2025-04-22 @@ -5141,16 +5146,16 @@ broken-packages: - 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 - relational-postgresql8 # failure in job https://hydra.nixos.org/build/295096600 at 2025-04-22 - relational-query-postgresql-pure # failure in job https://hydra.nixos.org/build/296063076 at 2025-05-02 - - relation # failure in job https://hydra.nixos.org/build/233244581 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 - relocant # failure in job https://hydra.nixos.org/build/295096588 at 2025-04-22 - 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-debugger # failure in job https://hydra.nixos.org/build/233199491 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 - repa-bytestring # failure in job https://hydra.nixos.org/build/252723812 at 2024-03-16 @@ -5159,22 +5164,22 @@ broken-packages: - repa-linear-algebra # failure in job https://hydra.nixos.org/build/252713634 at 2024-03-16 - repa-series # failure in job https://hydra.nixos.org/build/233200085 at 2023-09-02 - repa-stream # failure in job https://hydra.nixos.org/build/283561119 at 2024-12-31 - - 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 + - repl-toolkit # failure in job https://hydra.nixos.org/build/233246536 at 2023-09-02 + - ReplaceUmlaut # failure in job https://hydra.nixos.org/build/233228662 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 - - reqcatcher # failure in job https://hydra.nixos.org/build/295096611 at 2025-04-22 - req-conduit # failure in job https://hydra.nixos.org/build/233248395 at 2023-09-02 + - req-url-extra # failure in job https://hydra.nixos.org/build/233198488 at 2023-09-02 + - reqcatcher # failure in job https://hydra.nixos.org/build/295096611 at 2025-04-22 - 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 - requirements # failure in job https://hydra.nixos.org/build/252711740 at 2024-03-16 - - req-url-extra # failure in job https://hydra.nixos.org/build/233198488 at 2023-09-02 - rere # failure in job https://hydra.nixos.org/build/295096658 at 2025-04-22 - 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 @@ -5190,8 +5195,8 @@ broken-packages: - 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 + - rethinkdb-client-driver # failure in job https://hydra.nixos.org/build/233216583 at 2023-09-02 - retroclash-lib # failure in job https://hydra.nixos.org/build/295096644 at 2025-04-22 - retry-effectful # failure in job https://hydra.nixos.org/build/295096646 at 2025-04-22 - retryer # failure in job https://hydra.nixos.org/build/233193427 at 2023-09-02 @@ -5202,12 +5207,11 @@ broken-packages: - 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 - - r-glpk-phonetic-languages-ukrainian-durations # failure in job https://hydra.nixos.org/build/253703155 at 2024-03-31 - rhbzquery # failure in job https://hydra.nixos.org/build/233259706 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 + - ribbit # failure in job https://hydra.nixos.org/build/233191000 at 2023-09-02 - RichConditional # failure in job https://hydra.nixos.org/build/233218626 at 2023-09-02 - ridley # failure in job https://hydra.nixos.org/build/295096653 at 2025-04-22 - riemann # failure in job https://hydra.nixos.org/build/233207899 at 2023-09-02 @@ -5223,11 +5227,11 @@ broken-packages: - 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 + - rl-satton # failure in job https://hydra.nixos.org/build/233256608 at 2023-09-02 - Rlang-QQ # failure in job https://hydra.nixos.org/build/295091095 at 2025-04-22 - 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 @@ -5240,9 +5244,9 @@ broken-packages: - ron # failure in job https://hydra.nixos.org/build/233197052 at 2023-09-02 - ron-hs # failure in job https://hydra.nixos.org/build/295096708 at 2025-04-22 - 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 - rose # failure in job https://hydra.nixos.org/build/252717613 at 2024-03-16 - rose-trees # timeout + - 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 @@ -5250,10 +5254,9 @@ broken-packages: - 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 + - rpmbuild-order # failure in job https://hydra.nixos.org/build/233257209 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 - rsi-break # failure in job https://hydra.nixos.org/build/245788743 at 2024-01-07 @@ -5276,25 +5279,25 @@ broken-packages: - 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 - - rzk # failure in job https://hydra.nixos.org/build/252726148 at 2024-03-16 - rz-pipe # failure in job https://hydra.nixos.org/build/233228273 at 2023-09-02 + - rzk # failure in job https://hydra.nixos.org/build/252726148 at 2024-03-16 - SableCC2Hs # failure in job https://hydra.nixos.org/build/233213351 at 2023-09-02 - safe-access # failure in job https://hydra.nixos.org/build/252736917 at 2024-03-16 - 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 - - 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-exceptions-checked # failure in job https://hydra.nixos.org/build/252717135 at 2024-03-16 - 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 - 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 + - 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 + - safeint # failure in job https://hydra.nixos.org/build/233257369 at 2023-09-02 + - safepath # failure in job https://hydra.nixos.org/build/233235468 at 2023-09-02 + - saferoute # failure in job https://hydra.nixos.org/build/233254085 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 @@ -5305,9 +5308,9 @@ broken-packages: - sandwatch # failure in job https://hydra.nixos.org/build/295096742 at 2025-04-22 - sandwich-contexts # failure in job https://hydra.nixos.org/build/282178661 at 2024-12-23 - sarasvati # failure in job https://hydra.nixos.org/build/233208235 at 2023-09-02 + - sat # failure in job https://hydra.nixos.org/build/233225713 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 @@ -5323,9 +5326,9 @@ broken-packages: - 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 + - sci-ratio # failure in job https://hydra.nixos.org/build/233258475 at 2023-09-02 - scidb-hquery # failure in job https://hydra.nixos.org/build/233257053 at 2023-09-02 - SciFlow # failure in job https://hydra.nixos.org/build/295091174 at 2025-04-22 - - 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 @@ -5336,7 +5339,6 @@ broken-packages: - 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-utils # failure in job https://hydra.nixos.org/build/252727834 at 2024-03-16 - 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 @@ -5359,24 +5361,23 @@ broken-packages: - 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 - search # failure in job https://hydra.nixos.org/build/252723014 at 2024-03-16 + - sec # failure in job https://hydra.nixos.org/build/233233150 at 2023-09-02 - secd # failure in job https://hydra.nixos.org/build/252725214 at 2024-03-16 - 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 + - SecureHash-SHA3 # failure in job https://hydra.nixos.org/build/233216866 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 + - sel # failure in job https://hydra.nixos.org/build/255671988 at 2024-04-16 - selda-postgresql # failure in job https://hydra.nixos.org/build/245539286 at 2024-01-02 - - selda-sqlite # failure in job https://hydra.nixos.org/build/295096791 at 2025-04-22 - 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 - - sel # failure in job https://hydra.nixos.org/build/255671988 at 2024-04-16 - 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 - semdoc # failure in job https://hydra.nixos.org/build/233258790 at 2023-09-02 @@ -5408,8 +5409,8 @@ broken-packages: - 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-cassava # failure in job https://hydra.nixos.org/build/252730906 at 2024-03-16 - - 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-client-js # failure in job https://hydra.nixos.org/build/233194725 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 @@ -5447,8 +5448,6 @@ broken-packages: - 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-subscriber # failure in job https://hydra.nixos.org/build/295096905 at 2025-04-22 - - servant-swagger-ui-jensoleg # failure in job https://hydra.nixos.org/build/295096896 at 2025-04-22 - - servant-swagger-ui-redoc # failure in job https://hydra.nixos.org/build/295096893 at 2025-04-22 - servant-to-elm # failure in job https://hydra.nixos.org/build/253681347 at 2024-03-31 - servant-tracing # failure in job https://hydra.nixos.org/build/233229308 at 2023-09-02 - servant-typed-error # failure in job https://hydra.nixos.org/build/252727241 at 2024-03-16 @@ -5468,24 +5467,25 @@ broken-packages: - 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 + - set-of # failure in job https://hydra.nixos.org/build/233202960 at 2023-09-02 + - set-with # failure in job https://hydra.nixos.org/build/233209870 at 2023-09-02 - setdown # failure in job https://hydra.nixos.org/build/241521053 at 2023-12-03 - 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 - sets # failure in job https://hydra.nixos.org/build/252722613 at 2024-03-16 - 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 - - sexpresso # failure in job https://hydra.nixos.org/build/252739111 at 2024-03-16 - sexpr-parser # failure in job https://hydra.nixos.org/build/233208359 at 2023-09-02 + - sexpresso # failure in job https://hydra.nixos.org/build/252739111 at 2024-03-16 - 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 + - sfml-audio # failure in job https://hydra.nixos.org/build/233253560 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 + - sgd # failure in job https://hydra.nixos.org/build/233240302 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 + - sha-streams # failure in job https://hydra.nixos.org/build/233257983 at 2023-09-02 - sha1 # failure in job https://hydra.nixos.org/build/295096920 at 2025-04-22 - 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 @@ -5502,12 +5502,11 @@ broken-packages: - shapes # failure in job https://hydra.nixos.org/build/252736910 at 2024-03-16 - 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 + - shell-pipe # failure in job https://hydra.nixos.org/build/233226605 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 - shentong # failure in job https://hydra.nixos.org/build/252711957 at 2024-03-16 - 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 @@ -5520,11 +5519,12 @@ broken-packages: - 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 # failure in job https://hydra.nixos.org/build/257372361 at 2024-04-27 - 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 # failure in job https://hydra.nixos.org/build/257372361 at 2024-04-27 - 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 + - si-timers # failure in job https://hydra.nixos.org/build/273467737 at 2024-10-01 - 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 @@ -5536,58 +5536,56 @@ broken-packages: - 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-enumeration # failure in job https://hydra.nixos.org/build/295096986 at 2025-04-22 - 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 - - simplessh # failure in job https://hydra.nixos.org/build/252738958 at 2024-03-16 - 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 + - simple-zipper # failure in job https://hydra.nixos.org/build/233210316 at 2023-09-02 + - simpleargs # failure in job https://hydra.nixos.org/build/233202182 at 2023-09-02 + - simpleconfig # failure in job https://hydra.nixos.org/build/233195905 at 2023-09-02 + - SimpleH # failure in job https://hydra.nixos.org/build/233212326 at 2023-09-02 + - simpleirc # failure in job https://hydra.nixos.org/build/233211073 at 2023-09-02 + - simplenote # failure in job https://hydra.nixos.org/build/233225953 at 2023-09-02 + - simpleprelude # failure in job https://hydra.nixos.org/build/233259585 at 2023-09-02 + - simplesmtpclient # failure in job https://hydra.nixos.org/build/233235261 at 2023-09-02 + - simplessh # failure in job https://hydra.nixos.org/build/252738958 at 2024-03-16 + - simplest-sqlite # failure in job https://hydra.nixos.org/build/233248487 at 2023-09-02 - simplex # failure in job https://hydra.nixos.org/build/252731268 at 2024-03-16 - simplex-method # failure in job https://hydra.nixos.org/build/295097008 at 2025-04-22 - 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 - sindre # horribly outdated (X11 interface changed a lot) - 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 - - singletons-base-code-generator # failure in job https://hydra.nixos.org/build/295097021 at 2025-04-22 - singleton-typelits # failure in job https://hydra.nixos.org/build/233250877 at 2023-09-02 + - singletons-base-code-generator # failure in job https://hydra.nixos.org/build/295097021 at 2025-04-22 - 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 - - si-timers # failure in job https://hydra.nixos.org/build/273467737 at 2024-10-01 - sixfiguregroup # failure in job https://hydra.nixos.org/build/233252141 at 2023-09-02 - sixty-five-oh-two # failure in job https://hydra.nixos.org/build/252714578 at 2024-03-16 - sized-grid # failure in job https://hydra.nixos.org/build/233239056 at 2023-09-02 @@ -5605,8 +5603,8 @@ broken-packages: - 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-api # failure in job https://hydra.nixos.org/build/233215701 at 2023-09-02 - slack-notify-haskell # failure in job https://hydra.nixos.org/build/233249025 at 2023-09-02 - slack-progressbar # failure in job https://hydra.nixos.org/build/252722423 at 2024-03-16 - slack-verify # failure in job https://hydra.nixos.org/build/233206026 at 2023-09-02 @@ -5615,8 +5613,8 @@ broken-packages: - 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 + - sloth # failure in job https://hydra.nixos.org/build/233203718 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 @@ -5637,16 +5635,16 @@ broken-packages: - 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 - - smtlib-backends-tests # failure in job https://hydra.nixos.org/build/295097081 at 2025-04-22 - 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 + - smtlib-backends-process # failure in job https://hydra.nixos.org/build/233209223 at 2023-09-02 + - smtlib-backends-tests # failure in job https://hydra.nixos.org/build/295097081 at 2025-04-22 + - smtlib2 # failure in job https://hydra.nixos.org/build/233251831 at 2023-09-02 - smtp-mail-ng # failure in job https://hydra.nixos.org/build/233220094 at 2023-09-02 + - SMTPClient # failure in job https://hydra.nixos.org/build/233247599 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 + - smuggler2 # failure in job https://hydra.nixos.org/build/233233932 at 2023-09-02 - snail # failure in job https://hydra.nixos.org/build/252731890 at 2024-03-16 - 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 @@ -5655,6 +5653,12 @@ broken-packages: - snap-configuration-utilities # failure in job https://hydra.nixos.org/build/233202496 at 2023-09-02 - snap-error-collector # failure in job https://hydra.nixos.org/build/252722251 at 2024-03-16 - 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 + - snap-routes # failure in job https://hydra.nixos.org/build/252718562 at 2024-03-16 + - snap-stream # failure in job https://hydra.nixos.org/build/233237969 at 2023-09-02 + - snap-testing # failure in job https://hydra.nixos.org/build/252736070 at 2024-03-16 + - snap-web-routes # failure in job https://hydra.nixos.org/build/295097108 at 2025-04-22 - snaplet-acid-state # failure in job https://hydra.nixos.org/build/252733993 at 2024-03-16 - snaplet-amqp # failure in job https://hydra.nixos.org/build/252722868 at 2024-03-16 - snaplet-coffee # failure in job https://hydra.nixos.org/build/252712879 at 2024-03-16 @@ -5673,13 +5677,7 @@ broken-packages: - snaplet-ses-html # failure in job https://hydra.nixos.org/build/252718019 at 2024-03-16 - snaplet-sqlite-simple # failure in job https://hydra.nixos.org/build/252738602 at 2024-03-16 - snaplet-typed-sessions # failure in job https://hydra.nixos.org/build/252724459 at 2024-03-16 - - 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-routes # failure in job https://hydra.nixos.org/build/252718562 at 2024-03-16 - - snap-stream # failure in job https://hydra.nixos.org/build/233237969 at 2023-09-02 - - snap-testing # failure in job https://hydra.nixos.org/build/252736070 at 2024-03-16 - - snap-web-routes # failure in job https://hydra.nixos.org/build/295097108 at 2025-04-22 - snelstart-import # failure in job https://hydra.nixos.org/build/295097114 at 2025-04-22 - 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 @@ -5688,9 +5686,9 @@ broken-packages: - snowtify # failure in job https://hydra.nixos.org/build/233215099 at 2023-09-02 - soap # failure in job https://hydra.nixos.org/build/295097136 at 2025-04-22 - socket-activation # failure in job https://hydra.nixos.org/build/233258011 at 2023-09-02 + - socket-sctp # failure in job https://hydra.nixos.org/build/233228125 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 - sockets # failure in job https://hydra.nixos.org/build/295097095 at 2025-04-22 - 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 @@ -5712,13 +5710,13 @@ broken-packages: - 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 + - spars # failure in job https://hydra.nixos.org/build/233221560 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 + - sparsecheck # failure in job https://hydra.nixos.org/build/233253454 at 2023-09-02 - SpatialMath # failure in job https://hydra.nixos.org/build/237243985 at 2023-10-21 - 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 @@ -5726,8 +5724,8 @@ broken-packages: - speculation # failure in job https://hydra.nixos.org/build/233211559 at 2023-09-02 - sphinx-cli # failure in job https://hydra.nixos.org/build/295097187 at 2025-04-22 - sphinxesc # failure in job https://hydra.nixos.org/build/233194825 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 + - spiros # failure in job https://hydra.nixos.org/build/233249615 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 @@ -5741,44 +5739,36 @@ broken-packages: - 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 - - sproxy2 # failure in job https://hydra.nixos.org/build/295097173 at 2025-04-22 - sproxy-web # failure in job https://hydra.nixos.org/build/295097178 at 2025-04-22 + - sproxy2 # failure in job https://hydra.nixos.org/build/295097173 at 2025-04-22 - 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 + - sql-simple # failure in job https://hydra.nixos.org/build/233252834 at 2023-09-02 - sqlcipher # failure in job https://hydra.nixos.org/build/233259217 at 2023-09-02 - sqlcli # failure in job https://hydra.nixos.org/build/252719841 at 2024-03-16 - - sqlite-easy # failure in job https://hydra.nixos.org/build/252728831 at 2024-03-16 - sqlite # failure in job https://hydra.nixos.org/build/233215839 at 2023-09-02 + - sqlite-easy # failure in job https://hydra.nixos.org/build/252728831 at 2024-03-16 - 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 - sqsd-local # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237237046 at 2023-10-21 - 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 - srt # failure in job https://hydra.nixos.org/build/295097165 at 2025-04-22 + - srt-attoparsec # failure in job https://hydra.nixos.org/build/233248456 at 2023-09-02 - srv # failure in job https://hydra.nixos.org/build/252734755 at 2024-03-16 - 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 - - sshtun # failure in job https://hydra.nixos.org/build/252729199 at 2024-03-16 - ssh-tunnel # failure in job https://hydra.nixos.org/build/233245203 at 2023-09-02 + - sshtun # failure in job https://hydra.nixos.org/build/252729199 at 2024-03-16 - 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-heap # failure in job https://hydra.nixos.org/build/295097179 at 2025-04-22 - stable-maps # failure in job https://hydra.nixos.org/build/233229084 at 2023-09-02 - stable-marriage # failure in job https://hydra.nixos.org/build/295097172 at 2025-04-22 - stable-memo # failure in job https://hydra.nixos.org/build/295097174 at 2025-04-22 - - 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-curator # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237229157 at 2023-10-21 - - 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 # failure in job https://hydra.nixos.org/build/295091136 at 2025-04-22 + - stack-bump # failure in job https://hydra.nixos.org/build/233257783 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 @@ -5786,6 +5776,14 @@ broken-packages: - stack-tag # failure in job https://hydra.nixos.org/build/252737306 at 2024-03-16 - 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 + - 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-curator # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237229157 at 2023-10-21 + - 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 + - stackcollapse-ghc # failure in job https://hydra.nixos.org/build/233250775 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 @@ -5794,20 +5792,20 @@ broken-packages: - starter-snake-haskell # failure in job https://hydra.nixos.org/build/236685019 at 2023-10-04 - 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-bag # failure in job https://hydra.nixos.org/build/233222753 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-canvas # failure in job https://hydra.nixos.org/build/295097206 at 2025-04-22 - static # failure in job https://hydra.nixos.org/build/233217136 at 2023-09-02 + - static-canvas # failure in job https://hydra.nixos.org/build/295097206 at 2025-04-22 - static-ls # failure in job https://hydra.nixos.org/build/233199876 at 2023-09-02 - static-resources # failure in job https://hydra.nixos.org/build/252724891 at 2024-03-16 - 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 + - statsd # failure in job https://hydra.nixos.org/build/233235428 at 2023-09-02 - statvfs # failure in job https://hydra.nixos.org/build/233220845 at 2023-09-02 - staversion # failure in job https://hydra.nixos.org/build/252719926 at 2024-03-16 - stb-image-redux # failure in job https://hydra.nixos.org/build/233202153 at 2023-09-02 @@ -5836,15 +5834,17 @@ broken-packages: - 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 + - str # failure in job https://hydra.nixos.org/build/233227698 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 + - stream-monad # failure in job https://hydra.nixos.org/build/233222592 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 - 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 @@ -5865,30 +5865,28 @@ broken-packages: - streamly-posix # failure in job https://hydra.nixos.org/build/233194023 at 2023-09-02 - streamly-statistics # failure in job https://hydra.nixos.org/build/252719066 at 2024-03-16 - streamly-zip # failure in job https://hydra.nixos.org/build/295097269 at 2025-04-22 - - 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 - streamt # failure in job https://hydra.nixos.org/build/252724093 at 2024-03-16 - 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-ghc-plugin # failure in job https://hydra.nixos.org/build/233246830 at 2023-09-02 - strict-impl-params # failure in job https://hydra.nixos.org/build/252732248 at 2024-03-16 - strict-io # failure in job https://hydra.nixos.org/build/295097302 at 2025-04-22 - - strictly # failure in job https://hydra.nixos.org/build/233197142 at 2023-09-02 - strict-mvar # failure in job https://hydra.nixos.org/build/273459853 at 2024-10-01 - strict-stm # failure in job https://hydra.nixos.org/build/273449297 at 2024-10-01 - strict-tuple-lens # failure in job https://hydra.nixos.org/build/233194548 at 2023-09-02 - strict-writer # failure in job https://hydra.nixos.org/build/252725649 at 2024-03-16 + - 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 + - strictly # failure in job https://hydra.nixos.org/build/233197142 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-interpreter # failure in job https://hydra.nixos.org/build/252739490 at 2024-03-16 - 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 + - stringlike # failure in job https://hydra.nixos.org/build/233258750 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-core # failure in job https://hydra.nixos.org/build/233215702 at 2023-09-02 - stripe-hs # failure in job https://hydra.nixos.org/build/233203500 at 2023-09-02 - stripe-scotty # failure in job https://hydra.nixos.org/build/252711778 at 2024-03-16 - stripe-wreq # failure in job https://hydra.nixos.org/build/295097337 at 2025-04-22 @@ -5903,11 +5901,11 @@ broken-packages: - 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 - styx # failure in job https://hydra.nixos.org/build/252713087 at 2024-03-16 + - sub-state # failure in job https://hydra.nixos.org/build/233202687 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 - success # failure in job https://hydra.nixos.org/build/252718360 at 2024-03-16 - successors # failure in job https://hydra.nixos.org/build/295097331 at 2025-04-22 @@ -5918,25 +5916,25 @@ broken-packages: - 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 + - sum-type-boilerplate # failure in job https://hydra.nixos.org/build/233251040 at 2023-09-02 - summer # failure in job https://hydra.nixos.org/build/252728622 at 2024-03-16 - summoner # failure in job https://hydra.nixos.org/build/233232530 at 2023-09-02 - sump # failure in job https://hydra.nixos.org/build/265955678 at 2024-07-14 - - 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 + - super-user-spark # failure in job https://hydra.nixos.org/build/233253403 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 - supply-chain-core # failure in job https://hydra.nixos.org/build/252715612 at 2024-03-16 - surjective # failure in job https://hydra.nixos.org/build/233242908 at 2023-09-02 - - sv2v # failure in job https://hydra.nixos.org/build/295097359 at 2025-04-22 - sv-core # failure in job https://hydra.nixos.org/build/233217245 at 2023-09-02 + - sv2v # failure in job https://hydra.nixos.org/build/295097359 at 2025-04-22 - 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 @@ -5952,8 +5950,8 @@ broken-packages: - sweet-egison # failure in job https://hydra.nixos.org/build/295097344 at 2025-04-22 - 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 + - swiss-ephemeris # failure in job https://hydra.nixos.org/build/233250845 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 @@ -5963,13 +5961,14 @@ broken-packages: - 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-cli # failure in job https://hydra.nixos.org/build/233225149 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 + - symtegration # failure in job https://hydra.nixos.org/build/296523016 at 2025-05-14 - 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 @@ -5981,22 +5980,23 @@ broken-packages: - 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 - - systemd-ntfy # failure in job https://hydra.nixos.org/build/236686880 at 2023-10-04 - - systemd-socket-activation # failure in job https://hydra.nixos.org/build/295097415 at 2025-04-22 - 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-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 + - systemd-ntfy # failure in job https://hydra.nixos.org/build/236686880 at 2023-10-04 + - systemd-socket-activation # failure in job https://hydra.nixos.org/build/295097415 at 2025-04-22 - systranything # failure in job https://hydra.nixos.org/build/295097462 at 2025-04-22 + - t-regex # failure in job https://hydra.nixos.org/build/233254486 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 + - table-tennis # failure in job https://hydra.nixos.org/build/233225503 at 2023-09-02 + - tableaux # failure in job https://hydra.nixos.org/build/233230428 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 @@ -6014,8 +6014,8 @@ broken-packages: - tahoe-capabilities # failure in job https://hydra.nixos.org/build/233253813 at 2023-09-02 - tahoe-chk # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237298038 at 2023-10-21 - tahoe-great-black-swamp-types # failure in job https://hydra.nixos.org/build/252721139 at 2024-03-16 - - 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 + - tai64 # failure in job https://hydra.nixos.org/build/233257422 at 2023-09-02 - Tainted # failure in job https://hydra.nixos.org/build/252722384 at 2024-03-16 - 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 @@ -6053,45 +6053,43 @@ broken-packages: - tedious-web # failure in job https://hydra.nixos.org/build/269665641 at 2024-08-19 - 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-api # failure in job https://hydra.nixos.org/build/233255927 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 - tell # failure in job https://hydra.nixos.org/build/252712899 at 2024-03-16 + - tellbot # failure in job https://hydra.nixos.org/build/233200225 at 2023-09-02 - tempered # failure in job https://hydra.nixos.org/build/252732123 at 2024-03-16 - template-default # failure in job https://hydra.nixos.org/build/233238125 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 - - templatise # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237235933 at 2023-10-21 - - tempodb # failure in job https://hydra.nixos.org/build/233205994 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 + - templatise # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237235933 at 2023-10-21 - tempo # failure in job https://hydra.nixos.org/build/252731680 at 2024-03-16 + - tempodb # failure in job https://hydra.nixos.org/build/233205994 at 2023-09-02 - temporal-csound # failure in job https://hydra.nixos.org/build/243818090 at 2024-01-01 - 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 + - tensor-safe # failure in job https://hydra.nixos.org/build/233239719 at 2023-09-02 - tensorflow # failure building python tensorflow dependency 2023-09-09 + - tensorflow-core-ops # 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 - tensors # failure in job https://hydra.nixos.org/build/295097530 at 2025-04-22 + - term-rewriting # failure in job https://hydra.nixos.org/build/295097520 at 2025-04-22 - 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 - - term-rewriting # failure in job https://hydra.nixos.org/build/295097520 at 2025-04-22 - 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 - tesla # failure in job https://hydra.nixos.org/build/295097534 at 2025-04-22 - - testCom # failure in job https://hydra.nixos.org/build/233210118 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-golden # failure in job https://hydra.nixos.org/build/252724226 at 2024-03-16 @@ -6099,21 +6097,22 @@ broken-packages: - 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 - - testing-tensor # failure in job https://hydra.nixos.org/build/295097635 at 2025-04-22 - 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 - test-monad-laws # failure in job https://hydra.nixos.org/build/252739363 at 2024-03-16 + - test-pkg # failure in job https://hydra.nixos.org/build/233242918 at 2023-09-02 + - test-shouldbe # failure in job https://hydra.nixos.org/build/233209475 at 2023-09-02 + - testCom # failure in job https://hydra.nixos.org/build/233210118 at 2023-09-02 + - TestExplode # failure in job https://hydra.nixos.org/build/233207327 at 2023-09-02 + - testing-tensor # failure in job https://hydra.nixos.org/build/295097635 at 2025-04-22 + - 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 + - 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 - 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 @@ -6128,7 +6127,6 @@ broken-packages: - 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 @@ -6136,55 +6134,57 @@ broken-packages: - text-replace # failure in job https://hydra.nixos.org/build/252727577 at 2024-03-16 - 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 + - text1 # failure in job https://hydra.nixos.org/build/233252861 at 2023-09-02 + - textocat-api # failure in job https://hydra.nixos.org/build/233252736 at 2023-09-02 + - textual # failure in job https://hydra.nixos.org/build/233254230 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 + - 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 + - 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 + - th-pprint # failure in job https://hydra.nixos.org/build/233200791 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 + - th-typegraph # failure in job https://hydra.nixos.org/build/295122914 at 2025-04-22 + - thank-you-stars # failure in job https://hydra.nixos.org/build/233219923 at 2023-09-02 - theatre # failure in job https://hydra.nixos.org/build/295097627 at 2025-04-22 - 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 + - throttled-io-loop # failure in job https://hydra.nixos.org/build/233221912 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 - - th-typegraph # failure in job https://hydra.nixos.org/build/295122914 at 2025-04-22 - 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 + - tictactoe3d # failure in job https://hydra.nixos.org/build/233193080 at 2023-09-02 - tidal-midi # failure in job https://hydra.nixos.org/build/233194389 at 2023-09-02 - tidal-serial # failure in job https://hydra.nixos.org/build/265955616 at 2024-07-14 - tidal-vis # failure in job https://hydra.nixos.org/build/234465445 at 2023-09-13 @@ -6195,32 +6195,32 @@ broken-packages: - tightrope # failure in job https://hydra.nixos.org/build/233215237 at 2023-09-02 - tiktoken # failure in job https://hydra.nixos.org/build/273448419 at 2024-10-01 - 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-parsers # failure in job https://hydra.nixos.org/build/295097665 at 2025-04-22 + - 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 + - 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 + - time-w3c # failure in job https://hydra.nixos.org/build/233225902 at 2023-09-02 + - timecalc # failure in job https://hydra.nixos.org/build/233207970 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 - - time-parsers # failure in job https://hydra.nixos.org/build/295097665 at 2025-04-22 - 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 - timestamp # failure in job https://hydra.nixos.org/build/295097702 at 2025-04-22 - 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 - tini # failure in job https://hydra.nixos.org/build/252732072 at 2024-03-16 + - tiny-scheduler # failure in job https://hydra.nixos.org/build/233224849 at 2023-09-02 - tinyapp # failure in job https://hydra.nixos.org/build/283207451 at 2024-12-31 - 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 - tinyMesh # failure in job https://hydra.nixos.org/build/265955590 at 2024-07-14 - - 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 - tinytools # failure in job https://hydra.nixos.org/build/295097699 at 2025-04-22 - TinyURL # failure in job https://hydra.nixos.org/build/233200716 at 2023-09-02 @@ -6236,13 +6236,14 @@ broken-packages: - TLT # failure in job https://hydra.nixos.org/build/233193495 at 2023-09-02 - tmp-postgres # failure in job https://hydra.nixos.org/build/252731301 at 2024-03-16 - tmp-proc-example # failure in job https://hydra.nixos.org/build/233223028 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 + - to-string-class # failure in job https://hydra.nixos.org/build/233244336 at 2023-09-02 + - tofromxml # failure in job https://hydra.nixos.org/build/233257072 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 - 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 - tokstyle # failure in job https://hydra.nixos.org/build/295097736 at 2025-04-22 - 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 @@ -6255,19 +6256,18 @@ broken-packages: - 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 - tostring # failure in job https://hydra.nixos.org/build/295097731 at 2025-04-22 - - 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 + - TotalMap # failure in job https://hydra.nixos.org/build/233194327 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 - tpar # failure in job https://hydra.nixos.org/build/295097738 at 2025-04-22 - 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-call # failure in job https://hydra.nixos.org/build/233250575 at 2023-09-02 - trace-function-call # failure in job https://hydra.nixos.org/build/233243062 at 2023-09-02 + - traced # failure in job https://hydra.nixos.org/build/233229953 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 @@ -6276,6 +6276,7 @@ broken-packages: - tracy # failure in job https://hydra.nixos.org/build/233210215 at 2023-09-02 - trade-journal # failure in job https://hydra.nixos.org/build/252737021 at 2024-03-16 - traildb # failure in job https://hydra.nixos.org/build/233223153 at 2023-09-02 + - trans-fx-core # failure in job https://hydra.nixos.org/build/233219543 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 @@ -6286,9 +6287,8 @@ broken-packages: - transformers-free # failure in job https://hydra.nixos.org/build/252717332 at 2024-03-16 - 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 - transformers-supply # failure in job https://hydra.nixos.org/build/252713362 at 2024-03-16 - - trans-fx-core # failure in job https://hydra.nixos.org/build/233219543 at 2023-09-02 + - TransformersStepByStep # failure in job https://hydra.nixos.org/build/233243582 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 @@ -6299,12 +6299,11 @@ broken-packages: - 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 + - 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 - TreeStructures # failure in job https://hydra.nixos.org/build/233213685 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 @@ -6318,8 +6317,8 @@ broken-packages: - 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 + - tsparse # failure in job https://hydra.nixos.org/build/233195941 at 2023-09-02 - 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 @@ -6331,9 +6330,9 @@ broken-packages: - tuple-append-instances # failure in job https://hydra.nixos.org/build/233256201 at 2023-09-02 - tuple-fields # failure in job https://hydra.nixos.org/build/252721117 at 2024-03-16 - tuple-hlist # failure in job https://hydra.nixos.org/build/295097798 at 2025-04-22 - - 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 - tuple-morph # failure in job https://hydra.nixos.org/build/294628958 at 2025-04-10 + - tupleinstances # failure in job https://hydra.nixos.org/build/233208004 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 @@ -6345,58 +6344,58 @@ broken-packages: - twine # failure in job https://hydra.nixos.org/build/233191924 at 2023-09-02 - twirp # failure in job https://hydra.nixos.org/build/252736228 at 2024-03-16 - 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-conduit # failure in job https://hydra.nixos.org/build/295097843 at 2025-04-22 + - twitchapi # failure in job https://hydra.nixos.org/build/233245126 at 2023-09-02 - twitter # failure in job https://hydra.nixos.org/build/233244055 at 2023-09-02 + - twitter-conduit # failure in job https://hydra.nixos.org/build/295097843 at 2025-04-22 - 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 - - typechain # failure in job https://hydra.nixos.org/build/252734998 at 2024-03-16 - 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-admin # failure in job https://hydra.nixos.org/build/296063081 at 2025-05-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 - - typed-fsm # failure in job https://hydra.nixos.org/build/269663128 at 2024-08-19 - - typed-process-effectful # failure in job https://hydra.nixos.org/build/236684332 at 2023-10-04 - - typedquery # failure in job https://hydra.nixos.org/build/233215307 at 2023-09-02 - - typed-session # failure in job https://hydra.nixos.org/build/270089993 at 2024-08-31 - - typed-session-state-algorithm # failure in job https://hydra.nixos.org/build/273462641 at 2024-10-01 - - 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-interpreter # failure in job https://hydra.nixos.org/build/233192182 at 2023-09-02 - type-level-bst # failure in job https://hydra.nixos.org/build/233202030 at 2023-09-02 - type-level-kv-list-esqueleto # failure in job https://hydra.nixos.org/build/295097863 at 2025-04-22 - type-level-kv-list-persistent # failure in job https://hydra.nixos.org/build/295097878 at 2025-04-22 - 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 - 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 - type-reflection # failure in job https://hydra.nixos.org/build/252719111 at 2024-03-16 - 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 + - typeable-th # failure in job https://hydra.nixos.org/build/233234377 at 2023-09-02 + - typechain # failure in job https://hydra.nixos.org/build/252734998 at 2024-03-16 + - TypeCompose # failure in job https://hydra.nixos.org/build/233212999 at 2023-09-02 + - typed-admin # failure in job https://hydra.nixos.org/build/296063081 at 2025-05-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 + - typed-fsm # failure in job https://hydra.nixos.org/build/269663128 at 2024-08-19 + - typed-process-effectful # failure in job https://hydra.nixos.org/build/236684332 at 2023-10-04 + - typed-session # failure in job https://hydra.nixos.org/build/270089993 at 2024-08-31 + - typed-session-state-algorithm # failure in job https://hydra.nixos.org/build/273462641 at 2024-10-01 + - 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 + - typedquery # failure in job https://hydra.nixos.org/build/233215307 at 2023-09-02 + - typehash # failure in job https://hydra.nixos.org/build/233207184 at 2023-09-02 + - typelevel-rewrite-rules # failure in job https://hydra.nixos.org/build/233243365 at 2023-09-02 + - typelevel-tensor # failure in job https://hydra.nixos.org/build/233190827 at 2023-09-02 + - typeparams # failure in job https://hydra.nixos.org/build/233192078 at 2023-09-02 + - types-compat # failure in job https://hydra.nixos.org/build/233249850 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 @@ -6412,23 +6411,24 @@ broken-packages: - 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 - ui # failure in job https://hydra.nixos.org/build/295097879 at 2025-04-22 - - ukrainian-phonetics-basic-array-bytestring # failure in job https://hydra.nixos.org/build/233228787 at 2023-09-02 + - ui-command # failure in job https://hydra.nixos.org/build/233223762 at 2023-09-02 - ukrainian-phonetics-basic-array # failure in job https://hydra.nixos.org/build/275136298 at 2024-10-21 + - ukrainian-phonetics-basic-array-bytestring # failure in job https://hydra.nixos.org/build/233228787 at 2023-09-02 - unac-bindings # failure in job https://hydra.nixos.org/build/236686523 at 2023-10-04 - 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 - unbound-generics-unify # failure in job https://hydra.nixos.org/build/283205015 at 2024-12-31 - - unboxed-containers # failure in job https://hydra.nixos.org/build/233200384 at 2023-09-02 + - unbounded-delays-units # failure in job https://hydra.nixos.org/build/233200989 at 2023-09-02 - unboxed # failure in job https://hydra.nixos.org/build/233219555 at 2023-09-02 + - unboxed-containers # failure in job https://hydra.nixos.org/build/233200384 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 - unescaping-print # failure in job https://hydra.nixos.org/build/252736030 at 2024-03-16 - unfix-binders # failure in job https://hydra.nixos.org/build/233259262 at 2023-09-02 - unfoldable # failure in job https://hydra.nixos.org/build/252721990 at 2024-03-16 - unfree # failure in job https://hydra.nixos.org/build/295097900 at 2025-04-22 + - uni-util # failure in job https://hydra.nixos.org/build/233219676 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 @@ -6436,16 +6436,15 @@ broken-packages: - 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 - unique-lang # failure in job https://hydra.nixos.org/build/295097999 at 2025-04-22 + - 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 + - uniqueness-periods-vector-common # failure in job https://hydra.nixos.org/build/233210018 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 @@ -6454,19 +6453,19 @@ broken-packages: - 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 - unix-simple # failure in job https://hydra.nixos.org/build/295097959 at 2025-04-22 - - 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 + - unlifted-list # failure in job https://hydra.nixos.org/build/233205239 at 2023-09-02 + - unliftio-messagebox # failure in job https://hydra.nixos.org/build/233200633 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 + - unpack-funcs # failure in job https://hydra.nixos.org/build/233196365 at 2023-09-02 - unpacked-containers # failure in job https://hydra.nixos.org/build/295097979 at 2025-04-22 - 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-text # failure in job https://hydra.nixos.org/build/295097981 at 2025-04-22 - - 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 @@ -6479,19 +6478,19 @@ broken-packages: - 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 # failure in job https://hydra.nixos.org/build/233229150 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 + - url-decoders # failure in job https://hydra.nixos.org/build/233245312 at 2023-09-02 + - url-generic # failure in job https://hydra.nixos.org/build/233221641 at 2023-09-02 + - URLb # failure in job https://hydra.nixos.org/build/233226766 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 - - 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 @@ -6507,31 +6506,31 @@ broken-packages: - 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 + - uu-cco # failure in job https://hydra.nixos.org/build/233259027 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 - 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 + - valid-names # failure in job https://hydra.nixos.org/build/233213115 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 - validationt # failure in job https://hydra.nixos.org/build/252739235 at 2024-03-16 - validators # failure in job https://hydra.nixos.org/build/233235532 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 - ValveValueKeyvalue # failure in job https://hydra.nixos.org/build/252733320 at 2024-03-16 - 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 + - var-monad # failure in job https://hydra.nixos.org/build/295098124 at 2025-04-22 + - varan # failure in job https://hydra.nixos.org/build/233232057 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 - - var-monad # failure in job https://hydra.nixos.org/build/295098124 at 2025-04-22 - 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 @@ -6582,8 +6581,8 @@ broken-packages: - 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 - - visualize-cbn # failure in job https://hydra.nixos.org/build/295098135 at 2025-04-22 - visual-prof # failure in job https://hydra.nixos.org/build/233250080 at 2023-09-02 + - visualize-cbn # failure in job https://hydra.nixos.org/build/295098135 at 2025-04-22 - 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 @@ -6591,9 +6590,9 @@ broken-packages: - 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 + - vt-utils # failure in job https://hydra.nixos.org/build/233244619 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 @@ -6638,8 +6637,8 @@ broken-packages: - 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 + - waitfree # failure in job https://hydra.nixos.org/build/233222583 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 @@ -6653,8 +6652,20 @@ broken-packages: - 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 - - 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 + - weather-api # failure in job https://hydra.nixos.org/build/233202108 at 2023-09-02 + - web-css # failure in job https://hydra.nixos.org/build/233195455 at 2023-09-02 + - web-encodings # failure in job https://hydra.nixos.org/build/233199718 at 2023-09-02 + - web-inv-route # failure in job https://hydra.nixos.org/build/252728701 at 2024-03-16 + - 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 + - web-routes-happstack # failure in job https://hydra.nixos.org/build/295098198 at 2025-04-22 + - 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 + - web-routes-wai # failure in job https://hydra.nixos.org/build/295098187 at 2025-04-22 + - web-view # failure in job https://hydra.nixos.org/build/244678837 at 2024-01-01 - 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 @@ -6662,31 +6673,20 @@ broken-packages: - 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 + - webcrank-dispatch # failure in job https://hydra.nixos.org/build/233209191 at 2023-09-02 - webdriver-angular # failure in job https://hydra.nixos.org/build/233212981 at 2023-09-02 + - webdriver-precore # failure in job https://hydra.nixos.org/build/296523789 at 2025-05-14 - 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 - - web-inv-route # failure in job https://hydra.nixos.org/build/252728701 at 2024-03-16 - - 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 + - webkitgtk3 # failure in job https://hydra.nixos.org/build/233215712 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-happstack # failure in job https://hydra.nixos.org/build/295098198 at 2025-04-22 - - 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 - - web-routes-wai # failure in job https://hydra.nixos.org/build/295098187 at 2025-04-22 - webshow # failure in job https://hydra.nixos.org/build/233243842 at 2023-09-02 - websockets-json # failure in job https://hydra.nixos.org/build/295098197 at 2025-04-22 - websockets-rpc # failure in job https://hydra.nixos.org/build/295098230 at 2025-04-22 - - web-view # failure in job https://hydra.nixos.org/build/244678837 at 2024-01-01 - webwire # failure in job https://hydra.nixos.org/build/233233892 at 2023-09-02 - wedged # failure in job https://hydra.nixos.org/build/252739136 at 2024-03-16 - WEditor # failure in job https://hydra.nixos.org/build/233215233 at 2023-09-02 @@ -6703,7 +6703,6 @@ broken-packages: - 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-indicator # bounds issues relating to gtk https://hydra.nixos.org/build/295428436 - 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 - winerror # failure in job https://hydra.nixos.org/build/233196100 at 2023-09-02 @@ -6714,9 +6713,9 @@ broken-packages: - 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 + - WL500gPLib # failure in job https://hydra.nixos.org/build/233203811 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 @@ -6728,17 +6727,17 @@ broken-packages: - 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 + - wordn # failure in job https://hydra.nixos.org/build/233238840 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 - wordpress-auth # failure in job https://hydra.nixos.org/build/252724354 at 2024-03-16 - wordsearch # failure in job https://hydra.nixos.org/build/233203803 at 2023-09-02 + - work-time # failure in job https://hydra.nixos.org/build/233245304 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 - world-peace # failure in job https://hydra.nixos.org/build/252710711 at 2024-03-16 - 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 @@ -6761,6 +6760,8 @@ broken-packages: - 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 - wybor # failure in job https://hydra.nixos.org/build/252729784 at 2024-03-16 + - X # failure in job https://hydra.nixos.org/build/233217783 at 2023-09-02 + - x-dsp # failure in job https://hydra.nixos.org/build/233218091 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 @@ -6769,10 +6770,8 @@ broken-packages: - xcffib # failure in job https://hydra.nixos.org/build/295098351 at 2025-04-22 - 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 - xgboost-haskell # failure in job https://hydra.nixos.org/build/295098374 at 2025-04-22 @@ -6788,14 +6787,12 @@ broken-packages: - 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-extractors # failure in job https://hydra.nixos.org/build/252718569 at 2024-03-16 - 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-indexed-cursor # failure in job https://hydra.nixos.org/build/295098303 at 2025-04-22 - xml-lens # failure in job https://hydra.nixos.org/build/295098347 at 2025-04-22 - xml-parsec # failure in job https://hydra.nixos.org/build/233208461 at 2023-09-02 @@ -6807,6 +6804,8 @@ broken-packages: - 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 + - xml2json # failure in job https://hydra.nixos.org/build/233254605 at 2023-09-02 + - XmlHtmlWriter # failure in job https://hydra.nixos.org/build/233213597 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 @@ -6816,8 +6815,8 @@ broken-packages: - 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 + - Xorshift128Plus # failure in job https://hydra.nixos.org/build/233225679 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 @@ -6841,20 +6840,20 @@ broken-packages: - yamemo # failure in job https://hydra.nixos.org/build/252739552 at 2024-03-16 - 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 - - yamlparse-applicative # failure in job https://hydra.nixos.org/build/252718434 at 2024-03-16 - 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 + - yamlkeysdiff # failure in job https://hydra.nixos.org/build/233234710 at 2023-09-02 + - yamlparse-applicative # failure in job https://hydra.nixos.org/build/252718434 at 2024-03-16 + - YamlReference # failure in job https://hydra.nixos.org/build/233222700 at 2023-09-02 - yampa-glfw # failure in job https://hydra.nixos.org/build/233215695 at 2023-09-02 - yampa-gloss # failure in job https://hydra.nixos.org/build/295098349 at 2025-04-22 - 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 - yampa-test # failure in job https://hydra.nixos.org/build/252726579 at 2024-03-16 + - yampa2048 # failure in job https://hydra.nixos.org/build/234450231 at 2023-09-13 + - 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 @@ -6870,8 +6869,8 @@ broken-packages: - 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-bcryptdb # failure in job https://hydra.nixos.org/build/233209630 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 @@ -6925,35 +6924,35 @@ broken-packages: - yggdrasil-schema # failure in job https://hydra.nixos.org/build/275135174 at 2024-10-21 - 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-contrib # failure in job https://hydra.nixos.org/build/276370855 at 2024-11-06 - yi-monokai # failure in job https://hydra.nixos.org/build/276375617 at 2024-11-06 - yi-solarized # failure in job https://hydra.nixos.org/build/276380211 at 2024-11-06 - yi-spolsky # failure in job https://hydra.nixos.org/build/276371008 at 2024-11-06 + - yices # failure in job https://hydra.nixos.org/build/233242137 at 2023-09-02 - yoctoparsec # failure in job https://hydra.nixos.org/build/233192019 at 2023-09-02 - Yogurt # failure in job https://hydra.nixos.org/build/233212103 at 2023-09-02 - yosys-rtl # failure in job https://hydra.nixos.org/build/269657756 at 2024-08-19 - 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 + - yuiGrid # failure in job https://hydra.nixos.org/build/233223402 at 2023-09-02 - yxdb-utils # failure in job https://hydra.nixos.org/build/233210232 at 2023-09-02 + - Z-Data # failure in job https://hydra.nixos.org/build/233256080 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 - zephyr # failure in job https://hydra.nixos.org/build/267966227 at 2024-07-31 - zero # failure in job https://hydra.nixos.org/build/233209286 at 2023-09-02 + - zeromq-haskell # failure in job https://hydra.nixos.org/build/233196050 at 2023-09-02 - zeromq3-haskell # failure in job https://hydra.nixos.org/build/233215557 at 2023-09-02 - zeromq4-clone-pattern # timeout - zeromq4-conduit # failure in job https://hydra.nixos.org/build/233198244 at 2023-09-02 - zeromq4-patterns # timeout - - 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 diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml index 280ce2eb60391..beeb87c5306f1 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/main.yaml @@ -23,29 +23,24 @@ # WARNING: We import a list of default-package-overrides from stackage which is # tracked in stackage.yaml. Adding conflicting overrides with stackage here will # not work. +# keep-sorted start skip_lines=1 case=no numeric=yes default-package-overrides: + - chs-cabal < 0.1.1.2 # Incompatible with Cabal < 3.12 + # 2024-12-23: last version to be compatible with Stackage LTS 22/23 (due to data-default) + - diagrams-input < 0.1.4 + - extensions < 0.1.0.2 # Incompatible with Cabal < 3.12, the newest extensions version is only needed on ghc 9.10 # 2021-11-09: ghc-bignum is bundled starting with 9.0.1; only 1.0 builds with GHCs prior to 9.2.1 - ghc-bignum == 1.0 - - extensions < 0.1.0.2 # Incompatible with Cabal < 3.12, the newest extensions version is only needed on ghc 9.10 - - chs-cabal < 0.1.1.2 # Incompatible with Cabal < 3.12 # 2024-08-17: Stackage doesn't contain hnix-store-core >= 0.8 yet, so we need to restrict hnix-store-remote - hnix-store-remote < 0.7 - # 2024-12-23: last version to be compatible with Stackage LTS 22/23 (due to data-default) - - diagrams-input < 0.1.4 - # 2024-12-31: last version that's compatible with GHC < 9.9 - - htree < 0.2.0.0 # 2025-01-17: need to match stackage version of hosc - hsc3 < 0.21 + # 2024-12-31: last version that's compatible with GHC < 9.9 + - htree < 0.2.0.0 +# keep-sorted end +# keep-sorted start skip_lines=1 case=no numeric=yes extra-packages: - - Cabal == 3.2.* # Used for packages needing newer Cabal on ghc 8.6 and 8.8 - - Cabal == 3.10.* - - Cabal == 3.12.* # version required for cabal-install and other packages - - Cabal-syntax == 3.6.* # Dummy package that ensures packages depending on Cabal-syntax can work for Cabal < 3.8 - - Cabal-syntax == 3.8.* # version required for ormolu and fourmolu on ghc 9.0 - - Cabal-syntax == 3.10.* - - Cabal-syntax == 3.12.* # version required for cabal-install and other packages - - ShellCheck == 0.9.0 # 2024-03-21: pinned by haskell-ci - aeson < 2 # required by pantry-0.5.2 - algebraic-graphs < 0.7 # 2023-08-14: Needed for building weeder < 2.6.0 - ansi-terminal < 1.1 # 2025-02-27: required for ghcjs @@ -53,6 +48,13 @@ extra-packages: - ansi-wl-pprint >= 0.6 && < 0.7 # 2024-03-23: required for ghcjs - apply-refact == 0.9.* # 2022-12-12: needed for GHC < 9.2 - attoparsec == 0.13.* # 2022-02-23: Needed to compile elm for now + - Cabal == 3.2.* # Used for packages needing newer Cabal on ghc 8.6 and 8.8 + - Cabal == 3.10.* + - Cabal == 3.12.* # version required for cabal-install and other packages + - Cabal-syntax == 3.6.* # Dummy package that ensures packages depending on Cabal-syntax can work for Cabal < 3.8 + - Cabal-syntax == 3.8.* # version required for ormolu and fourmolu on ghc 9.0 + - Cabal-syntax == 3.10.* + - Cabal-syntax == 3.12.* # version required for cabal-install and other packages - commonmark-pandoc < 0.2.3 # 2025-04-06: Needed for pandoc 3.6 - extensions == 0.1.0.2 # 2024-10-20: for GHC 9.10/Cabal 3.12 - fourmolu == 0.14.0.0 # 2023-11-13: for ghc-lib-parser 9.6 compat @@ -109,6 +111,7 @@ extra-packages: - primitive-unlifted == 0.1.3.1 # 2024-03-16: preserve for ghc 9.2 - retrie < 1.2.0.0 # 2022-12-30: preserve for ghc < 9.2 - shake-cabal < 0.2.2.3 # 2023-07-01: last version to support Cabal 3.6.* + - ShellCheck == 0.9.0 # 2024-03-21: pinned by haskell-ci - simple-get-opt < 0.5 # 2025-05-01: for crux-0.7.2 - stylish-haskell == 0.14.4.0 # 2022-09-19: preserve for ghc 9.0 - stylish-haskell == 0.14.5.0 # 2025-04-14: needed for hls with ghc-lib 9.6 @@ -119,7 +122,9 @@ extra-packages: - weeder == 2.2.* # 2022-02-21: preserve for GHC 8.10.7 - weeder == 2.3.* # 2022-05-31: preserve for GHC 9.0.2 - weeder == 2.4.* # 2023-02-02: preserve for GHC 9.2.* +# keep-sorted end +# keep-sorted start skip_lines=1 case=no package-maintainers: abbradar: - Agda @@ -193,12 +198,12 @@ package-maintainers: - hevm athas: - futhark + bdesham: + - pinboard-notes-backup berberman: - nvfetcher - arch-web - uusi - bdesham: - - pinboard-notes-backup cdepillabout: - cloudy - password @@ -350,6 +355,27 @@ package-maintainers: - tz - weeder - witch + mpscholten: + - ihp-hsx + - push-notify-apn + - hs-pkpass + - raven-haskell + - stripe-concepts + - stripe-signature + - http2-client + - zip + - currencies + - string-random + - inflections + - pcre-heavy + - mmark + - mmark-ext + - typerep-map + - minio-hs + - smtp-mail + - pdftotext + - warp-systemd + - amazonka ncfavier: - irc-client - lambdabot @@ -504,24 +530,6 @@ package-maintainers: - rest-rewrite terlar: - nix-diff - turion: - - Agda - - cabal-gild - - dunai - - essence-of-live-coding - - essence-of-live-coding-gloss - - essence-of-live-coding-pulse - - essence-of-live-coding-quickcheck - - essence-of-live-coding-warp - - finite-typelits - - has-transformers - - monad-bayes - - monad-schedule - - pulse-simple - - rhine - - rhine-gloss - - simple-affine-space - - time-domain thielema: - accelerate-arithmetic - accelerate-fftw @@ -640,35 +648,34 @@ package-maintainers: - magico - resistor-cube - linear-circuit + turion: + - Agda + - cabal-gild + - dunai + - essence-of-live-coding + - essence-of-live-coding-gloss + - essence-of-live-coding-pulse + - essence-of-live-coding-quickcheck + - essence-of-live-coding-warp + - finite-typelits + - has-transformers + - monad-bayes + - monad-schedule + - pulse-simple + - rhine + - rhine-gloss + - simple-affine-space + - time-domain utdemir: - nix-tree - zowoq: - - ShellCheck - mpscholten: - - ihp-hsx - - push-notify-apn - - hs-pkpass - - raven-haskell - - stripe-concepts - - stripe-signature - - http2-client - - zip - - currencies - - string-random - - inflections - - pcre-heavy - - mmark - - mmark-ext - - typerep-map - - minio-hs - - smtp-mail - - pdftotext - - warp-systemd - - amazonka wolfgangwalther: - postgres-websockets - postgrest + zowoq: + - ShellCheck +# keep-sorted end +# keep-sorted start skip_lines=1 case=no unsupported-platforms: Allure: [ platforms.darwin ] bdcs-api: [ platforms.darwin ] @@ -677,12 +684,13 @@ 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 + chalkboard: [ platforms.darwin ] # depends on Codec-Image-DevIL 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 cut-the-crap: [ platforms.darwin ] + emanote: [ x86_64-darwin ] # Depends on stork which is broken on macOS sdk < 10.14 essence-of-live-coding-PortMidi: [ platforms.darwin ] Euterpea: [ platforms.darwin ] follow-file: [ platforms.darwin ] @@ -691,16 +699,16 @@ unsupported-platforms: fuzzytime: [ platforms.darwin ] # https://github.com/kamwitsta/fuzzytime/issues/2 ghc-gc-hook: [ platforms.darwin ] # requires C11 threads which Apple doesn't support gi-adwaita: [ platforms.darwin ] - gi-dbusmenugtk3: [ platforms.darwin ] gi-dbusmenu: [ platforms.darwin ] + gi-dbusmenugtk3: [ 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 ] gi-vte: [ platforms.darwin ] - gi-webkit2webextension: [ platforms.darwin ] # webkitgtk marked broken on darwin gi-webkit2: [ platforms.darwin ] # webkitgtk marked broken on darwin + gi-webkit2webextension: [ platforms.darwin ] # webkitgtk marked broken on darwin gi-wnck: [ platforms.darwin ] gl: [ platforms.darwin ] # depends on mesa GLHUI: [ platforms.darwin ] # depends on mesa @@ -718,6 +726,7 @@ unsupported-platforms: iwlib: [ platforms.darwin ] Jazzkell: [ platforms.darwin ] # depends on Euterpea jsaddle-webkit2gtk: [ platforms.darwin ] + kmonad: [ platforms.darwin ] Kulitta: [ platforms.darwin ] # depends on Euterpea LambdaHack: [ platforms.darwin ] large-hashable: [ aarch64-linux ] # https://github.com/factisresearch/large-hashable/issues/17 @@ -730,10 +739,10 @@ unsupported-platforms: lio-fs: [ platforms.darwin ] logging-facade-journald: [ platforms.darwin ] longshot: [ aarch64-linux ] - mpi-hs: [ aarch64-linux, platforms.darwin ] mpi-hs-binary: [ aarch64-linux, platforms.darwin ] mpi-hs-cereal: [ aarch64-linux, platforms.darwin ] mpi-hs-store: [ aarch64-linux, platforms.darwin ] + mpi-hs: [ aarch64-linux, platforms.darwin ] mplayer-spot: [ aarch64-linux, platforms.darwin ] mptcp-pm: [ platforms.darwin ] netlink: [ platforms.darwin ] @@ -746,8 +755,8 @@ unsupported-platforms: persist-state: [ aarch64-linux, armv7l-linux ] # https://github.com/minad/persist-state/blob/6fd68c0b8b93dec78218f6d5a1f4fa06ced4e896/src/Data/PersistState.hs#L122-L128 piyo: [ platforms.darwin ] PortMidi-simple: [ platforms.darwin ] - PortMidi: [ platforms.darwin ] portmidi-utility: [ platforms.darwin ] + PortMidi: [ platforms.darwin ] posix-api: [ platforms.darwin ] Raincat: [ platforms.darwin ] reactive-balsa: [ platforms.darwin ] # depends on alsa-core @@ -765,16 +774,15 @@ unsupported-platforms: spade: [ platforms.darwin ] # depends on sdl2-mixer, which doesn't work on darwin synthesizer-alsa: [ platforms.darwin ] taffybar: [ platforms.darwin ] - twirl: [ platforms.darwin ] # depends on sdl2-mixer - emanote: [ x86_64-darwin ] # Depends on stork which is broken on macOS sdk < 10.14 termonad: [ platforms.darwin ] tokyotyrant-haskell: [ platforms.darwin ] + twirl: [ platforms.darwin ] # depends on sdl2-mixer Unixutils-shadow: [ platforms.darwin ] verifiable-expressions: [ aarch64-linux ] vrpn: [ platforms.darwin ] + vulkan-utils: [ platforms.darwin ] vulkan: [ i686-linux, armv7l-linux, platforms.darwin ] VulkanMemoryAllocator: [ i686-linux, armv7l-linux, platforms.darwin ] - vulkan-utils: [ platforms.darwin ] webkit2gtk3-javascriptcore: [ platforms.darwin ] wiringPi: [ aarch64-darwin ] xattr: [ platforms.darwin ] @@ -783,13 +791,14 @@ unsupported-platforms: xmonad-extras: [ platforms.darwin ] xmonad-volume: [ platforms.darwin ] xnobar: [ platforms.darwin ] - kmonad: [ platforms.darwin ] +# keep-sorted end +# keep-sorted start skip_lines=1 case=no supported-platforms: - AWin32Console: [ platforms.windows ] alsa-mixer: [ platforms.linux ] alsa-pcm: [ platforms.linux ] alsa-seq: [ platforms.linux ] + AWin32Console: [ platforms.windows ] barbly: [ platforms.darwin ] bindings-parport: [ platforms.linux ] # parport is a linux kernel component blake3: [ platforms.x86 ] # uses x86 intrinsics @@ -804,24 +813,24 @@ supported-platforms: dx9d3d: [ platforms.windows ] dx9d3dx: [ platforms.windows ] erebos-tester: [ platforms.linux ] # depends on linux-namespaces - evdev: [ platforms.linux ] evdev-streamly: [ platforms.linux ] - geomancy: [ platforms.x86 ] # x86 intrinsics + evdev: [ platforms.linux ] geomancy-layout: [ platforms.x86 ] # x86 intrinsics - gi-gtkosxapplication: [ platforms.darwin ] + geomancy: [ platforms.x86 ] # x86 intrinsics ghcjs-base: [ javascript-ghcjs ] ghcjs-dom-javascript: [ javascript-ghcjs ] + gi-gtkosxapplication: [ platforms.darwin ] gtk-mac-integration: [ platforms.darwin ] gtk3-mac-integration: [ platforms.darwin ] halide-haskell: [ platforms.linux ] halide-JuicyPixels: [ platforms.linux ] hb3sum: [ platforms.x86 ] # due to blake3 + HFuse: [ platforms.linux ] 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 + hsignal: [ platforms.x86 ] # -msse2 htune: [ platforms.linux ] # depends on alsa-pcm hw-prim-bits: [ platforms.x86 ] # x86 assembler inline-asm: [ platforms.x86 ] # x86 assembler @@ -865,12 +874,13 @@ supported-platforms: Win32-extras: [ platforms.windows ] Win32-junction-point: [ platforms.windows ] Win32-notify: [ platforms.windows ] - Win32: [ platforms.windows ] Win32-security: [ platforms.windows ] - Win32-services: [ platforms.windows ] Win32-services-wrapper: [ platforms.windows ] + Win32-services: [ platforms.windows ] + Win32: [ platforms.windows ] XInput: [ platforms.windows ] yesod-auth-simple: [ platforms.x86 ] # requires scrypt which only supports x86 +# keep-sorted end dont-distribute-packages: # Depends on shine, which is a ghcjs project. diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml index 8ff94d2405779..41c63eabff3ca 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml @@ -1,4 +1,4 @@ -# Stackage LTS 23.19 +# Stackage LTS 23.21 # This file is auto-generated by # maintainers/scripts/haskell/update-stackage.sh default-package-overrides: @@ -62,11 +62,11 @@ default-package-overrides: - ansi-wl-pprint ==1.0.2 - ANum ==0.2.0.2 - aos-signature ==0.1.1 + - ap-normalize ==0.1.0.1 - apecs ==0.9.6 - apecs-gloss ==0.2.4 - apecs-physics ==0.4.6 - api-field-json-th ==0.1.0.2 - - ap-normalize ==0.1.0.1 - appar ==0.1.8 - appendful ==0.1.0.0 - appendful-persistent ==0.1.0.1 @@ -115,6 +115,7 @@ default-package-overrides: - audacity ==0.0.2.2 - authenticate ==1.3.5.2 - authenticate-oauth ==1.7 + - auto-update ==0.2.6 - autodocodec ==0.4.2.2 - autodocodec-nix ==0.0.1.5 - autodocodec-openapi3 ==0.2.1.4 @@ -124,7 +125,6 @@ default-package-overrides: - autodocodec-yaml ==0.4.0.1 - autoexporter ==2.0.0.13 - automaton ==1.5 - - auto-update ==0.2.6 - avro ==0.6.2.1 - aws ==0.24.4 - aws-lambda-haskell-runtime ==4.3.2 @@ -138,6 +138,11 @@ default-package-overrides: - bank-holiday-germany ==1.3.1.0 - bank-holidays-england ==0.2.0.11 - barbies ==2.1.1.0 + - base-compat ==0.13.1 + - base-compat-batteries ==0.13.1 + - base-orphans ==0.9.3 + - base-prelude ==1.6.1.1 + - base-unicode-symbols ==0.2.4.2 - base16 ==1.0 - base16-bytestring ==1.0.2.0 - base32 ==0.4 @@ -148,12 +153,7 @@ default-package-overrides: - base64-bytestring ==1.2.1.0 - base64-bytestring-type ==1.0.1 - base64-string ==0.2 - - base-compat ==0.13.1 - - base-compat-batteries ==0.13.1 - basement ==0.0.16 - - base-orphans ==0.9.3 - - base-prelude ==1.6.1.1 - - base-unicode-symbols ==0.2.4.2 - basic-prelude ==0.7.0 - battleship-combinatorics ==0.0.1 - bazel-runfiles ==0.12 @@ -167,8 +167,8 @@ default-package-overrides: - beam-sqlite ==0.5.4.0 - bech32 ==1.1.8 - bech32-th ==1.1.8 - - benchpress ==0.2.2.25 - bench-show ==0.3.2 + - benchpress ==0.2.2.25 - bencode ==0.6.1.1 - bencoding ==0.4.5.6 - benri-hspec ==0.1.0.3 @@ -182,7 +182,6 @@ default-package-overrides: - bin ==0.1.4 - binance-exports ==0.1.2.0 - binary-conduit ==1.3.1 - - binaryen ==0.0.6.0 - binary-generic-combinators ==0.4.4.0 - binary-ieee754 ==0.1.0.0 - binary-instances ==1.0.6 @@ -192,6 +191,7 @@ default-package-overrides: - binary-search ==2.0.0 - binary-shared ==0.8.3 - binary-tagged ==0.3.1 + - binaryen ==0.0.6.0 - bindings-DSL ==1.0.25 - bindings-GLFW ==3.3.9.2 - bindings-libzip ==1.0.1 @@ -199,8 +199,8 @@ default-package-overrides: - BiobaseNewick ==0.0.0.2 - bitarray ==0.0.1.1 - bits ==0.6 - - bitset-word8 ==0.1.1.2 - bits-extra ==0.0.2.3 + - bitset-word8 ==0.1.1.2 - bitvec ==1.1.5.0 - bitwise ==1.0.0.1 - bitwise-enum ==1.0.1.2 @@ -236,13 +236,13 @@ default-package-overrides: - bordacount ==0.1.0.0 - boring ==0.2.2 - bound ==2.0.7 - - BoundedChan ==1.0.3.0 - bounded-qsem ==0.1.0.4 - bounded-queue ==1.0.0 + - BoundedChan ==1.0.3.0 - boundingboxes ==0.2.3 - box ==0.9.3.2 - - boxes ==0.1.5 - box-socket ==0.5.2.0 + - boxes ==0.1.5 - breakpoint ==0.1.4.0 - brick ==2.4 - brotli ==0.0.0.2 @@ -261,12 +261,12 @@ default-package-overrides: - bv ==0.5 - bv-little ==1.3.2 - bv-sized ==1.0.6 + - byte-count-reader ==0.10.1.12 + - byte-order ==0.1.3.1 - byteable ==0.1.1 - bytebuild ==0.3.16.3 - - byte-count-reader ==0.10.1.12 - bytedump ==1.0 - bytehash ==0.1.1.2 - - byte-order ==0.1.3.1 - byteorder ==1.0.4 - bytes ==0.17.4 - byteset ==0.1.1.2 @@ -284,9 +284,11 @@ default-package-overrides: - bzip2-clib ==1.0.8 - bzlib ==0.5.2.0 - bzlib-conduit ==0.3.0.4 + - c-enum ==0.1.1.3 + - c-struct ==0.1.3.0 - c14n ==0.1.0.3 - c2hs ==0.28.8 - - cabal2spec ==2.7.1 + - ca-province-codes ==1.0.0.0 - cabal-add ==0.1 - cabal-appimage ==0.4.1.0 - cabal-clean ==0.2.20230609 @@ -300,6 +302,7 @@ default-package-overrides: - cabal-plan ==0.7.5.0 - cabal-rpm ==2.2.1 - cabal-sort ==0.1.2.1 + - cabal2spec ==2.7.1 - cache ==0.1.3.0 - cached-json-file ==0.1.1 - cacophony ==0.10.1 @@ -311,14 +314,13 @@ default-package-overrides: - call-stack ==0.4.0 - can-i-haz ==0.3.1.1 - capability ==0.5.0.1 - - ca-province-codes ==1.0.0.0 - cardano-coin-selection ==1.0.1 - carray ==0.1.6.8 - casa-client ==0.0.2 - casa-types ==0.0.2 - - cased ==0.1.0.0 - case-insensitive ==1.2.1.0 - - cases ==0.1.4.3 + - cased ==0.1.0.0 + - cases ==0.1.4.4 - casing ==0.1.4.1 - cassava ==0.5.3.2 - cassava-conduit ==0.6.6 @@ -329,7 +331,6 @@ default-package-overrides: - cborg ==0.2.10.0 - cborg-json ==0.2.6.0 - cdar-mBound ==0.1.0.4 - - c-enum ==0.1.1.3 - cereal ==0.5.8.3 - cereal-conduit ==0.8.0 - cereal-text ==0.1.0.2 @@ -382,15 +383,15 @@ default-package-overrides: - cmark-gfm ==0.2.6 - cmark-lucid ==0.1.0.0 - cmdargs ==0.10.22 - - codec-beam ==0.2.0 + - co-log ==0.6.1.2 + - co-log-core ==0.3.2.5 + - co-log-polysemy ==0.0.1.6 - code-conjure ==0.5.16 - code-page ==0.2.1 + - codec-beam ==0.2.0 - coinor-clp ==0.0.0.2 - cointracking-imports ==0.1.0.2 - collect-errors ==0.1.6.0 - - co-log ==0.6.1.2 - - co-log-core ==0.3.2.5 - - co-log-polysemy ==0.0.1.6 - colonnade ==1.2.0.2 - Color ==0.3.3 - colorful-monoids ==0.2.1.3 @@ -442,14 +443,14 @@ default-package-overrides: - conferer ==1.1.0.0 - conferer-aeson ==1.1.0.2 - config-ini ==0.2.7.0 + - config-value ==0.8.3 - configuration-tools ==0.7.1 - configurator ==0.3.0.0 - configurator-export ==0.1.0.1 - configurator-pg ==0.2.10 - - config-value ==0.8.3 + - constraint-tuples ==0.2 - constraints ==0.14.2 - constraints-extras ==0.4.0.2 - - constraint-tuples ==0.2 - construct ==0.3.2 - context ==0.2.1.0 - context-http-client ==0.2.0.2 @@ -490,10 +491,14 @@ default-package-overrides: - criterion ==1.6.4.0 - criterion-measurement ==0.2.3.0 - cron ==0.7.2 + - crypt-sha512 ==0 - crypto-api ==0.13.3 - crypto-api-tests ==0.3 - crypto-cipher-tests ==0.0.11 - crypto-cipher-types ==0.0.9 + - crypto-pubkey-types ==0.4.3 + - crypto-random-api ==0.2.0 + - crypto-token ==0.1.2 - cryptocompare ==0.1.2 - cryptohash ==0.11.9 - cryptohash-cryptoapi ==0.1.4 @@ -504,20 +509,15 @@ default-package-overrides: - crypton ==1.0.4 - crypton-conduit ==0.2.3 - crypton-connection ==0.4.4 - - cryptonite ==0.30 - - cryptonite-conduit ==0.2.2 - - cryptonite-openssl ==0.7 - crypton-x509 ==1.7.7 - crypton-x509-store ==1.6.10 - crypton-x509-system ==1.6.7 - crypton-x509-validation ==1.6.14 - - crypto-pubkey-types ==0.4.3 - - crypto-random-api ==0.2.0 - - crypto-token ==0.1.2 - - crypt-sha512 ==0 + - cryptonite ==0.30 + - cryptonite-conduit ==0.2.2 + - cryptonite-openssl ==0.7 - csp ==1.4.0 - css-text ==0.1.3.0 - - c-struct ==0.1.3.0 - csv ==0.1.2 - csv-conduit ==1.0.1.0 - ctrie ==0.2 @@ -601,9 +601,9 @@ default-package-overrides: - dependent-sum-template ==0.2.0.2 - depq ==0.4.2 - deque ==0.4.4.2 - - deriveJsonNoPrefix ==0.1.0.1 - derive-storable ==0.3.1.0 - derive-topdown ==0.1.0.0 + - deriveJsonNoPrefix ==0.1.0.1 - deriving-aeson ==0.2.10 - deriving-compat ==0.6.7 - deriving-trans ==0.9.1.0 @@ -611,6 +611,10 @@ default-package-overrides: - df1 ==0.4.3 - dhall ==1.42.2 - di ==1.3 + - di-core ==1.0.4 + - di-df1 ==1.2.1 + - di-handle ==1.0.1 + - di-monad ==1.3.5 - diagrams ==1.4.2 - diagrams-builder ==0.8.0.6 - diagrams-cairo ==1.4.2.1 @@ -623,19 +627,15 @@ default-package-overrides: - diagrams-solve ==0.1.3.1 - diagrams-svg ==1.4.4 - dice ==0.1.1 - - di-core ==1.0.4 - dictionary-sharing ==0.1.0.0 - - di-df1 ==1.2.1 - Diff ==0.5 - diff-loc ==0.1.0.0 - digest ==0.0.2.1 - digits ==0.3.1 - - di-handle ==1.0.1 - dimensional ==1.6.1 - - di-monad ==1.3.5 + - direct-sqlite ==2.3.29 - directory-ospath-streaming ==0.1.0.3 - directory-tree ==0.12.1 - - direct-sqlite ==2.3.29 - dirichlet ==0.1.0.7 - discount ==0.1.1 - discover-instances ==0.1.0.0 @@ -662,6 +662,8 @@ default-package-overrides: - dlist-instances ==0.1.1.1 - dlist-nonempty ==0.1.3 - dns ==4.2.0 + - do-list ==1.0.1 + - do-notation ==0.1.0.2 - dockerfile ==0.2.0 - doclayout ==0.5 - docopt ==0.7.0.8 @@ -674,13 +676,11 @@ default-package-overrides: - doctest-lib ==0.1.1.1 - doctest-parallel ==0.3.1.1 - doldol ==0.4.1.2 - - do-list ==1.0.1 - domain ==0.1.1.5 - domain-aeson ==0.1.1.2 - domain-cereal ==0.1.0.1 - domain-core ==0.1.0.4 - domain-optics ==0.1.0.4 - - do-notation ==0.1.0.2 - dot ==0.3 - dotenv ==0.12.0.0 - dotgen ==0.4.3 @@ -719,19 +719,19 @@ default-package-overrides: - egison-pattern-src ==0.2.1.2 - either ==5.0.2 - either-unwrap ==1.1 - - ekg ==0.4.1.1 + - ekg ==0.4.1.2 - ekg-core ==0.1.1.8 - ekg-json ==0.1.1.1 - - ekg-statsd ==0.2.6.1 + - ekg-statsd ==0.2.6.2 - elerea ==2.9.0 - elf ==0.31 - eliminators ==0.9.4 - - elm2nix ==0.4.0 - elm-bridge ==0.8.4 - elm-core-sources ==1.0.0 - elm-export ==0.6.0.1 - elm-street ==0.2.2.1 - elm-syntax ==0.3.3.0 + - elm2nix ==0.4.0 - elynx ==0.8.0.0 - elynx-markov ==0.8.0.0 - elynx-nexus ==0.8.0.0 @@ -746,10 +746,10 @@ default-package-overrides: - encoding ==0.8.10 - ENIG ==0.0.1.0 - entropy ==0.4.1.11 - - enummapset ==0.7.3.0 - - enumset ==0.1 - enum-subset-generate ==0.1.0.3 - enum-text ==0.5.3.0 + - enummapset ==0.7.3.0 + - enumset ==0.1 - envelope ==0.2.2.0 - envparse ==0.6.0 - envy ==2.1.4.0 @@ -761,9 +761,9 @@ default-package-overrides: - erf ==2.0.0.0 - errata ==0.4.0.3 - error ==1.0.0.0 - - errorcall-eq-instance ==0.3.0 - error-or ==0.3.0 - error-or-utils ==0.2.0 + - errorcall-eq-instance ==0.3.0 - errors ==2.3.0 - errors-ext ==0.4.2 - ersatz ==0.5 @@ -787,18 +787,18 @@ default-package-overrides: - exit-codes ==1.0.0 - exomizer ==1.0.0 - exon ==1.7.2.0 + - exp-pairs ==0.2.1.1 - expiring-cache-map ==0.0.6.1 - explainable-predicates ==0.1.2.4 - explicit-exception ==0.2 - - exp-pairs ==0.2.1.1 - express ==1.0.18 - extended-reals ==0.2.6.0 - extensible ==0.9.2 - extensible-effects ==5.0.0.1 - extensible-exceptions ==0.1.1.4 - extra ==1.7.16 - - extractable-singleton ==0.0.1 - extra-data-yj ==0.1.0.0 + - extractable-singleton ==0.0.1 - extrapolate ==0.4.6 - fail ==4.9.0.0 - FailT ==0.1.2.0 @@ -826,14 +826,14 @@ default-package-overrides: - fgl-arbitrary ==0.2.0.6 - fields-and-cases ==0.2.0.0 - fields-json ==0.4.0.0 - - filecache ==0.5.2 - file-embed ==0.0.16.0 - file-embed-lzma ==0.1 - file-io ==0.1.5 - - filelock ==0.1.1.7 - - filemanip ==0.3.6.3 - file-modules ==0.1.2.4 - file-path-th ==0.1.0.0 + - filecache ==0.5.2 + - filelock ==0.1.1.7 + - filemanip ==0.3.6.3 - filepattern ==0.1.3 - fileplow ==0.1.0.0 - filter-logger ==0.6.0.0 @@ -845,11 +845,11 @@ default-package-overrides: - first-class-families ==0.8.1.0 - fits-parse ==0.4.2 - fitspec ==0.4.10 + - fix-whitespace ==0.1 - fixed ==0.3 - fixed-length ==0.2.3.1 - fixed-vector ==1.2.3.0 - fixed-vector-hetero ==0.6.2.0 - - fix-whitespace ==0.1 - flac ==0.2.1 - flac-picture ==0.1.3 - flags-applicative ==0.1.0.3 @@ -866,8 +866,8 @@ default-package-overrides: - fn ==0.3.0.2 - focus ==1.0.3.2 - focuslist ==0.1.1.0 - - foldable1-classes-compat ==0.1.1 - fold-debounce ==0.2.0.16 + - foldable1-classes-compat ==0.1.1 - foldl ==1.4.18 - folds ==0.7.8 - FontyFruity ==0.5.3.5 @@ -876,10 +876,10 @@ default-package-overrides: - ForestStructures ==0.0.1.1 - forkable-monad ==0.2.0.3 - forma ==1.2.0 - - formatn ==0.3.1.0 - format-numbers ==0.1.0.1 + - formatn ==0.3.1.0 - formatting ==7.2.0 - - fortran-src ==0.16.3 + - fortran-src ==0.16.5 - foundation ==0.0.30 - fourmolu ==0.15.0.0 - Frames ==0.7.4.2 @@ -887,11 +887,11 @@ default-package-overrides: - free-alacarte ==1.0.0.9 - free-categories ==0.2.0.2 - free-foil ==0.2.0 + - free-vl ==0.1.4 - freenect ==1.2.1 - freer-par-monad ==0.1.0.0 - freer-simple ==1.2.1.2 - freetype2 ==0.2.0 - - free-vl ==0.1.4 - friendly-time ==0.4.1 - frisby ==0.2.5 - from-sum ==0.2.3.0 @@ -909,14 +909,13 @@ default-package-overrides: - fuzzcheck ==0.1.1 - fuzzy ==0.1.1.0 - fuzzy-dates ==0.1.1.2 - - fuzzyset ==0.3.2 - fuzzy-time ==0.3.0.0 + - fuzzyset ==0.3.2 - gauge ==0.2.5 - gd ==3000.7.3 - gdp ==0.0.3.0 - gemini-exports ==0.1.0.2 - general-games ==1.1.1 - - generically ==0.1.1 - generic-arbitrary ==1.0.1.2 - generic-constraints ==1.1.1.1 - generic-data ==1.1.0.2 @@ -928,13 +927,14 @@ default-package-overrides: - generic-lens-core ==2.2.1.0 - generic-monoid ==0.1.0.1 - generic-optics ==2.2.1.0 - - GenericPretty ==1.2.2 - generic-random ==1.5.0.1 + - generic-type-asserts ==0.3.0 + - generic-type-functions ==0.1.0 + - generically ==0.1.1 + - GenericPretty ==1.2.2 - generics-eot ==0.4.0.1 - generics-sop ==0.5.1.4 - generics-sop-lens ==0.2.1 - - generic-type-asserts ==0.3.0 - - generic-type-functions ==0.1.0 - geniplate-mirror ==0.7.10 - genvalidity ==1.1.1.0 - genvalidity-aeson ==1.0.0.1 @@ -977,12 +977,6 @@ default-package-overrides: - ghc-events ==0.20.0.0 - ghc-exactprint ==1.8.0.0 - ghc-hs-meta ==0.1.5.0 - - ghcid ==0.8.9 - - ghci-hexcalc ==0.1.1.0 - - ghcjs-codemirror ==0.0.0.2 - - ghcjs-dom ==0.9.9.2 - - ghcjs-dom-jsaddle ==0.9.9.0 - - ghcjs-perch ==0.3.3.3 - ghc-lib ==9.8.5.20250214 - ghc-lib-parser ==9.8.5.20250214 - ghc-lib-parser-ex ==9.8.0.2 @@ -996,6 +990,12 @@ default-package-overrides: - ghc-typelits-knownnat ==0.7.13 - ghc-typelits-natnormalise ==0.7.10 - ghc-typelits-presburger ==0.7.4.1 + - ghci-hexcalc ==0.1.1.0 + - ghcid ==0.8.9 + - ghcjs-codemirror ==0.0.0.2 + - ghcjs-dom ==0.9.9.2 + - ghcjs-dom-jsaddle ==0.9.9.0 + - ghcjs-perch ==0.3.3.3 - ghost-buster ==0.1.1.0 - ghostscript-parallel ==0.0.1 - gi-atk ==2.0.28 @@ -1003,9 +1003,9 @@ default-package-overrides: - gi-cairo-connector ==0.1.1 - gi-cairo-render ==0.1.2 - gi-dbusmenu ==0.4.14 - - gi-dbusmenugtk3 ==0.4.15 + - gi-dbusmenugtk3 ==0.4.16 - gi-freetype2 ==2.0.5 - - gi-gdk ==3.0.29 + - gi-gdk ==3.0.30 - gi-gdk3 ==3.0.30 - gi-gdk4 ==4.0.10 - gi-gdkpixbuf ==2.0.32 @@ -1018,17 +1018,21 @@ default-package-overrides: - gi-gobject ==2.0.31 - gi-graphene ==1.0.8 - gi-gsk ==4.0.9 - - gi-gtk ==3.0.43 + - gi-gtk ==3.0.44 + - gi-gtk-hs ==0.3.17 - gi-gtk3 ==3.0.44 - gi-gtk4 ==4.0.12 - - gi-gtk-hs ==0.3.17 - gi-gtksource ==3.0.30 - gi-gtksource3 ==3.0.30 - gi-harfbuzz ==0.0.10 - - gio ==0.13.12.0 - gi-pango ==1.0.30 - - gi-soup2 ==2.4.30 - gi-soup ==2.4.30 + - gi-soup2 ==2.4.30 + - gi-vte ==2.91.35 + - gi-xlib ==2.0.14 + - gio ==0.13.12.0 + - git-lfs ==1.2.5 + - git-mediate ==1.1.0 - githash ==0.1.7.0 - github ==0.29 - github-release ==2.0.0.12 @@ -1036,14 +1040,10 @@ default-package-overrides: - github-types ==0.2.1 - github-webhooks ==0.17.0 - gitlab-haskell ==1.0.2.2 - - git-lfs ==1.2.5 - gitlib ==3.1.3 - gitlib-libgit2 ==3.1.2.1 - gitlib-test ==3.1.2 - - git-mediate ==1.1.0 - gitrev ==1.3.1 - - gi-vte ==2.91.33 - - gi-xlib ==2.0.14 - gl ==0.9.1 - glabrous ==2.0.6.3 - glasso ==0.1.0 @@ -1082,10 +1082,10 @@ default-package-overrides: - group-by-date ==0.1.0.5 - groups ==0.5.3 - gtk ==0.15.10 - - gtk2hs-buildtools ==0.13.12.0 - - gtk3 ==0.15.10 - gtk-sni-tray ==0.1.8.1 - gtk-strut ==0.1.3.2 + - gtk2hs-buildtools ==0.13.12.0 + - gtk3 ==0.15.10 - guarded-allocation ==0.0.1 - hackage-cli ==0.1.0.2 - hackage-security ==0.6.2.6 @@ -1109,6 +1109,7 @@ default-package-overrides: - happy-meta ==0.2.1.0 - harpie ==0.1.2.0 - harpie-numhask ==0.1.0.1 + - has-transformers ==0.1.0.4 - HasBigDecimal ==0.2.0.0 - hashable ==1.4.7.0 - hashids ==1.1.1.0 @@ -1140,7 +1141,6 @@ default-package-overrides: - hasql-pool ==1.2.0.3 - hasql-th ==0.4.0.23 - hasql-transaction ==1.1.1.2 - - has-transformers ==0.1.0.4 - hasty-hamiltonian ==1.3.4 - HaTeX ==3.22.4.2 - HaXml ==1.25.14 @@ -1168,19 +1168,19 @@ default-package-overrides: - heist ==1.1.1.2 - here ==1.2.14 - heredoc ==0.2.0.0 - - heterocephalus ==1.0.5.7 - hetero-parameter-list ==0.1.0.21 - hetero-parameter-list-with-typelevel-tools ==0.1.0.1 + - heterocephalus ==1.0.5.7 - hex ==0.2.0 + - hex-text ==0.1.0.9 - hexml ==0.3.5 - hexml-lens ==0.2.2 - hexpat ==0.20.13 - - hex-text ==0.1.0.9 - hformat ==0.3.3.1 - hfsevents ==0.1.8 - hgal ==2.0.0.3 - - hidapi ==0.1.8 - hi-file-parser ==0.1.7.0 + - hidapi ==0.1.8 - hindent ==6.2.1 - hinfo ==0.0.3.0 - hinotify ==0.4.2 @@ -1232,17 +1232,18 @@ default-package-overrides: - hreader ==1.1.1 - hreader-lens ==0.1.3.0 - hruby ==0.5.1.0 - - hsass ==0.8.0 - hs-bibutils ==6.10.0.0 - - hsc2hs ==0.68.10 - hs-captcha ==1.0 + - hs-GeoIP ==0.3 + - hs-php-session ==0.0.9.3 + - hsass ==0.8.0 + - hsc2hs ==0.68.10 - hscolour ==1.25 - hsdns ==1.8 - hse-cpp ==0.2 - hsemail ==2.2.2 - HSet ==0.0.2 - hset ==2.2.0 - - hs-GeoIP ==0.3 - hsignal ==0.2.7.5 - hsini ==0.5.2.2 - hsinstall ==2.8 @@ -1294,7 +1295,6 @@ default-package-overrides: - hspec-wai ==0.11.1 - hspec-wai-json ==0.11.0 - hspec-webdriver ==1.2.2 - - hs-php-session ==0.0.9.3 - hstatistics ==0.3.1 - HStringTemplate ==0.8.8 - HSvm ==1.0.3.35 @@ -1309,7 +1309,6 @@ default-package-overrides: - html-entities ==1.1.4.7 - html-entity-map ==0.1.0.0 - html-parse ==0.2.2.0 - - http2 ==5.3.9 - HTTP ==4000.4.1 - http-api-data ==0.6.2 - http-api-data-qq ==0.1.0.0 @@ -1323,7 +1322,6 @@ default-package-overrides: - http-date ==0.0.11 - http-directory ==0.1.11 - http-download ==0.2.1.0 - - httpd-shed ==0.4.1.2 - http-io-streams ==0.1.7.0 - http-link-header ==1.2.3 - http-media ==0.8.1.1 @@ -1332,6 +1330,8 @@ default-package-overrides: - http-semantics ==0.3.0 - http-streams ==0.8.9.9 - http-types ==0.12.4 + - http2 ==5.3.9 + - httpd-shed ==0.4.1.2 - human-readable-duration ==0.2.1.4 - HUnit ==1.6.2.0 - HUnit-approx ==1.1.1.1 @@ -1341,12 +1341,10 @@ default-package-overrides: - hw-bits ==0.7.2.2 - hw-conduit-merges ==0.2.1.0 - hw-diagnostics ==0.0.1.0 - - hweblib ==0.6.3 - hw-excess ==0.2.3.0 - hw-hedgehog ==0.1.1.1 - hw-int ==0.0.2.0 - hw-json-simd ==0.1.1.2 - - hwk ==0.6 - hw-kafka-client ==5.3.0 - hw-mquery ==0.2.1.2 - hw-parser ==0.1.1.0 @@ -1354,6 +1352,8 @@ default-package-overrides: - hw-rankselect-base ==0.3.4.1 - hw-streams ==0.0.1.1 - hw-string-parse ==0.0.0.5 + - hweblib ==0.6.3 + - hwk ==0.6 - hxt ==9.3.1.22 - hxt-charproperties ==9.5.0.0 - hxt-css ==0.1.0.3 @@ -1407,6 +1407,7 @@ default-package-overrides: - insert-ordered-containers ==0.2.6 - inspection-testing ==0.5.0.3 - int-cast ==0.2.0.0 + - int-supply ==1.0.0 - integer-conversion ==0.1.1 - integer-logarithms ==1.0.4 - integer-roots ==1.0.2.0 @@ -1420,7 +1421,6 @@ default-package-overrides: - IntervalMap ==0.6.2.1 - intervals ==0.9.3 - intset-imperative ==0.1.0.0 - - int-supply ==1.0.0 - invariant ==0.6.4 - invertible ==0.2.0.8 - invertible-grammar ==0.1.3.5 @@ -1457,22 +1457,22 @@ default-package-overrides: - jose ==0.11 - jose-jwt ==0.10.0 - journalctl-stream ==0.6.0.8 - - jsaddle ==0.9.9.2 - - jsaddle-dom ==0.9.9.2 - js-chart ==2.9.4.1 - js-dgtable ==0.5.2 - js-flot ==0.8.3 - js-jquery ==3.3.1 + - jsaddle ==0.9.9.3 + - jsaddle-dom ==0.9.9.2 - json ==0.11 - json-feed ==2.0.0.13 - - jsonifier ==0.2.1.3 - - jsonpath ==0.3.0.0 - json-rpc ==1.1.1 - json-spec ==1.1.1.2 - json-spec-elm ==0.4.0.6 - json-spec-elm-servant ==0.4.3.0 - json-spec-openapi ==1.0.1.1 - json-stream ==0.4.6.0 + - jsonifier ==0.2.1.3 + - jsonpath ==0.3.0.0 - JuicyCairo ==0.1.0.0 - JuicyPixels ==3.3.9 - JuicyPixels-extra ==0.6.0 @@ -1496,9 +1496,9 @@ default-package-overrides: - keyed-vals-redis ==0.2.3.2 - keys ==3.12.4 - ki ==1.0.1.2 + - ki-unlifted ==1.0.0.2 - kind-apply ==0.4.0.0 - kind-generics ==0.5.0.0 - - ki-unlifted ==1.0.0.2 - kmeans ==0.1.3 - knob ==0.2.2 - koji ==0.0.2 @@ -1509,10 +1509,10 @@ default-package-overrides: - lame ==0.2.2 - language-avro ==0.1.4.0 - language-c ==0.10.0 + - language-c-quote ==0.13.0.2 - language-c99 ==0.2.0 - language-c99-simple ==0.3.0 - language-c99-util ==0.2.0 - - language-c-quote ==0.13.0.2 - language-docker ==13.0.0 - language-dot ==0.1.2 - language-glsl ==0.3.0 @@ -1564,10 +1564,10 @@ default-package-overrides: - liboath-hs ==0.0.1.2 - libyaml ==0.1.4 - libyaml-clib ==0.2.5 - - lifted-async ==0.10.2.7 - - lifted-base ==0.2.3.12 - lift-generics ==0.3 - lift-type ==0.1.2.0 + - lifted-async ==0.10.2.7 + - lifted-base ==0.2.3.12 - linear ==1.23.1 - linear-base ==0.4.0 - linear-circuit ==0.1.0.4 @@ -1578,14 +1578,14 @@ default-package-overrides: - linux-file-extents ==0.2.0.1 - linux-namespaces ==0.1.3.1 - List ==0.6.2 - - ListLike ==4.7.8.3 - list-predicate ==0.1.0.1 - - listsafe ==0.1.0.1 - list-shuffle ==1.0.0.1 - list-t ==1.0.5.7 - list-transformer ==1.1.1 - - ListTree ==0.2.3 - list-witnesses ==0.1.4.1 + - ListLike ==4.7.8.3 + - listsafe ==0.1.0.1 + - ListTree ==0.2.3 - ListZipper ==1.2.0.2 - literatex ==0.3.0.0 - lmdb ==0.2.5 @@ -1612,10 +1612,10 @@ default-package-overrides: - lsql-csv ==0.1.0.6 - lua ==2.3.3 - lua-arbitrary ==1.0.1.1 - - lucid2 ==0.0.20250303 - lucid ==2.11.20250303 - lucid-cdn ==0.2.2.0 - lucid-extras ==0.2.2 + - lucid2 ==0.0.20250303 - lukko ==0.1.2 - lumberjack ==1.0.3.0 - lz4 ==0.2.3.1 @@ -1625,11 +1625,11 @@ default-package-overrides: - magic ==1.1 - magico ==0.0.2.3 - mailtrap ==0.1.2.2 - - mainland-pretty ==0.7.1.1 - main-tester ==0.2.0.1 + - mainland-pretty ==0.7.1.1 - managed ==1.0.10 - - mappings ==0.3.1.0 - map-syntax ==0.3 + - mappings ==0.3.1.0 - markdown ==0.1.17.5 - markdown-unlit ==0.6.0 - markov-chain ==0.0.3.4 @@ -1640,9 +1640,9 @@ default-package-overrides: - massiv-serialise ==1.0.0.2 - massiv-test ==1.1.0.1 - matchable ==0.1.2.1 - - mathexpr ==0.3.1.0 - math-extras ==0.1.1.0 - math-functions ==0.3.4.4 + - mathexpr ==0.3.1.0 - mathlist ==0.2.0.0 - matplotlib ==0.7.7 - matrices ==0.5.0 @@ -1655,14 +1655,14 @@ default-package-overrides: - mcmc ==0.8.3.1 - mcmc-types ==1.0.3 - mealy ==0.5.0.0 - - median-stream ==0.7.0.0 - med-module ==0.1.3 + - median-stream ==0.7.0.0 - megaparsec ==9.6.1 - megaparsec-tests ==9.6.1 - melf ==1.3.1 + - mem-info ==0.3.1.0 - membership ==0.0.1 - memcache ==0.3.0.2 - - mem-info ==0.3.1.0 - memory ==0.18.0 - MemoTrie ==0.6.11 - mergeful ==0.3.0.0 @@ -1693,12 +1693,12 @@ default-package-overrides: - mime-mail ==0.5.1 - mime-mail-ses ==0.4.3 - mime-types ==0.1.2.0 + - min-max-pqueue ==0.1.0.2 - minimal-configuration ==0.1.4 - minimorph ==0.3.0.1 - minisat-solver ==0.1 - miniterion ==0.1.1.1 - miniutter ==0.5.1.2 - - min-max-pqueue ==0.1.0.2 - mintty ==0.1.4 - misfortune ==0.1.2.1 - miso ==1.8.7.0 @@ -1728,7 +1728,6 @@ default-package-overrides: - monad-coroutine ==0.9.2 - monad-extras ==0.6.0 - monad-interleave ==0.2.0.1 - - monadlist ==0.0.2 - monad-logger ==0.3.42 - monad-logger-aeson ==0.4.1.3 - monad-logger-json ==0.1.0.0 @@ -1737,29 +1736,30 @@ default-package-overrides: - monad-loops ==0.4.3 - monad-memo ==0.5.4 - monad-metrics ==0.2.2.2 - - monadoid ==0.0.3 - - monadology ==0.3 - monad-par ==0.3.6 - - monad-parallel ==0.8 - monad-par-extras ==0.3.3 + - monad-parallel ==0.8 - monad-peel ==0.3 - - MonadPrompt ==1.0.0.5 - - MonadRandom ==0.6.2 - monad-resumption ==0.1.4.0 - monad-schedule ==0.2.0.2 - monad-st ==0.2.4.1 - - monads-tf ==0.3.0.1 - monad-time ==0.4.0.0 + - monadlist ==0.0.2 + - monadoid ==0.0.3 + - monadology ==0.3 + - MonadPrompt ==1.0.0.5 + - MonadRandom ==0.6.2 + - monads-tf ==0.3.0.1 - mongoDB ==2.7.1.4 - - monoidal-containers ==0.6.6.0 - - monoidal-functors ==0.2.3.0 - - monoid-extras ==0.6.5 - - monoidmap ==0.0.4.3 - - monoid-subclasses ==1.2.6 - - monoid-transformer ==0.0.4 - mono-traversable ==1.0.21.0 - mono-traversable-instances ==0.1.1.0 - mono-traversable-keys ==0.3.0 + - monoid-extras ==0.6.5 + - monoid-subclasses ==1.2.6 + - monoid-transformer ==0.0.4 + - monoidal-containers ==0.6.6.0 + - monoidal-functors ==0.2.3.0 + - monoidmap ==0.0.4.3 - more-containers ==0.2.2.2 - morpheus-graphql ==0.28.1 - morpheus-graphql-app ==0.28.1 @@ -1779,15 +1779,15 @@ default-package-overrides: - mtl-compat ==0.2.2 - mtl-misc-yj ==0.1.0.4 - mtl-prelude ==2.0.3.2 - - multiarg ==0.30.0.10 - multi-containers ==0.2 + - multiarg ==0.30.0.10 - multimap ==1.2.1 - multipart ==0.2.1 - MultipletCombiner ==0.0.7 - multiset ==0.3.4.3 - multistate ==0.8.0.4 - - murmur3 ==1.0.5 - murmur-hash ==0.1.0.11 + - murmur3 ==1.0.5 - MusicBrainz ==0.4.1 - mustache ==2.4.2 - mutable-containers ==0.3.4.1 @@ -1800,6 +1800,7 @@ default-package-overrides: - mysql-haskell-nem ==0.1.0.0 - mysql-json-table ==0.1.4.1 - mysql-simple ==0.4.9 + - n-tuple ==0.0.3 - n2o ==0.11.1 - n2o-nitro ==0.11.2 - nagios-check ==0.3.2 @@ -1851,23 +1852,22 @@ default-package-overrides: - NineP ==0.0.2.1 - nix-derivation ==1.1.3 - nix-paths ==1.0.1 + - no-value ==1.0.0.0 - NoHoed ==0.1.1 - - nonce ==1.0.7 - - nondeterminism ==1.5 - non-empty ==0.3.5 - - nonempty-containers ==0.3.4.5 - non-empty-sequence ==0.2.0.4 - non-empty-text ==0.2.1 + - non-negative ==0.1.2 + - nonce ==1.0.7 + - nondeterminism ==1.5 + - nonempty-containers ==0.3.4.5 - nonempty-vector ==0.2.4 - nonempty-zipper ==1.0.1.1 - - non-negative ==0.1.2 - normaldistribution ==1.1.0.3 - nothunks ==0.3.0.0 - - no-value ==1.0.0.0 - nowdoc ==0.1.1.0 - nqe ==0.6.5 - nsis ==0.3.3 - - n-tuple ==0.0.3 - numbers ==3000.2.0.2 - numeric-extras ==0.1 - numeric-limits ==0.1.0.0 @@ -1883,9 +1883,9 @@ default-package-overrides: - nvim-hs-contrib ==2.0.0.2 - nvim-hs-ghcid ==2.0.1.0 - nvvm ==0.10.0.1 + - o-clock ==1.4.0.1 - ObjectName ==1.1.0.2 - oblivious-transfer ==0.1.0 - - o-clock ==1.4.0.1 - odbc ==0.3.0 - ods2csv ==0.1.0.1 - oeis2 ==1.0.9 @@ -1903,9 +1903,10 @@ default-package-overrides: - oo-prototypes ==0.1.0.0 - oops ==0.2.0.1 - opaleye ==0.10.5.0 + - open-browser ==0.2.1.1 + - open-witness ==0.6 - OpenAL ==1.7.0.5 - openapi3 ==3.2.4 - - open-browser ==0.2.1.1 - openexr-write ==0.1.0.2 - OpenGL ==3.0.3.0 - OpenGLRaw ==3.3.4.1 @@ -1916,7 +1917,6 @@ default-package-overrides: - opentelemetry-extra ==0.8.0 - opentelemetry-lightstep ==0.8.0 - opentelemetry-wai ==0.8.0 - - open-witness ==0.6 - operational ==0.2.4.2 - opml-conduit ==0.9.0.0 - opt-env-conf ==0.8.0.0 @@ -1934,8 +1934,8 @@ default-package-overrides: - optparse-generic ==1.5.2 - optparse-simple ==0.1.1.4 - optparse-text ==0.1.1.0 - - OrderedBits ==0.0.2.0 - ordered-containers ==0.2.4 + - OrderedBits ==0.0.2.0 - ormolu ==0.7.4.0 - os-string ==2.0.7 - overhang ==1.0.0 @@ -1971,8 +1971,8 @@ default-package-overrides: - parsers ==0.12.12 - partial-handler ==1.0.3 - partial-isomorphisms ==0.2.4.0 - - partialord ==0.0.2 - partial-order ==0.2.0.0 + - partialord ==0.0.2 - password ==3.1.0.1 - password-instances ==3.0.0.0 - password-types ==1.0.0.0 @@ -1983,17 +1983,17 @@ default-package-overrides: - path-io ==1.8.2 - path-like ==0.2.0.2 - path-pieces ==0.2.1 - - pathtype ==0.8.1.3 - path-utils ==0.1.1.0 + - pathtype ==0.8.1.3 - pathwalk ==0.3.1.2 - patience ==0.3 - patrol ==1.0.0.9 - pava ==0.1.1.4 - pcg-random ==0.1.4.0 - - pcre2 ==2.2.2 - pcre-heavy ==1.0.0.3 - pcre-light ==0.4.1.3 - pcre-utils ==0.1.9 + - pcre2 ==2.2.2 - pdc ==0.1.1 - pdf-toolbox-content ==0.1.2 - pdf-toolbox-core ==0.1.3 @@ -2066,11 +2066,12 @@ default-package-overrides: - polysemy-plugin ==0.4.5.3 - polysemy-webserver ==0.2.1.2 - pooled-io ==0.0.2.3 - - portable-lines ==0.1 - port-utils ==0.2.1.0 + - portable-lines ==0.1 - posix-paths ==0.3.0.0 - posix-pty ==0.2.2 - possibly ==1.0.0.0 + - post-mess-age ==0.2.1.0 - postgres-options ==0.2.2.0 - postgresql-binary ==0.14.0.1 - postgresql-libpq ==0.11.0.0 @@ -2082,7 +2083,6 @@ default-package-overrides: - postgresql-simple-url ==0.2.1.0 - postgresql-syntax ==0.4.1.2 - postgresql-typed ==0.6.2.5 - - post-mess-age ==0.2.1.0 - pptable ==0.3.0.0 - pqueue ==1.5.0.0 - prairie ==0.0.4.0 @@ -2090,10 +2090,15 @@ default-package-overrides: - prefix-units ==0.3.0.1 - prelude-compat ==0.0.0.2 - prelude-safeenum ==0.1.1.3 - - prettychart ==0.2.2.0 - - prettyclass ==1.0.0.0 - pretty-class ==1.0.1.1 - pretty-hex ==1.1 + - pretty-relative-time ==0.3.0.0 + - pretty-show ==1.10 + - pretty-simple ==4.1.3.0 + - pretty-sop ==0.2.0.3 + - pretty-terminal ==0.1.0.0 + - prettychart ==0.2.2.0 + - prettyclass ==1.0.0.0 - prettyprinter ==1.7.1 - prettyprinter-ansi-terminal ==1.1.3 - prettyprinter-combinators ==0.1.3 @@ -2101,11 +2106,7 @@ default-package-overrides: - prettyprinter-compat-ansi-wl-pprint ==1.0.2 - prettyprinter-compat-wl-pprint ==1.0.1 - prettyprinter-interp ==0.2.0.0 - - pretty-relative-time ==0.3.0.0 - - pretty-show ==1.10 - - pretty-simple ==4.1.3.0 - - pretty-sop ==0.2.0.3 - - pretty-terminal ==0.1.0.0 + - prim-uniq ==0.2 - primecount ==0.1.0.2 - primes ==0.2.1.0 - primitive ==0.9.1.0 @@ -2115,24 +2116,19 @@ default-package-overrides: - primitive-serial ==0.1 - primitive-unaligned ==0.1.1.2 - primitive-unlifted ==2.1.0.0 - - prim-uniq ==0.2 - print-console-colors ==0.1.0.0 - probability ==0.2.8 - process-extras ==0.7.4 - product-isomorphic ==0.0.3.4 - product-profunctors ==0.11.1.1 - profunctors ==5.6.2 - - projectroot ==0.2.0.1 - project-template ==0.2.1.0 + - projectroot ==0.2.0.1 - prometheus ==2.3.0 - prometheus-client ==1.1.1 - prometheus-metrics-ghc ==1.0.1.2 - promises ==0.3 - prospect ==0.1.0.0 - - protobuf ==0.2.1.3 - - protobuf-simple ==0.1.1.1 - - protocol-radius ==0.0.1.2 - - protocol-radius-test ==0.1.0.1 - proto-lens ==0.7.1.5 - proto-lens-arbitrary ==0.1.2.14 - proto-lens-optparse ==0.1.1.13 @@ -2140,6 +2136,10 @@ default-package-overrides: - proto-lens-protoc ==0.8.0.1 - proto-lens-runtime ==0.7.0.7 - proto-lens-setup ==0.4.0.9 + - protobuf ==0.2.1.3 + - protobuf-simple ==0.1.1.1 + - protocol-radius ==0.0.1.2 + - protocol-radius-test ==0.1.0.1 - protolude ==0.3.4 - proxied ==0.3.2 - psql-helpers ==0.1.0.0 @@ -2194,24 +2194,24 @@ default-package-overrides: - random-shuffle ==0.0.4 - random-tree ==0.6.0.5 - range ==0.3.0.2 + - range-set-list ==0.1.4 - ranged-list ==0.1.2.1 - Ranged-sets ==0.4.0 - ranges ==0.2.4 - - range-set-list ==0.1.4 - rank1dynamic ==0.4.3 - rank2classes ==1.5.4 - Rasterific ==0.7.5.4 - rasterific-svg ==0.3.3.2 - - ratel ==2.0.0.13 - rate-limit ==1.4.3 + - ratel ==2.0.0.13 - ratel-wai ==2.0.0.8 - ratio-int ==0.1.2 - rattle ==0.2 - rattletrap ==14.1.1 - Rattus ==0.5.1.1 + - raw-strings-qq ==1.1 - rawfilepath ==1.1.1 - rawstring-qm ==0.2.3.0 - - raw-strings-qq ==1.1 - rcu ==0.2.7 - rdf ==0.1.0.8 - rdtsc ==1.3.0.1 @@ -2220,27 +2220,27 @@ default-package-overrides: - reactive-banana-bunch ==1.0.0.1 - reactive-jack ==0.4.1.2 - reactive-midyim ==0.4.1.1 - - readable ==0.3.1 - read-editor ==0.1.0.2 - read-env-var ==1.0.0.0 + - readable ==0.3.1 - real-dice ==0.1.0.5 - rebase ==1.21.2 - rec-def ==0.2.2 - record-dot-preprocessor ==0.2.17 - record-hasfield ==1.0.1 - recursion-schemes ==5.2.3 - - recv ==0.1.0 + - recv ==0.1.1 - redact ==0.5.0.0 - reddit-scrape ==0.0.1 - redis-glob ==0.1.0.11 - redis-resp ==1.0.0 - reducers ==3.12.5 - - refact ==0.3.0.2 - ref-fd ==0.5.0.1 + - ref-tf ==0.5.0.1 + - refact ==0.3.0.2 - refined ==0.8.2 - reflection ==2.1.9 - RefSerialize ==0.4.0 - - ref-tf ==0.5.0.1 - regex ==1.1.0.2 - regex-applicative ==0.3.4 - regex-base ==0.94.0.3 @@ -2307,18 +2307,19 @@ default-package-overrides: - rot13 ==0.2.0.1 - RoundingFiasco ==0.1.0.0 - row-types ==1.0.1.2 - - rpmbuild-order ==0.4.12 - - rpm-nvr ==0.1.2 - rp-tree ==0.7.1 + - rpm-nvr ==0.1.2 + - rpmbuild-order ==0.4.12 - rrb-vector ==0.2.2.1 - RSA ==2.4.1 - rss ==3000.2.0.8 - rss-conduit ==0.6.0.1 - run-haskell-module ==0.0.2 - - runmemo ==1.0.0.1 - run-st ==0.1.3.3 + - runmemo ==1.0.0.1 - rvar ==0.3.0.2 - rzk ==0.7.5 + - s-cargot ==0.1.6.0 - s3-signer ==0.5.0.0 - safe ==0.3.21 - safe-coloured-text ==0.3.0.2 @@ -2326,14 +2327,14 @@ default-package-overrides: - safe-coloured-text-layout ==0.2.0.1 - safe-coloured-text-layout-gen ==0.0.0.1 - safe-coloured-text-terminfo ==0.3.0.0 - - safecopy ==0.10.4.2 - safe-decimal ==0.2.1.0 - safe-exceptions ==0.1.7.4 - safe-foldable ==0.1.0.0 - safe-gen ==1.0.1 - - safeio ==0.0.6.0 - safe-json ==1.2.1.0 - safe-money ==0.9.1 + - safecopy ==0.10.4.2 + - safeio ==0.0.6.0 - SafeSemaphore ==0.10.1 - salve ==2.0.0.6 - sample-frame ==0.0.4 @@ -2356,7 +2357,6 @@ default-package-overrides: - scalpel-core ==0.6.2.2 - scanf ==0.1.0.0 - scanner ==0.3.1 - - s-cargot ==0.1.6.0 - scheduler ==2.0.1.0 - SciBaseTypes ==0.1.1.0 - scientific ==0.3.8.0 @@ -2366,14 +2366,14 @@ default-package-overrides: - search-algorithms ==0.3.3 - secp256k1-haskell ==1.4.2 - securemem ==0.1.10 + - select-rpms ==0.2.0 - selections ==0.3.0.0 - selective ==0.7.0.1 - - select-rpms ==0.2.0 - semialign ==1.3.1 - semigroupoids ==6.0.1 - semigroups ==0.20 - - semirings ==0.7 - semiring-simple ==1.0.0.1 + - semirings ==0.7 - semver ==0.4.0.1 - sendfile ==0.7.11.6 - sendgrid-v3 ==1.0.0.1 @@ -2429,9 +2429,9 @@ default-package-overrides: - servius ==1.2.3.0 - ses-html ==0.4.0.0 - set-cover ==0.1.1.1 + - set-monad ==0.3.0.0 - setenv ==0.1.1.3 - setlocale ==1.0.0.10 - - set-monad ==0.3.0.0 - sexp-grammar ==2.3.4.2 - SHA ==1.6.4.4 - shake ==0.19.8 @@ -2441,10 +2441,10 @@ default-package-overrides: - shared-memory ==0.2.0.1 - shell-conduit ==5.0.0 - shell-escape ==0.2.0 + - shell-utility ==0.1 - shellify ==0.11.0.4 - shellmet ==0.0.5.0 - shelltestrunner ==1.10 - - shell-utility ==0.1 - shellwords ==0.1.4.3 - shelly ==1.12.1 - should-not-typecheck ==2.1.0 @@ -2517,15 +2517,15 @@ default-package-overrides: - Spintax ==0.3.7.0 - splice ==0.6.1.1 - split ==0.2.5 + - split-record ==0.1.1.4 - splitmix ==0.1.1 - splitmix-distributions ==1.0.0 - - split-record ==0.1.1.4 - Spock-api ==0.14.0.0 - spoon ==0.3.1 - spreadsheet ==0.1.3.10 - sqids ==0.2.2.0 - - sqlite-simple ==0.4.19.0 - sql-words ==0.1.6.5 + - sqlite-simple ==0.4.19.0 - squeather ==0.8.0.0 - srcloc ==0.6.0.1 - srtree ==2.0.0.2 @@ -2552,9 +2552,9 @@ default-package-overrides: - stm-delay ==0.1.1.1 - stm-extras ==0.1.0.3 - stm-hamt ==1.2.1.1 - - STMonadTrans ==0.4.8 - stm-split ==0.0.2.1 - stm-supply ==0.2.0.0 + - STMonadTrans ==0.4.8 - storable-complex ==0.2.3.0 - storable-endian ==0.2.6.1 - storable-hetero-list ==0.1.0.4 @@ -2581,18 +2581,18 @@ default-package-overrides: - strict-mutable-base ==1.1.0.0 - strict-tuple ==0.1.5.4 - strict-wrapper ==0.0.1.0 - - stringable ==0.1.3 - - stringbuilder ==0.5.1 - string-class ==0.1.7.2 - string-combinators ==0.6.0.5 - string-conv ==0.2.0 - string-conversions ==0.4.0.1 - string-interpolate ==0.3.4.0 - - stringprep ==1.0.0 - string-qq ==0.0.6 - - stringsearch ==0.3.6.6 - string-transform ==1.1.1 - string-variants ==0.3.1.1 + - stringable ==0.1.3 + - stringbuilder ==0.5.1 + - stringprep ==1.0.0 + - stringsearch ==0.3.6.6 - strive ==6.0.0.12 - strongweak ==0.11.0 - structs ==0.1.9 @@ -2601,8 +2601,8 @@ default-package-overrides: - subcategories ==0.2.1.1 - sundown ==0.6 - svg-builder ==0.1.1 - - SVGFonts ==1.8.0.1 - svg-tree ==0.6.2.4 + - SVGFonts ==1.8.0.1 - swagger2 ==2.8.9 - swish ==0.10.10.0 - syb ==0.7.2.4 @@ -2636,11 +2636,11 @@ default-package-overrides: - synthesizer-midi ==0.6.1.2 - sysinfo ==0.1.1 - system-argv0 ==0.1.1 - - systemd ==2.4.0 - system-fileio ==0.3.16.6 - system-filepath ==0.4.14.1 - system-info ==0.5.2 - system-linux-proc ==0.1.1.1 + - systemd ==2.4.0 - tabular ==0.2.2.8 - tagchup ==0.4.1.2 - tagged ==0.8.8 @@ -2717,7 +2717,7 @@ default-package-overrides: - test-fun ==0.1.0.0 - testing-feat ==1.1.1.1 - testing-type-modifiers ==0.1.0.1 - - texmath ==0.12.9 + - texmath ==0.12.10 - text-ansi ==0.3.0.1 - text-binary ==0.2.1.1 - text-builder ==0.6.10 @@ -2728,7 +2728,6 @@ default-package-overrides: - text-iso8601 ==0.1.1 - text-latin1 ==0.3.1 - text-ldap ==0.1.1.14 - - textlocal ==0.1.0.5 - text-manipulate ==0.3.1.0 - text-metrics ==0.3.3 - text-misc-yj ==0.1.0.2 @@ -2740,8 +2739,9 @@ default-package-overrides: - text-show ==3.11.1 - text-show-instances ==3.9.10 - text-zipper ==0.13 - - tfp ==1.0.2 + - textlocal ==0.1.0.5 - tf-random ==0.5 + - tfp ==1.0.2 - th-abstraction ==0.7.1.0 - th-bang-compat ==0.0.1.0 - th-compat ==0.1.6 @@ -2750,10 +2750,6 @@ default-package-overrides: - th-deepstrict ==0.1.1.0 - th-desugar ==1.16 - th-env ==0.1.1 - - these ==1.2.1 - - these-lens ==1.0.2 - - these-optics ==1.0.2 - - these-skinny ==0.7.6 - th-expand-syns ==0.4.12.0 - th-extras ==0.0.0.8 - th-lego ==0.3.0.3 @@ -2762,34 +2758,38 @@ default-package-overrides: - th-nowq ==0.1.0.5 - th-orphans ==0.13.16 - th-printf ==0.8 - - thread-hierarchy ==0.3.0.2 - - thread-local-storage ==0.2 - - threads ==0.5.1.8 - - threads-extras ==0.1.0.3 - - thread-supervisor ==0.2.0.0 - - threepenny-gui ==0.9.4.2 - th-reify-compat ==0.0.1.5 - th-reify-many ==0.1.10 - th-strict-compat ==0.1.0.1 - th-test-utils ==1.2.2 - th-utilities ==0.2.5.2 + - these ==1.2.1 + - these-lens ==1.0.2 + - these-optics ==1.0.2 + - these-skinny ==0.7.6 + - thread-hierarchy ==0.3.0.2 + - thread-local-storage ==0.2 + - thread-supervisor ==0.2.0.0 + - threads ==0.5.1.8 + - threads-extras ==0.1.0.3 + - threepenny-gui ==0.9.4.2 - tidal ==1.9.5 - tidal-link ==1.0.3 - tile ==0.3.0.0 - time-compat ==1.9.7 - time-domain ==0.1.0.5 - - timeit ==2.0 - - timelens ==0.2.0.2 - time-lens ==0.4.0.2 - time-locale-compat ==0.1.1.5 - time-locale-vietnamese ==1.0.0.0 - time-manager ==0.2.2 + - time-units ==1.0.0 + - time-units-types ==0.2.0.1 + - timeit ==2.0 + - timelens ==0.2.0.2 + - timer-wheel ==1.0.0.1 - timerep ==2.1.0.0 - timers-tick ==0.5.0.4 - - timer-wheel ==1.0.0.1 - timespan ==0.4.0.0 - - time-units ==1.0.0 - - time-units-types ==0.2.0.1 - timezone-olson ==0.2.1 - timezone-olson-th ==0.1.0.11 - timezone-series ==0.1.13 @@ -2805,10 +2805,10 @@ default-package-overrides: - tmp-proc-redis ==0.7.2.4 - token-bucket ==0.1.0.1 - tokenize ==0.3.0.1 - - tomland ==1.3.3.3 - - toml-parser ==2.0.1.0 + - toml-parser ==2.0.1.2 - toml-reader ==0.2.2.0 - toml-reader-parse ==0.1.1.1 + - tomland ==1.3.3.3 - tools-yj ==0.1.0.23 - tophat ==1.0.8.0 - topograph ==1.0.1 @@ -2832,16 +2832,13 @@ default-package-overrides: - ttc ==1.4.0.0 - ttrie ==0.1.2.2 - tuple ==0.3.0.2 - - tuples ==0.1.0.0 - - tuples-homogenous-h98 ==0.1.1.0 - tuple-sop ==0.3.1.0 - tuple-th ==0.2.5 + - tuples ==0.1.0.0 + - tuples-homogenous-h98 ==0.1.1.0 - turtle ==1.6.2 - twitter-types ==0.11.0 - twitter-types-lens ==0.11.0 - - typecheck-plugin-nat-simple ==0.1.0.9 - - typed-process ==0.2.13.0 - - typed-uuid ==0.2.0.0 - type-equality ==1.0.1 - type-errors ==0.2.0.2 - type-flip ==0.1.0.0 @@ -2853,16 +2850,19 @@ default-package-overrides: - type-level-natural-number ==2.0 - type-level-numbers ==0.1.1.2 - type-level-show ==0.3.0 - - typelevel-tools-yj ==0.1.0.8 - - typelits-witnesses ==0.4.1.0 - type-map ==0.1.7.0 - type-natural ==1.3.0.2 - - typenums ==0.1.4 - type-of-html ==1.6.2.0 - type-of-html-static ==0.1.0.2 - type-rig ==0.1 - type-set ==0.1.0.0 - type-spec ==0.4.0.0 + - typecheck-plugin-nat-simple ==0.1.0.9 + - typed-process ==0.2.13.0 + - typed-uuid ==0.2.0.0 + - typelevel-tools-yj ==0.1.0.8 + - typelits-witnesses ==0.4.1.0 + - typenums ==0.1.4 - typography-geometry ==1.0.1.0 - typst ==0.6.1 - typst-symbols ==0.1.7 @@ -2873,8 +2873,8 @@ default-package-overrides: - uglymemo ==0.1.0.1 - ulid ==0.3.3.0 - unagi-chan ==0.4.1.4 - - unbounded-delays ==0.1.1.1 - unbound-generics ==0.4.4 + - unbounded-delays ==0.1.1.1 - unboxed-ref ==0.4.0.0 - unboxing-vector ==0.2.0.0 - uncaught-exception ==0.1.0 @@ -3026,6 +3026,10 @@ default-package-overrides: - warp-tls ==3.4.9 - wave ==0.2.1 - wcwidth ==0.0.2 + - web-rep ==0.12.3.0 + - web-routes ==0.27.16 + - web-routes-boomerang ==0.28.4.5 + - web-routes-th ==0.22.8.2 - webdriver ==0.12.0.1 - webdriver-wrapper ==0.2.0.1 - webex-teams-api ==0.2.0.1 @@ -3036,10 +3040,6 @@ default-package-overrides: - webgear-swagger ==1.3.1 - webgear-swagger-ui ==1.3.1 - webpage ==0.0.5.1 - - web-rep ==0.12.3.0 - - web-routes ==0.27.16 - - web-routes-boomerang ==0.28.4.5 - - web-routes-th ==0.22.8.2 - webrtc-vad ==0.1.0.3 - websockets ==0.13.0.0 - websockets-simple ==0.2.0 @@ -3054,22 +3054,22 @@ default-package-overrides: - Win32-notify ==0.3.0.3 - windns ==0.1.0.1 - witch ==1.2.4.0 + - with-location ==0.1.0 + - with-utf8 ==1.1.0.0 - withdependencies ==0.3.1 - witherable ==0.5 - within ==0.2.0.1 - - with-location ==0.1.0 - - with-utf8 ==1.1.0.0 - witness ==0.6.2 - wizards ==1.0.3 - wkt-types ==0.1.0.0 - - wled-json ==0.0.1.1 - wl-pprint ==1.2.1 - wl-pprint-annotated ==0.1.0.1 - wl-pprint-text ==1.2.0.2 - - word8 ==0.1.3 + - wled-json ==0.0.1.1 - word-compat ==0.0.6 - word-trie ==0.3.0 - word-wrap ==0.5 + - word8 ==0.1.3 - world-peace ==1.0.2.0 - wrap ==0.0.0 - wraxml ==0.5 @@ -3089,20 +3089,20 @@ default-package-overrides: - xlsx ==1.1.4 - xml ==1.3.14 - xml-basic ==0.1.3.3 - - xmlbf ==0.7 - - xmlbf-xeno ==0.2.2 - - xmlbf-xmlhtml ==0.2.2 - xml-conduit ==1.9.1.4 - xml-conduit-writer ==0.1.1.5 - - xmlgen ==0.6.2.2 - xml-hamlet ==0.5.0.2 - xml-helpers ==1.0.0 - - xmlhtml ==0.2.5.4 - xml-html-qq ==0.1.0.1 - xml-indexed-cursor ==0.1.1.0 - xml-picklers ==0.3.6 - xml-to-json-fast ==2.0.0 - xml-types ==0.3.8 + - xmlbf ==0.7 + - xmlbf-xeno ==0.2.2 + - xmlbf-xmlhtml ==0.2.2 + - xmlgen ==0.6.2.2 + - xmlhtml ==0.2.5.4 - xmonad ==0.18.0 - xmonad-contrib ==0.18.1 - xor ==0.0.1.3 @@ -3112,6 +3112,7 @@ default-package-overrides: - yaml-unscrambler ==0.1.0.19 - Yampa ==0.14.12 - yarn-lock ==0.6.5 + - yes-precure5-command ==5.5.3 - yeshql-core ==4.2.0.0 - yesod ==1.6.2.1 - yesod-auth ==1.6.11.3 @@ -3137,7 +3138,6 @@ default-package-overrides: - yesod-static ==1.6.1.0 - yesod-test ==1.6.16 - yesod-websockets ==0.3.0.3 - - yes-precure5-command ==5.5.3 - yggdrasil-schema ==1.0.0.6 - yi ==0.19.3 - yi-core ==0.19.4 @@ -3162,8 +3162,8 @@ default-package-overrides: - zim-parser ==0.2.1.0 - zip ==2.1.0 - zip-archive ==0.4.3.2 - - zippers ==0.3.2 - zip-stream ==0.2.2.0 + - zippers ==0.3.2 - zlib ==0.7.1.0 - zlib-bindings ==0.1.1.5 - zlib-clib ==1.3.1 diff --git a/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml b/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml index 0ab13af65ce10..69f4c38526260 100644 --- a/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml +++ b/pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml @@ -5,416 +5,10 @@ dont-distribute-packages: - 4Blocks - - ADPfusion - - ADPfusionForest - - ADPfusionSet - - AERN-Net - - AERN-Real - - AERN-Real-Double - - AERN-Real-Interval - - AERN-RnToRm - - AERN-RnToRm-Plot - - ASN1 - - AbortT-monadstf - - AbortT-mtl - - Advgame - - Advise-me - - AlgoRhythm - - AlignmentAlgorithms - - AndroidViewHierarchyImporter - - Annotations - - ApplePush - - AttoJson - - AutoForms - - AvlTree - - BASIC - - BPS - - Barracuda - - BerlekampAlgorithm - - BesselJ - - BioHMM - - Biobase - - BiobaseBlast - - BiobaseDotP - - BiobaseENA - - BiobaseEnsembl - - BiobaseFR3D - - BiobaseFasta - - BiobaseHTTP - - BiobaseHTTPTools - - BiobaseInfernal - - BiobaseMAF - - BiobaseTrainingData - - BiobaseTurner - - BiobaseTypes - - BiobaseVienna - - BiobaseXNA - - BirdPP - - Bitly - - BlastHTTP - - Blobs - - BlogLiterately-diagrams - - Bookshelf - - CBOR - - CC-delcont-alt - - CMCompare - - CPBrainfuck - - CSPM-FiringRules - - CSPM-Interpreter - - CSPM-ToProlog - - CSPM-cspm - - CarneadesIntoDung - - Chart-fltkhs - - ClustalParser - - Coadjute - - Combinatorrent - - ComonadSheet - - Condor - - Configger - - Control-Monad-MultiPass - - CoreFoundation - - DMuCheck - - DOM - - DP - - DRBG - - DSA - - DSH - - DSTM - - Dangerous - - DarcsHelpers - - DeepArrow - - DefendTheKing - - DifferenceLogic - - DisTract - - DnaProteinAlignment - - DocTest - - DrHylo - - Dust - - Dust-crypto - - Dust-tools - - Dust-tools-pcap - - DysFRP-Cairo - - DysFRP-Craftwerk - - EditTimeReport - - EntrezHTTP - - EsounD - - EtaMOO - - Etage-Graph - - Eternal10Seconds - - Etherbunny - - EventSocket - - FComp - - FM-SBLEX - - FTPLine - - FailureT - - FermatsLastMargin - - FieldTrip - - Fin - - Finance-Treasury - - FiniteMap - - FirstOrderTheory - - Flint2-Examples - - Flippi - - ForSyDe - - Forestry - - FormalGrammars - - Foster - - Frames-dsv - - Frames-map-reduce - - Frank - - GLFW-OGL - - GLFW-task - - GPX - - GPipe-Collada - - GPipe-Examples - - GPipe-GLFW - - GPipe-GLFW4 - - GPipe-TextureLoad - - GeBoP - - GenI - - Genbank - - Gene-CluEDO - - GenussFold - - GlomeView - - GoogleDirections - - GoogleSB - - GoogleTranslate - - GrammarProducts - - GraphHammer - - GraphHammer-examples - - Grow - - GrowlNotify - - Gtk2hsGenerics - - GtkGLTV - - GtkTV - - GuiHaskell - - GuiTV - - H - - HAppS-Data - - HAppS-IxSet - - HAppS-Server - - HAppS-State - - HGamer3D-API - - HGamer3D-Audio - - HGamer3D-Bullet-Binding - - HGamer3D-CAudio-Binding - - HGamer3D-CEGUI-Binding - - HGamer3D-Common - - HGamer3D-Enet-Binding - - HGamer3D-GUI - - HGamer3D-Graphics3D - - HGamer3D-InputSystem - - HGamer3D-Network - - HGamer3D-OIS-Binding - - HGamer3D-Ogre-Binding - - HGamer3D-SDL2-Binding - - HGamer3D-SFML-Binding - - HGamer3D-WinEvent - - HGamer3D-Wire - - HJScript - - HLearn-algebra - - HLearn-approximation - - HLearn-classification - - HLearn-datastructures - - HLearn-distributions - - HNM - - HPhone - - HPlot - - HPong - - HQu - - HROOT - - HROOT-graf - - HROOT-hist - - HROOT-io - - HROOT-math - - HROOT-net - - HROOT-tree - - HRay - - HSGEP - - HSHHelpers - - HSoundFile - - HStringTemplateHelpers - - HTab - - HXMPP - - HaRe - - HaTeX-meta - - HaTeX-qq - - HaVSA - - Hach - - HarmTrace - - HasGP - - Hashell - - HaskellNet-SSL - - Hate - - Hawk - - Hayoo - - Hedi - - Hieroglyph - - HiggsSet - - Hipmunk-Utils - - HipmunkPlayground - - Hoed - - Holumbus-Distribution - - Holumbus-MapReduce - - Holumbus-Storage - - HongoDB - - Hs2lib - - HsParrot - - HsWebots - - Hsed - - Hungarian-Munkres - - Hydrogen - - INblobs - - IORefCAS - - IndexedList - - InfixApplicative - - JSON-Combinator - - JSON-Combinator-Examples - - Javasf - - JsContracts - - JsonGrammar - - JuPyTer-notebook - - JunkDB-driver-gdbm - - JunkDB-driver-hashtables - - KiCS - - KiCS-debugger - - KiCS-prophecy - - LDAPv3 - - LPPaver - - LambdaINet - - LambdaPrettyQuote - - LambdaShell - - Lattices - - LinearSplit - - LinkChecker - - ListT - - LogicGrowsOnTrees - - LogicGrowsOnTrees-MPI - - LogicGrowsOnTrees-network - - LogicGrowsOnTrees-processes - - LslPlus - - Lucu - - Lykah - - MC-Fold-DP - - MFlow - - MIP-glpk - - MSQueue - - MailchimpSimple - - Map - - MetaObject - - Metrics - - Mhailist - - Michelangelo - - MicrosoftTranslator - - MissingPy - - MonadCatchIO-mtl-foreign - - MonadLab - - Monaris - - Monatron-IO - - Mondrian - - Monocle - - MuCheck-HUnit - - MuCheck-Hspec - - MuCheck-QuickCheck - - MuCheck-SmallCheck - - Munkres-simple - - MutationOrder - - NGLess - - NTRU - - NaCl - - NaperianNetCDF - - NearContextAlgebra - - Network-NineP - - Ninjas - - NoSlow - - Nomyx - - Nomyx-Core - - Nomyx-Language - - Nomyx-Rules - - Nomyx-Web - - NonEmptyList - - Nussinov78 - - OnRmt - - OpenAFP-Utils - - OpenGLCheck - - OpenSCAD - - OpenVG - - PCLT-DB - - PageIO - - Paillier - - Paraiso - - Parallel-Arrows-BaseSpec - - Parallel-Arrows-Eden - - Parallel-Arrows-Multicore - - Parallel-Arrows-ParMonad - - PermuteEffects - - Plot-ho-matic - - PlslTools - - Printf-TH - - ProbabilityMonads - - Pugs - - Pup-Events - - Pup-Events-Demo - - Quelea - - RESTng - - RJson - - RMP - - RNAFold - - RNAFoldProgs - - RNAdesign - - RNAdraw - - RNAlien - - RNAwolf - - Raincat - - Ranka - - RollingDirectory - - S3 - - SBench - - SCRIPTWriter - - SCalendar - - SFML-control - - SFont - - SGdemo - - STLinkUSB - - STM32-Zombie - - SVG2Q - - SciFlow-drmaa - - Scurry - - SelectSequencesFromMSA - - Set - - Shellac-compatline - - Shellac-editline - - Shellac-haskeline - - Shellac-readline - - ShortestPathProblems - - Shpadoinkle-backend-pardiff - - Shpadoinkle-backend-snabbdom - - Shpadoinkle-backend-static - - Shpadoinkle-developer-tools - - Shpadoinkle-disembodied - - Shpadoinkle-examples - - Shpadoinkle-html - - Shpadoinkle-lens - - Shpadoinkle-router - - Shpadoinkle-streaming - - Shpadoinkle-template - - Shpadoinkle-widgets - - SimpleGL - - SimpleLog - - SimpleServer - - Smooth - - Snusmumrik - - SoccerFun - - SoccerFunGL - - SourceGraph - - SpacePrivateers - - SpinCounter - - StockholmAlignment - - Strafunski-Sdf2Haskell - - SybWidget - - Synapse - - SyntaxMacros - - TV - - TastyTLT - - Taxonomy - - TaxonomyTools - - TeaHS - - TreeCounter - - Treiber - - TrieMap - - TypeClass - - TypeIlluminator - - UMM - - URLT - - UTFTConverter - - UrlDisp - - ViennaRNA-extras - - WEditorBrick - - WEditorHyphen - - WL500gPControl - - WURFL - - WXDiffCtrl - - WashNGo - - WaveFront - - WebBits-Html - - WebBits-multiplate - - WebCont - - Wired - - WordAlignment - - WringTwistree - - WxGeneric - - XML - - XMPP - - XSaiga - - Yablog - - Yogurt-Standalone - - Z-Botan - - Z-IO - - Z-MessagePack - - Z-YAML - - ZipFold - a50 - abcBridge + - AbortT-monadstf + - AbortT-mtl - ac-machine-conduit - accelerate-arithmetic - accelerate-fourier @@ -429,6 +23,17 @@ dont-distribute-packages: - adhoc-network - adict - adp-multi-monadiccp + - ADPfusion + - ADPfusionForest + - ADPfusionSet + - Advgame + - Advise-me + - AERN-Net + - AERN-Real + - AERN-Real-Double + - AERN-Real-Interval + - AERN-RnToRm + - AERN-RnToRm-Plot - aeson-native - aeson_1_5_6_0 - affine @@ -444,11 +49,13 @@ dont-distribute-packages: - algebra-driven-design - algebra-sql - algolia + - AlgoRhythm - algorithmic-composition-additional - algorithmic-composition-basic - algorithmic-composition-complex - algorithmic-composition-frequency-shift - algorithmic-composition-overtones + - AlignmentAlgorithms - alloy-proxy-fd - alms - alpha @@ -462,11 +69,13 @@ dont-distribute-packages: - analyze-client - anansi-hscolour - anatomy + - AndroidViewHierarchyImporter - animate-example - animate-frames - animate-preview - animate-sdl2 - annah + - Annotations - anonymous-sums-tests - antagonist - anticiv @@ -497,6 +106,7 @@ dont-distribute-packages: - apiary-websockets - apis - apotiki + - ApplePush - approx-rand-test - arbor-monad-metric-datadog - archive-tar-bytestring @@ -513,6 +123,7 @@ dont-distribute-packages: - ascii-cows - ascii-table - asic + - ASN1 - assert4hs - assert4hs-core - assert4hs-hspec @@ -528,6 +139,7 @@ dont-distribute-packages: - atomic-primops-foreign - atp - attenuation-profunctors + - AttoJson - attoparsec-enumerator - attoparsec-iteratee - attoparsec-text-enumerator @@ -535,6 +147,7 @@ dont-distribute-packages: - audiovisual - aura - authoring + - AutoForms - autonix-deps-kf5 - avers - avers-api @@ -544,6 +157,7 @@ dont-distribute-packages: - aviation-cessna172-weight-balance - aviation-navigation - aviation-weight-balance + - AvlTree - awesomium - awesomium-glut - aws-configuration-tools @@ -582,9 +196,11 @@ dont-distribute-packages: - bamse - bamstats - barley + - Barracuda - base32-bytestring - - base_4_21_0_0 - baserock-schema + - base_4_21_0_0 + - BASIC - basic - batchd - batchd-core @@ -604,6 +220,8 @@ dont-distribute-packages: - bech32-th - bein - belka + - BerlekampAlgorithm + - BesselJ - bff - bifunctor - billboard-parser @@ -621,8 +239,25 @@ dont-distribute-packages: - binembed-example - bioace - bioalign + - Biobase + - BiobaseBlast + - BiobaseDotP + - BiobaseENA + - BiobaseEnsembl + - BiobaseFasta + - BiobaseFR3D + - BiobaseHTTP + - BiobaseHTTPTools + - BiobaseInfernal + - BiobaseMAF + - BiobaseTrainingData + - BiobaseTurner + - BiobaseTypes + - BiobaseVienna + - BiobaseXNA - biofasta - biofastq + - BioHMM - bioinformatics-toolkit - biophd - biopsl @@ -631,6 +266,7 @@ dont-distribute-packages: - bip32 - birch-beer - bird + - BirdPP - bisc - biscuit-servant - bishbosh @@ -642,11 +278,13 @@ dont-distribute-packages: - bitcoin-tx - bitcoin-types - bitcoind-regtest + - Bitly - bitly-cli - bitmaps - bittorrent - bla - blakesum-demo + - BlastHTTP - blastxml - blatex - blaze-builder-enumerator @@ -654,7 +292,9 @@ dont-distribute-packages: - ble - blink1 - blip + - Blobs - blogination + - BlogLiterately-diagrams - bloxorz - blubber - bluetile @@ -667,6 +307,7 @@ dont-distribute-packages: - bookkeeper - bookkeeper-permissions - bookkeeping-jp + - Bookshelf - boomslang - boots-app - boots-cloud @@ -675,6 +316,7 @@ dont-distribute-packages: - botan-low - both - bound-gen + - BPS - breakout - bricks - bricks-internal-test @@ -727,6 +369,7 @@ dont-distribute-packages: - car-pool - carboncopy - cardano-addresses + - CarneadesIntoDung - cartel - cas-hashable-s3 - cas-store @@ -749,6 +392,8 @@ dont-distribute-packages: - category - category-extras - cattrap + - CBOR + - CC-delcont-alt - cctools-workqueue - cef3-simple - ceilometer-common @@ -768,6 +413,7 @@ dont-distribute-packages: - chapelure - charade - chart-cli + - Chart-fltkhs - chart-svg-various - chart-unit - chassis @@ -828,14 +474,17 @@ dont-distribute-packages: - clr-bindings - clr-inline - clua + - ClustalParser - clustering - clustertools - clutterhs - cmathml3 + - CMCompare - cmptype - cmv - cnc-spec-compiler - co-feldspar + - Coadjute - cobot-io - codec - codec-libevent @@ -857,10 +506,12 @@ dont-distribute-packages: - columnar - comark - combinat-diagrams + - Combinatorrent - comic - commsec - commsec-keyexchange - comonad-random + - ComonadSheet - compact-mutable - compdoc - compdoc-dhall-decoder @@ -884,6 +535,7 @@ dont-distribute-packages: - concrete-haskell - concrete-haskell-autogen - concurrency-benchmarks + - Condor - condor - conductive-hsc3 - conductive-song @@ -897,6 +549,7 @@ dont-distribute-packages: - conffmt - confide - config-select + - Configger - configifier - configurator-ng - conic-graphs @@ -919,6 +572,7 @@ dont-distribute-packages: - control-monad-exception-monadsfd - control-monad-exception-monadstf - control-monad-exception-mtl + - Control-Monad-MultiPass - conversion-text - conversions - convert @@ -928,10 +582,12 @@ dont-distribute-packages: - coordinate - copilot-cbmc - copilot-sbv + - CoreFoundation - coroutine-enumerator - coroutine-iteratee - couch-simple - couchdb-enumerator + - CPBrainfuck - cprng-aes - cprng-aes-effect - cql-io-tinylog @@ -963,6 +619,10 @@ dont-distribute-packages: - cryptol - cryptonite-cd - crystalfontz + - CSPM-cspm + - CSPM-FiringRules + - CSPM-Interpreter + - CSPM-ToProlog - cspmchecker - csv-enumerator - ctpl @@ -974,11 +634,13 @@ dont-distribute-packages: - dahdit-midi - dahdit-test - daino + - Dangerous - dapi - darcs-benchmark - darcs-beta - darcs-fastconvert - darcsden + - DarcsHelpers - darcswatch - darkplaces-demo - darkplaces-rcon-util @@ -1023,8 +685,10 @@ dont-distribute-packages: - debug - decimal-arithmetic - dedukti + - DeepArrow - deepzoom - defargs + - DefendTheKing - definitive-filesystem - definitive-graphics - definitive-parser @@ -1063,6 +727,7 @@ dont-distribute-packages: - dialog - diff - difference-monoid + - DifferenceLogic - differential - digestive-foundation-lucid - digestive-functors-hsp @@ -1079,6 +744,7 @@ dont-distribute-packages: - discord-haskell-voice - discord-hs - discord-rest + - DisTract - distributed-process-azure - distribution-plot - dixi @@ -1087,6 +753,8 @@ dont-distribute-packages: - dmenu-pkill - dmenu-pmount - dmenu-search + - DMuCheck + - DnaProteinAlignment - dnf-repo - dobutokO-poetry - dobutokO-poetry-general @@ -1094,13 +762,16 @@ dont-distribute-packages: - dobutokO3 - dobutokO4 - doc-review + - DocTest - dojang + - DOM - domaindriven - dormouse-client - dovetail - dovetail-aeson - dow - download-media-content + - DP - dph-examples - dph-lifted-base - dph-lifted-copy @@ -1108,16 +779,27 @@ dont-distribute-packages: - dph-prim-interface - dph-prim-par - dph-prim-seq + - DRBG + - DrHylo - dropbox-sdk - dropsolve + - DSA + - DSH - dsh-sql - dsmc-tools + - DSTM - dtd + - Dust + - Dust-crypto + - Dust-tools + - Dust-tools-pcap - dvda - dynamic-cabal - dynamic-plot - dynamic-pp - dynobud + - DysFRP-Cairo + - DysFRP-Craftwerk - e11y-otel - easytensor - easytensor-vulkan @@ -1128,6 +810,7 @@ dont-distribute-packages: - edge - edges - editable + - EditTimeReport - effect-monad - effective-aspects-mzv - egison @@ -1148,6 +831,7 @@ dont-distribute-packages: - engine-io-wai - engine-io-yesod - entangle + - EntrezHTTP - enum-text-rio - enumerate - enumerate-function @@ -1163,12 +847,17 @@ dont-distribute-packages: - errors-ext - ersatz-toysat - esotericbot + - EsounD - esqueleto-postgis - esqueleto-streaming - estreps + - Etage-Graph + - EtaMOO + - Eternal10Seconds - eternity - eternity-timestamped - ether + - Etherbunny - ethereum-analyzer - ethereum-analyzer-cli - ethereum-analyzer-webui @@ -1184,6 +873,7 @@ dont-distribute-packages: - eventful-sql-common - eventful-sqlite - eventful-test-helpers + - EventSocket - eventsource-geteventstore-store - eventsource-store-specs - eventsource-stub-store @@ -1209,6 +899,7 @@ dont-distribute-packages: - extensible-skeleton - extract-dependencies - factual-api + - FailureT - fair - fallingblocks - family-tree @@ -1230,6 +921,7 @@ dont-distribute-packages: - fay-websockets - fbrnch - fcd + - FComp - feature-flipper-postgres - fedora-composes - fedora-img-dl @@ -1245,18 +937,24 @@ dont-distribute-packages: - fei-nn - feldspar-compiler - feldspar-language + - FermatsLastMargin - festung - ffmpeg-tutorials - ficketed + - FieldTrip - filepath-crypto - filepath-io-access - filesystem-enumerator + - Fin - fin-int + - Finance-Treasury - find-clumpiness - findhttp - finitary-derive - finite-table + - FiniteMap - firstify + - FirstOrderTheory - fishfood - fix-parser-simple - fixed-generic @@ -1267,6 +965,8 @@ dont-distribute-packages: - flexiwrap - flexiwrap-smallcheck - flight-kml + - Flint2-Examples + - Flippi - flite - flower - flowsim @@ -1279,24 +979,32 @@ dont-distribute-packages: - fluent-logger-conduit - fluid-idl-http-client - fluid-idl-scotty + - FM-SBLEX - fmt-for-rio - foldable1 - foldl-transduce-attoparsec - follower - foo + - Forestry + - FormalGrammars - format - format-status - formlets - formlets-hsp - forms-data-format + - ForSyDe - forsyde-deep - forth-hll - foscam-directory - foscam-sort + - Foster - fpco-api - fplll - fpnla-examples - frame-markdown + - Frames-dsv + - Frames-map-reduce + - Frank - freckle-app - freckle-ecs - freckle-http @@ -1321,6 +1029,7 @@ dont-distribute-packages: - frpnow-vty - ftdi - ftp-client-conduit + - FTPLine - ftree - ftshell - funbot @@ -1346,6 +1055,7 @@ dont-distribute-packages: - gbu - gdax - gdiff-ig + - GeBoP - gedcom - geek - geek-server @@ -1357,17 +1067,21 @@ dont-distribute-packages: - gelatin-shaders - gemini-router - gemini-textboard + - Genbank - gencheck + - Gene-CluEDO - generic-accessors - generic-override-aeson - generic-xml - generics-mrsop-gdiff - genesis - genesis-test + - GenI - geni-gui - geni-util - geniconvert - geniserver + - GenussFold - geodetic - geolite-csv - getemx @@ -1403,9 +1117,12 @@ dont-distribute-packages: - glazier-react - glazier-react-examples - glazier-react-widget + - GLFW-OGL + - GLFW-task - global - global-config - glome-hs + - GlomeView - gloss-accelerate - gloss-devil - gloss-raster-accelerate @@ -1423,7 +1140,10 @@ dont-distribute-packages: - goatee-gtk - google-drive - google-mail-filters + - GoogleDirections - googleplus + - GoogleSB + - GoogleTranslate - gore-and-ash-actor - gore-and-ash-async - gore-and-ash-demo @@ -1433,15 +1153,22 @@ dont-distribute-packages: - gore-and-ash-network - gore-and-ash-sdl - gore-and-ash-sync + - GPipe-Collada + - GPipe-Examples + - GPipe-GLFW + - GPipe-GLFW4 + - GPipe-TextureLoad - gps - gps2htmlReport - gpu-vulkan - gpu-vulkan-khr-surface - gpu-vulkan-khr-surface-glfw - gpu-vulkan-khr-swapchain + - GPX - grab-form - graflog - grammar-combinators + - GrammarProducts - grapefruit-examples - grapefruit-frp - grapefruit-records @@ -1458,6 +1185,8 @@ dont-distribute-packages: - graph-rewriting-trs - graph-rewriting-ww - graph-visit + - GraphHammer + - GraphHammer-examples - graphicsFormats - graphicstools - graphtype @@ -1476,6 +1205,8 @@ dont-distribute-packages: - groundhog-postgresql - groundhog-sqlite - groundhog-th + - Grow + - GrowlNotify - grpc-etcd-client - grpc-haskell - gruff @@ -1493,17 +1224,19 @@ dont-distribute-packages: - gtk2hs-cast-gtk - gtk2hs-cast-gtkglext - gtk2hs-cast-gtksourceview2 + - Gtk2hsGenerics + - GtkGLTV - gtkimageview - gtkrsync + - GtkTV - guarded-rewriting + - GuiHaskell + - GuiTV + - H - h3spec - - hOff-display - - hPDB - - hPDB-examples - - hS3 - habit - hablo - - hablog + - Hach - hack-contrib - hack-contrib-press - hack-handler-epoll @@ -1530,16 +1263,20 @@ dont-distribute-packages: - hakyll-ogmarkup - hakyll-shortcut-links - halberd - - halide-JuicyPixels - halide-arrayfire + - halide-JuicyPixels - hall-symbols - halma-gui - halma-telegram-bot - hamusic - hans-pcap - happlets-lib-gtk + - HAppS-Data - happs-hsp - happs-hsp-template + - HAppS-IxSet + - HAppS-Server + - HAppS-State - happs-tutorial - happstack-auth - happstack-authenticate @@ -1558,8 +1295,10 @@ dont-distribute-packages: - happybara-webkit - haquil - hardware-edsl + - HaRe - hark - harmony + - HarmTrace - haroonga-httpd - has-th - hasbolt @@ -1567,8 +1306,10 @@ dont-distribute-packages: - hascat-lib - hascat-setup - hascat-system + - HasGP - hash-addressed - hash-addressed-cli + - Hashell - hashflare - hask-home - haskanoid @@ -1623,6 +1364,7 @@ dont-distribute-packages: - haskelldb-hsql-postgresql - haskelldb-hsql-sqlite3 - haskelldb-th + - HaskellNet-SSL - haskelm - haskey - haskey-mtl @@ -1660,11 +1402,17 @@ dont-distribute-packages: - haste-lib - haste-markup - haste-perch + - Hate + - HaTeX-meta + - HaTeX-qq - hatexmpp3 + - HaVSA - hawitter + - Hawk - haxl-amazonka - haxl-facebook - haxy + - Hayoo - hback - hbayes - hbb @@ -1693,6 +1441,7 @@ dont-distribute-packages: - hecc - hedgehog-checkers-lens - hedgehog-gen-json + - Hedi - hedis-pile - heist-aeson - helic @@ -1721,6 +1470,23 @@ dont-distribute-packages: - hfiar - hfractal - hgalib + - HGamer3D-API + - HGamer3D-Audio + - HGamer3D-Bullet-Binding + - HGamer3D-CAudio-Binding + - HGamer3D-CEGUI-Binding + - HGamer3D-Common + - HGamer3D-Enet-Binding + - HGamer3D-Graphics3D + - HGamer3D-GUI + - HGamer3D-InputSystem + - HGamer3D-Network + - HGamer3D-Ogre-Binding + - HGamer3D-OIS-Binding + - HGamer3D-SDL2-Binding + - HGamer3D-SFML-Binding + - HGamer3D-WinEvent + - HGamer3D-Wire - hgen - hgeometry - hgeometry-combinatorial @@ -1732,6 +1498,8 @@ dont-distribute-packages: - hierarchical-clustering-diagrams - hierarchical-env - hierarchical-spectral-clustering + - Hieroglyph + - HiggsSet - highjson-swagger - highjson-th - himpy @@ -1742,6 +1510,8 @@ dont-distribute-packages: - hinze-streams - hipbot - hipe + - Hipmunk-Utils + - HipmunkPlayground - hipsql-client - hipsql-server - hipsql-tx-simple @@ -1753,9 +1523,15 @@ dont-distribute-packages: - hist-pl-lmf - hit - hit-graph + - HJScript - hjsonschema - hjugement-cli - hlcm + - HLearn-algebra + - HLearn-approximation + - HLearn-classification + - HLearn-datastructures + - HLearn-distributions - hls - hls-call-hierarchy-plugin - hls-exactprint-utils @@ -1766,12 +1542,19 @@ dont-distribute-packages: - hmeap-utils - hmep - hmt-diagrams + - HNM - hnormalise - hob + - Hoed + - hOff-display - hogre - hogre-examples + - Holumbus-Distribution + - Holumbus-MapReduce + - Holumbus-Storage - holy-project - hommage + - HongoDB - hood - hoodie - hoodle @@ -1795,7 +1578,12 @@ dont-distribute-packages: - hpath-directory - hpath-io - hpc-tracer + - hPDB + - hPDB-examples + - HPhone - hplayground + - HPlot + - HPong - hpqtypes-effectful - hpqtypes-extras - hpqtypes-extras_1_17_0_1 @@ -1805,10 +1593,19 @@ dont-distribute-packages: - hps-cairo - hpython - hq + - HQu - hranker + - HRay - hreq-client - hreq-conduit - hriemann + - HROOT + - HROOT-graf + - HROOT-hist + - HROOT-io + - HROOT-math + - HROOT-net + - HROOT-tree - hs - hs-blake2 - hs-ffmpeg @@ -1820,6 +1617,8 @@ dont-distribute-packages: - hs-sdl-term-emulator - hs2ats - hs2dot + - Hs2lib + - hS3 - hsbackup - hsbencher-codespeed - hsbencher-fusion @@ -1836,9 +1635,14 @@ dont-distribute-packages: - hscope - hsdev - hsec-core + - Hsed - hsfacter + - HSGEP + - HSHHelpers - hsinspect-lsp - hslogstash + - HSoundFile + - HsParrot - hspec-dirstream - hspec-expectations-pretty - hspec-pg-transact @@ -1859,12 +1663,15 @@ dont-distribute-packages: - hstar - hstox - hstradeking + - HStringTemplateHelpers - hstzaar - hsubconvert + - HsWebots - hswip - hsx-jmacro - hsx-xhtml - hsyslog-tcp + - HTab - html-kure - html2hamlet - htoml-parse @@ -1883,6 +1690,7 @@ dont-distribute-packages: - hubris - hugs2yc - hulk + - Hungarian-Munkres - hunit-gui - hunp - hunt-searchengine @@ -1910,12 +1718,14 @@ dont-distribute-packages: - hws - hwsl2-bytevector - hwsl2-reducers + - HXMPP - hxournal - hxt-binary - hxt-filter - hxweb - hybrid - hydra-print + - Hydrogen - hydrogen-cli - hydrogen-cli-args - hydrogen-data @@ -1929,7 +1739,6 @@ dont-distribute-packages: - hyloutils - hyperbole - hyperpublic - - iException - ide-backend - ide-backend-server - ideas-math @@ -1937,11 +1746,13 @@ dont-distribute-packages: - ideas-statistics - identicon-style-squares - idna + - iException - ifscs - ige-mac-integration - igrf - ihaskell-inline-r - ihaskell-rlangqq + - ihaskell-symtegration - ihttp - imap - imbib @@ -1957,6 +1768,7 @@ dont-distribute-packages: - importify - imprevu-happstack - improve + - INblobs - inch - incremental-computing - incremental-maps @@ -1965,12 +1777,14 @@ dont-distribute-packages: - indentation-parsec - indentation-trifecta - indexation + - IndexedList - indieweb-algorithms - indigo - inferno-core - inferno-lsp - inferno-vc - infinity + - InfixApplicative - inline-java - inspector-wrecker - instant-aeson @@ -1989,6 +1803,7 @@ dont-distribute-packages: - intset - io-classes-mtl - ion + - IORefCAS - ipatch - ipc - ipld-cid @@ -1997,6 +1812,7 @@ dont-distribute-packages: - irc-fun-client - irc-fun-color - irc-fun-messages + - iri-orphans - ironforge - isevaluated - ismtp @@ -2008,8 +1824,8 @@ dont-distribute-packages: - iteratee-parsec - iteratee-stm - iterio-server - - iterm-show-JuicyPixels - iterm-show-diagrams + - iterm-show-JuicyPixels - ival - ivor - ivory-avr-atmega328p-registers @@ -2033,6 +1849,7 @@ dont-distribute-packages: - java-character - java-reflect - javaclass + - Javasf - javasf - jespresso - jmacro-rpc-happstack @@ -2046,9 +1863,12 @@ dont-distribute-packages: - jordan-servant-openapi - jordan-servant-server - jsc + - JsContracts - jsmw - json-ast-json-encoder - json-b + - JSON-Combinator + - JSON-Combinator-Examples - json-enumerator - json-incremental-decoder - json-pointer-aeson @@ -2060,8 +1880,12 @@ dont-distribute-packages: - json-togo - json2-hdbc - json2sg + - JsonGrammar - jsons-to-schema - jspath + - JunkDB-driver-gdbm + - JunkDB-driver-hashtables + - JuPyTer-notebook - jvm - jvm-batching - jvm-streaming @@ -2107,6 +1931,9 @@ dont-distribute-packages: - keyvaluehash - keyword-args - kicad-data + - KiCS + - KiCS-debugger + - KiCS-prophecy - kif-parser - kit - kmeans-par @@ -2128,8 +1955,6 @@ dont-distribute-packages: - laika - lambda-devs - lambda-options - - lambdaFeed - - lambdaLit - lambdabot-zulip - lambdacat - lambdacms-media @@ -2140,18 +1965,23 @@ dont-distribute-packages: - lambdacube-examples - lambdacube-gl - lambdacube-samples + - lambdaFeed + - LambdaINet + - lambdaLit + - LambdaPrettyQuote + - LambdaShell - lambdaya-bus - lambdiff - lame-tester - landlock - lang - langchain-hs - - language-Modula2 - language-ats - language-boogie - language-ecmascript-analysis - language-eiffel - language-kort + - language-Modula2 - language-ninja - language-oberon - language-puppet @@ -2164,6 +1994,7 @@ dont-distribute-packages: - latex-formulae-pandoc - latex-svg-hakyll - latex-svg-pandoc + - Lattices - launchdarkly-server-sdk-redis-hedis - lawful-classes-hedgehog - lawful-classes-quickcheck @@ -2173,6 +2004,7 @@ dont-distribute-packages: - lda - ldap-scim-bridge - ldapply + - LDAPv3 - leaky - lean - leanpub-wreq @@ -2212,6 +2044,8 @@ dont-distribute-packages: - linear-code - linearEqSolver - linearscan-hoopl + - LinearSplit + - LinkChecker - linkchk - linkcore - linnet-aeson @@ -2233,6 +2067,7 @@ dont-distribute-packages: - list-t-html-parser - list1 - listenbrainz-client + - ListT - liszt - lit - live-sequencer @@ -2258,6 +2093,10 @@ dont-distribute-packages: - log-utils - log4hs - logging-effect-extra + - LogicGrowsOnTrees + - LogicGrowsOnTrees-MPI + - LogicGrowsOnTrees-network + - LogicGrowsOnTrees-processes - lojban - lojysamban - lol @@ -2273,18 +2112,21 @@ dont-distribute-packages: - lorentz - lostcities - loup + - LPPaver - lrucaching-haxl - ls-usb + - LslPlus - lsystem - luachunk - lucid-colonnade - lucienne + - Lucu - lui - luminance-samples - lvish + - Lykah - lz4-conduit - lzma-enumerator - - mDNSResponder-client - macbeth-lib - machines-amazonka - machines-directory @@ -2295,6 +2137,7 @@ dont-distribute-packages: - mahoro - maid - mail-pool + - MailchimpSimple - mailgun - majordomo - majority @@ -2319,6 +2162,7 @@ dont-distribute-packages: - mangopay - mangrove - manifold-random + - Map - marionetta - markdown-pap - markdown2svg @@ -2340,7 +2184,9 @@ dont-distribute-packages: - maxent - maxent-learner-hw-gui - maxsharing + - MC-Fold-DP - mcmc-samplers + - mDNSResponder-client - medea - mediabus-fdk-aac - mediabus-rtp @@ -2354,12 +2200,18 @@ dont-distribute-packages: - merkle-patricia-db - message-db-temp - meta-par-accelerate + - MetaObject - metaplug - metar - metar-http + - Metrics - metronome + - MFlow + - Mhailist + - Michelangelo - micro-gateway - microformats2-types + - MicrosoftTranslator - midimory - mig-server - mighttpd @@ -2372,11 +2224,13 @@ dont-distribute-packages: - minimung - minioperational - minirotate + - MIP-glpk - mismi-kernel - mismi-s3-core - miss - miss-porcelain - missing-py2 + - MissingPy - mixed-strategies - mkbndl - mlist @@ -2399,11 +2253,17 @@ dont-distribute-packages: - monad-http - monad-state - monad-stlike-stm + - MonadCatchIO-mtl-foreign - monadiccp-gecode + - MonadLab - monarch + - Monaris + - Monatron-IO + - Mondrian - monetdb-mapi - mongrel2-handler - monky + - Monocle - monoidmap-aeson - monoidmap-examples - monoidmap-quickcheck @@ -2436,6 +2296,7 @@ dont-distribute-packages: - msgpack-rpc-conduit - msgpack-testsuite - msi-kb-backlit + - MSQueue - mstate - mtgoxapi - mu-avro @@ -2452,6 +2313,10 @@ dont-distribute-packages: - mu-rpc - mu-servant-server - mu-tracing + - MuCheck-Hspec + - MuCheck-HUnit + - MuCheck-QuickCheck + - MuCheck-SmallCheck - multi-cabal - multibase - multifocal @@ -2464,6 +2329,7 @@ dont-distribute-packages: - multirec-alt-deriver - multirec-binary - multisetrewrite + - Munkres-simple - murder - murmurhash3 - mushu @@ -2477,26 +2343,30 @@ dont-distribute-packages: - musicbrainz-email - musicxml2 - mutable-iter + - MutationOrder - mute-unmute - mvclient - mwc-random-monad - mxnet-dataiter - mxnet-examples - mxnet-nn - - myTestlll - mysnapsession-example - mysql-haskell-openssl - mysql-simple-typed + - myTestlll - mywatch - mywork - n2o-web + - NaCl - nakadi-client - named-servant-client - named-servant-server - nanq + - NaperianNetCDF - national-australia-bank - nats-queue - natural-number + - NearContextAlgebra - nemesis-titan - nerf - nero-wai @@ -2520,6 +2390,7 @@ dont-distribute-packages: - network-interfacerequest - network-minihttp - network-netpacket + - Network-NineP - network-pgi - network-protocol-xmpp - network-rpca @@ -2529,19 +2400,28 @@ dont-distribute-packages: - neuron - newsletter-mailgun - newsynth + - NGLess - ngx-export-tools-extra - nikepub + - Ninjas - nirum - nkjp - nlp-scores-scripts - nom + - Nomyx - nomyx-api + - Nomyx-Core - nomyx-core + - Nomyx-Language - nomyx-language - nomyx-library + - Nomyx-Rules - nomyx-server + - Nomyx-Web + - NonEmptyList - nonlinear-optimization-ad - nonlinear-optimization-backprop + - NoSlow - not-gloss - not-gloss-examples - notmuch-web @@ -2554,6 +2434,7 @@ dont-distribute-packages: - nri-prelude - nri-redis - nri-test-encoding + - NTRU - numeric-kinds - numeric-ode - numeric-optimization @@ -2562,6 +2443,7 @@ dont-distribute-packages: - numhask-hedgehog - numhask-range - numhask-test + - Nussinov78 - nyan - nyan-interpolation - nyan-interpolation-simple @@ -2586,21 +2468,27 @@ dont-distribute-packages: - ogma-language-fret-cs - ogma-language-fret-reqs - ois-input-manager + - ollama-holes-plugin - olwrapper - om-kubernetes - one-time-password - online-csv + - OnRmt - oops-examples - opc-xml-da-client - open-adt-tutorial - open-typerep + - OpenAFP-Utils + - OpenGLCheck - openpgp-Crypto - openpgp-crypto-api + - OpenSCAD - openssh-github-keys - opentelemetry-lightstep - opentok - opentracing-jaeger - opentracing-zipkin-v1 + - OpenVG - optimal-blocks - optimusprime - optparse-enum @@ -2616,6 +2504,8 @@ dont-distribute-packages: - pa-json - package-o-tron - padKONTROL + - PageIO + - Paillier - pairing - panda - pandoc-highlighting-extensions @@ -2630,6 +2520,11 @@ dont-distribute-packages: - papa-lens - papa-semigroupoids - par-dual + - Paraiso + - Parallel-Arrows-BaseSpec + - Parallel-Arrows-Eden + - Parallel-Arrows-Multicore + - Parallel-Arrows-ParMonad - parallel-tree-search - parco-attoparsec - parco-parsec @@ -2648,6 +2543,7 @@ dont-distribute-packages: - pcap-enumerator - pcapng - pcf + - PCLT-DB - pdf-slave - pdfname - pdfsplit @@ -2666,6 +2562,7 @@ dont-distribute-packages: - periodic-server - perm - permutations + - PermuteEffects - persistent-audit - persistent-event-source - persistent-eventsource @@ -2721,6 +2618,8 @@ dont-distribute-packages: - pkgtreediff - planet-mitchell - plocketed + - Plot-ho-matic + - PlslTools - plugins-auto - png-file - pngload @@ -2730,7 +2629,6 @@ dont-distribute-packages: - polh-lexicon - poly-rec - polydata - - polysemy-RandomFu - polysemy-account - polysemy-account-api - polysemy-db @@ -2744,6 +2642,7 @@ dont-distribute-packages: - polysemy-methodology-co-log - polysemy-methodology-composite - polysemy-path + - polysemy-RandomFu - polysemy-scoped-fs - polysemy-uncontrolled - polysemy-video @@ -2794,6 +2693,8 @@ dont-distribute-packages: - primal-memory - primula-board - primula-bot + - Printf-TH + - ProbabilityMonads - proc - process-iterio - process-progress @@ -2824,9 +2725,12 @@ dont-distribute-packages: - ptera-th - publicsuffixlist - puffytools + - Pugs - pugs-compat - pugs-hsregex - punkt + - Pup-Events + - Pup-Events-Demo - puppetresources - pure-cdb - pure-priority-queue-tests @@ -2850,6 +2754,7 @@ dont-distribute-packages: - qtah-qt5 - qtah-qt6 - quantfin + - Quelea - queryparser - queryparser-demo - queryparser-hive @@ -2884,6 +2789,7 @@ dont-distribute-packages: - rail-compiler-editor - rails-session - rainbow-tests + - Raincat - raketka - rallod - randfile @@ -2894,6 +2800,7 @@ dont-distribute-packages: - random-hypergeometric - range-space - ranged-list_0_1_2_3 + - Ranka - rasa - rasa-example-config - rasa-ext-bufs @@ -2930,8 +2837,8 @@ dont-distribute-packages: - record-syntax - records-th - recursion-schemes-ix - - redHandlers - reddit + - redHandlers - redis-io - rediscaching-haxl - refh @@ -2995,6 +2902,7 @@ dont-distribute-packages: - rest-types - rest-wai - restful-snap + - RESTng - restricted-workers - rethinkdb-model - rethinkdb-wereHamster @@ -3022,8 +2930,16 @@ dont-distribute-packages: - ripple-federation - risc-v - rivet + - RJson - rlwe-challenges - rmonad + - RMP + - RNAdesign + - RNAdraw + - RNAFold + - RNAFoldProgs + - RNAlien + - RNAwolf - rncryptor - rob - robot @@ -3035,6 +2951,7 @@ dont-distribute-packages: - rollbar-cli - rollbar-wai - rollbar-yesod + - RollingDirectory - ron-rdt - ron-schema - ron-storage @@ -3056,6 +2973,7 @@ dont-distribute-packages: - runtime-arbitrary - rv - s-expression + - S3 - safe-coupling - safe-failure - safe-failure-cme @@ -3088,6 +3006,7 @@ dont-distribute-packages: - satchmo-funsat - satchmo-toysat - sauron + - SBench - sbv-program - sbvPlugin - sc2-lowlevel @@ -3095,6 +3014,7 @@ dont-distribute-packages: - sc2hs - sc3-rdu - scalable-server + - SCalendar - scalp-webhooks - scalpel-search - scan-metadata @@ -3104,6 +3024,7 @@ dont-distribute-packages: - scholdoc - scholdoc-citeproc - scholdoc-texmath + - SciFlow-drmaa - scion - scion-browser - scope @@ -3116,7 +3037,9 @@ dont-distribute-packages: - scp-streams - scrabble-bot - scrapbook + - SCRIPTWriter - scroll + - Scurry - sdl2-sprite - sdp-binary - sdp-deepseq @@ -3133,6 +3056,7 @@ dont-distribute-packages: - secrm - sednaDBXML - seitz-symbol + - SelectSequencesFromMSA - selenium-server - semantic-source - semantic-version @@ -3187,6 +3111,10 @@ dont-distribute-packages: - servant-zeppelin-server - servant-zeppelin-swagger - sessiontypes-distributed + - Set + - SFML-control + - SFont + - SGdemo - sgrep - shady-gen - shady-graphics @@ -3200,11 +3128,28 @@ dont-distribute-packages: - shapes-demo - sheets - shelduck + - Shellac-compatline + - Shellac-editline + - Shellac-haskeline + - Shellac-readline - shellmate-extras - shine-varying - short-vec - short-vec-lens + - ShortestPathProblems - showdown + - Shpadoinkle-backend-pardiff + - Shpadoinkle-backend-snabbdom + - Shpadoinkle-backend-static + - Shpadoinkle-developer-tools + - Shpadoinkle-disembodied + - Shpadoinkle-examples + - Shpadoinkle-html + - Shpadoinkle-lens + - Shpadoinkle-router + - Shpadoinkle-streaming + - Shpadoinkle-template + - Shpadoinkle-widgets - shpider - shuffle - si-clock @@ -3222,7 +3167,10 @@ dont-distribute-packages: - simple-nix - simple-pascal - simple-postgresql-orm + - SimpleGL - simpleirc-lens + - SimpleLog + - SimpleServer - simseq - singletons-base_3_5 - siphon @@ -3245,6 +3193,7 @@ dont-distribute-packages: - smcdel - smith-cli - smith-client + - Smooth - smt - smtlib-backends-z3 - smtlib2-debug @@ -3258,7 +3207,6 @@ dont-distribute-packages: - snap-utils - snaplet-actionlog - snaplet-auth-acid - - snaplet-customauth - snaplet-fay - snaplet-hasql - snaplet-haxl @@ -3287,8 +3235,11 @@ dont-distribute-packages: - snowflake-core - snowflake-server - snumber + - Snusmumrik - soap-openssl - soap-tls + - SoccerFun + - SoccerFunGL - sock2stream - socket-io - sockets-and-pipes @@ -3297,6 +3248,8 @@ dont-distribute-packages: - solr - souffle-dsl - source-code-server + - SourceGraph + - SpacePrivateers - spade - sparkle - sparrow @@ -3312,6 +3265,7 @@ dont-distribute-packages: - sphero - spice - spike + - SpinCounter - splines - sprinkles - sproxy @@ -3319,6 +3273,7 @@ dont-distribute-packages: - sql-simple-pool - sql-simple-postgresql - sql-simple-sqlite + - sqlc-hs - sqlcli-odbc - sqlite-simple-interpolate - sqlite-simple-typed @@ -3349,8 +3304,12 @@ dont-distribute-packages: - statsdi - steeloverseer - stern-brocot + - STLinkUSB + - STM32-Zombie - stmcontrol + - StockholmAlignment - storablevector-streamfusion + - Strafunski-Sdf2Haskell - stratum-tool - stratux - stratux-demo @@ -3392,11 +3351,13 @@ dont-distribute-packages: - sv - sv-cassava - sv-svfactor + - SVG2Q - svg2q - svgone - swapper - switch - syb-with-class-instances-text + - SybWidget - sydtest-amqp - sydtest-webdriver-screenshot - sydtest-webdriver-yesod @@ -3407,6 +3368,7 @@ dont-distribute-packages: - symantic-lib - symbiote - symmetry-operations-symbols + - Synapse - synapse - syncthing-hs - syntax @@ -3415,6 +3377,7 @@ dont-distribute-packages: - syntax-example-json - syntax-pretty - syntax-printer + - SyntaxMacros - syntaxnet-haskell - sys-process - systemstats @@ -3446,10 +3409,14 @@ dont-distribute-packages: - tasty-jenkins-xml - tasty-laws - tasty-lens + - TastyTLT - tateti-tateti + - Taxonomy + - TaxonomyTools - tbox - tccli - tdd-util + - TeaHS - techlab - telegram-bot - telegram-raw-api @@ -3471,6 +3438,10 @@ dont-distribute-packages: - th-instances - theoremquest-client - thimk + - thrift-compiler + - thrift-haxl + - thrift-http + - thrift-lib - thumbnail-polish - tic-tac-toe - tickle @@ -3498,6 +3469,7 @@ dont-distribute-packages: - toboggan - todos - toktok + - toml-reader_0_3_0_0 - tomlcheck - tonatona - tonatona-google-server-api @@ -3530,11 +3502,14 @@ dont-distribute-packages: - trasa-server - trasa-th - traversal-template + - TreeCounter - treemap-html-tools - treersec + - Treiber - trek-app - trek-db - triangulation + - TrieMap - trigger - trimpolya - trurl @@ -3545,6 +3520,7 @@ dont-distribute-packages: - tuple-gen - tuple-ops - turingMachine + - TV - tweet-hs - twentefp-eventloop-graphics - twentefp-eventloop-trees @@ -3571,10 +3547,12 @@ dont-distribute-packages: - type-structure - type-sub-th - typecheck-plugin-nat-simple_0_1_0_11 + - TypeClass - typed-encoding-encoding - typed-gui - typed-streams - typedflow + - TypeIlluminator - typelevel - typescript-docs - typson-beam @@ -3588,6 +3566,7 @@ dont-distribute-packages: - uhc-light - uhc-util - ukrainian-phonetics-basic + - UMM - unagi-bloomfilter - unbound - unfoldable-restricted @@ -3622,6 +3601,8 @@ dont-distribute-packages: - urembed - uri-enumerator - uri-enumerator-file + - UrlDisp + - URLT - usb - usb-enumerator - usb-hid @@ -3629,6 +3610,7 @@ dont-distribute-packages: - usb-iteratee - usb-safe - utf + - UTFTConverter - util-exception - util-primitive-control - util-universe @@ -3672,6 +3654,7 @@ dont-distribute-packages: - vformat-aeson - vformat-time - vfr-waypoints + - ViennaRNA-extras - vigilance - vimeta - vinyl-operational @@ -3705,6 +3688,8 @@ dont-distribute-packages: - warp-grpc - warp-quic - warped + - WashNGo + - WaveFront - wavesurfer - wavy - weatherhs @@ -3721,10 +3706,15 @@ dont-distribute-packages: - web3-polkadot - web3-provider - web3-solidity + - WebBits-Html + - WebBits-multiplate + - WebCont - webcrank-wai - webdriver-w3c - webify - webserver + - WEditorBrick + - WEditorHyphen - weekdaze - weierstrass-functions - weighted @@ -3739,23 +3729,26 @@ dont-distribute-packages: - wikimusic-api-spec - wikimusic-ssr - wikipedia4epub - - wild-bind-task-x11 - windowslive - winery - winio - wire-streams + - Wired - wl-pprint-ansiterm - wl-pprint-terminfo + - WL500gPControl - wlc-hs - wobsurv - wolf - word + - WordAlignment - workflow-extra - workflow-pure - workflow-types - wrecker - wrecker-ui - wright + - WringTwistree - write-buffer-stm - writer-cps-full - wsjtx-udp @@ -3766,19 +3759,23 @@ dont-distribute-packages: - wumpus-drawing - wumpus-microprint - wumpus-tree + - WURFL - wx - wxAsteroids - - wxFruit - - wxSimpleCanvas - wxc - wxcore + - WXDiffCtrl + - wxFruit + - WxGeneric - wxhnotepad + - wxSimpleCanvas - wxturtle - wyvern - xdcc - xdg-basedir-compliant - xhb-atom-cache - xhb-ewmh + - XML - xml-catalog - xml-enumerator - xml-enumerator-combinators @@ -3795,13 +3792,16 @@ dont-distribute-packages: - xmms2-client-glib - xmonad-contrib-bluetilebranch - xmpipe + - XMPP - xournal-builder - xournal-convert - xournal-parser - xournal-render - xournal-types - xrefcheck + - XSaiga - xtc + - Yablog - yajl-enumerator - yam - yam-datasource @@ -3842,11 +3842,16 @@ dont-distribute-packages: - yesod-worker - yjftp - yjftp-libs + - Yogurt-Standalone - yoko - york-lava - yql - yu-launch - yuuko + - Z-Botan + - Z-IO + - Z-MessagePack + - Z-YAML - zasni-gerna - zephyr-copilot - zeromq3-conduit @@ -3857,6 +3862,7 @@ dont-distribute-packages: - zifter-hindent - zifter-hlint - zifter-stack + - ZipFold - zipper - zipper-extra - zippo diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix index 1937f9e616a1e..03dc6bf22533c 100644 --- a/pkgs/development/haskell-modules/configuration-nix.nix +++ b/pkgs/development/haskell-modules/configuration-nix.nix @@ -44,6 +44,8 @@ with haskellLib; # # To avoid this, we use `intersectAttrs` here so we never add packages that are not present # in the parent package set (`super`). + +# To avoid merge conflicts, consider adding your item at an arbitrary place in the list instead. self: super: builtins.intersectAttrs super { diff --git a/pkgs/development/haskell-modules/hackage-packages.nix b/pkgs/development/haskell-modules/hackage-packages.nix index 96fb57ee7651f..af56a4cc2f7d5 100644 --- a/pkgs/development/haskell-modules/hackage-packages.nix +++ b/pkgs/development/haskell-modules/hackage-packages.nix @@ -49274,8 +49274,8 @@ self: { }: mkDerivation { pname = "ac-library-hs"; - version = "1.2.6.0"; - sha256 = "1n10dg5c0khy3ijic77inbvar7n8qir9lqpdqgkjiyn5bhmc7j4x"; + version = "1.4.0.0"; + sha256 = "0ygk977hw4967ravh5wbsfdaasr9wdad7z3c4d0ahfi5p4pvpdyh"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -83373,6 +83373,8 @@ self: { pname = "arithmoi"; version = "0.13.1.0"; sha256 = "0ka0sqkrkqrln6ci8fxzls9r5bhwii48xc39bbapdqbn4sc2c5bf"; + revision = "1"; + editedCabalFile = "1q36pbxsz3vcig7gjr0m38bn5d34az2cjkhcag4n2ra86zdqrnvv"; configureFlags = [ "-f-llvm" ]; libraryHaskellDepends = [ array @@ -102534,8 +102536,8 @@ self: { pname = "bin"; version = "0.1.4"; sha256 = "0amz5naq6p2jpm4rb9ycjg7j75qylp3d689cl55f71rs2idrazpp"; - revision = "1"; - editedCabalFile = "1bxybxc32zzwrpmvbl0a0scz7zpi6dhm4pgv2zrbnmf40s858mjm"; + revision = "2"; + editedCabalFile = "0l2wnnkgi3i9c1gvbrydikcl5xm1an96qqhqjmjg8is9wx5vz5zl"; libraryHaskellDepends = [ base boring @@ -115128,6 +115130,57 @@ self: { } ) { }; + "brick-calendar" = callPackage ( + { + mkDerivation, + base, + brick, + hspec, + microlens, + microlens-platform, + microlens-th, + text, + time, + vector, + vty, + }: + mkDerivation { + pname = "brick-calendar"; + version = "0.2.0.0"; + sha256 = "0q0akqmqrwv3vxglh4m2cld6d2g6rmslc21xq29xvslv7adb34hl"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base + brick + microlens + microlens-th + text + time + vector + vty + ]; + executableHaskellDepends = [ + base + brick + microlens-platform + time + vty + ]; + testHaskellDepends = [ + base + brick + hspec + time + vty + ]; + description = "Calendar widget for the Brick TUI library"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; + } + ) { }; + "brick-dropdownmenu" = callPackage ( { mkDerivation, @@ -127906,8 +127959,8 @@ self: { }: mkDerivation { pname = "calligraphy"; - version = "0.1.7"; - sha256 = "0lmhp9zqn65qlf93aijqcpnx5gbw51ms09hc553ks1nw4g97cpvv"; + version = "0.1.8"; + sha256 = "0sqv1z39cd40915s8z1jna92r5kd4q8ik3ma1s3n7j8pirfh6dl5"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -130783,8 +130836,8 @@ self: { }: mkDerivation { pname = "cases"; - version = "0.1.4.3"; - sha256 = "0fsaprw6q708hpgr8v5kvksa1f0wgjfwckpgds6qxzpaikh73gk4"; + version = "0.1.4.4"; + sha256 = "03497ni0iayd5rbffbi1arw6w76k56d0b4fx3idj43z0r002cxzy"; libraryHaskellDepends = [ attoparsec base @@ -134283,6 +134336,29 @@ self: { } ) { }; + "cfuture" = callPackage ( + { + mkDerivation, + base, + base-prelude, + }: + mkDerivation { + pname = "cfuture"; + version = "1.0"; + sha256 = "1ifi3bj254b0g8klyjqw7lhmvpmq7ws2sl19ndyvq7f6iq3sk33a"; + libraryHaskellDepends = [ + base + base-prelude + ]; + testHaskellDepends = [ + base + base-prelude + ]; + description = "A Future type that is easy to represent and handle in C/C++"; + license = lib.licenses.bsd3; + } + ) { }; + "cg" = callPackage ( { mkDerivation, @@ -144298,8 +144374,8 @@ self: { }: mkDerivation { pname = "clod"; - version = "0.2.2"; - sha256 = "1r71lqpj29x9i8hsc8baajny2b79d5mp2l9xdnsadmgmxsszvdvb"; + version = "0.2.3"; + sha256 = "0cg3xgh15h0p58riwy7kwwg1isdw9y5j79ihr7d94fmjl9g2x7b6"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -155768,6 +155844,50 @@ self: { } ) { }; + "conduit-concurrent-map_0_1_4" = callPackage ( + { + mkDerivation, + base, + conduit, + containers, + hspec, + HUnit, + mtl, + QuickCheck, + resourcet, + say, + unliftio, + unliftio-core, + vector, + }: + mkDerivation { + pname = "conduit-concurrent-map"; + version = "0.1.4"; + sha256 = "1x8iydyjwa1lm3lmv2fc95ny3xdxzqdqk1cckyf6v7ny6lgv7smi"; + libraryHaskellDepends = [ + base + conduit + containers + mtl + resourcet + unliftio + unliftio-core + vector + ]; + testHaskellDepends = [ + base + conduit + hspec + HUnit + QuickCheck + say + ]; + description = "Concurrent, order-preserving mapping Conduit"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + } + ) { }; + "conduit-connection" = callPackage ( { mkDerivation, @@ -162424,7 +162544,9 @@ self: { doHaddock = false; description = "System for verifying the correctness of generated Copilot programs"; license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; mainProgram = "verify-examples"; + broken = true; } ) { }; @@ -164621,6 +164743,25 @@ self: { } ) { }; + "cpu-features" = callPackage ( + { mkDerivation, base }: + mkDerivation { + pname = "cpu-features"; + version = "0.1.0.0"; + sha256 = "0v5yfxmmy3d8ahfbaab2f2wilkcl7xds4wnabqrgmzk269l2lzvn"; + revision = "1"; + editedCabalFile = "05rrbqi3rx78j8c56f2mccwxwll5mrq8yxfys1algbhagqs6gvqi"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ base ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ base ]; + description = "A library to detect CPU features"; + license = lib.licenses.bsd3; + mainProgram = "cpu-features-demo"; + } + ) { }; + "cpuid" = callPackage ( { mkDerivation, @@ -170694,6 +170835,8 @@ self: { pname = "css-syntax"; version = "0.1.0.2"; sha256 = "10xl92ib6hkbqhr75n6nla1v1krx251k9k46jyvkr00kz0a9dpbr"; + revision = "1"; + editedCabalFile = "17ba5y65j4dyilbki8wcyv9pq16c8s4w981v9krrqscgqass4nnv"; libraryHaskellDepends = [ base scientific @@ -176626,7 +176769,7 @@ self: { } ) { }; - "data-effects_0_4_0_2" = callPackage ( + "data-effects_0_4_2_0" = callPackage ( { mkDerivation, base, @@ -176648,8 +176791,8 @@ self: { }: mkDerivation { pname = "data-effects"; - version = "0.4.0.2"; - sha256 = "0dkrn3p8whywqmiznq8wp2g7j12pnrjjm11w7pj64hgjx0s0rkaf"; + version = "0.4.2.0"; + sha256 = "0zxv65j4xk76yc861sii9jv8cdm6hzqa2z17pp3x320vz9w1ms5i"; libraryHaskellDepends = [ base co-log-core @@ -176707,7 +176850,7 @@ self: { } ) { }; - "data-effects-core_0_4_0_2" = callPackage ( + "data-effects-core_0_4_2_0" = callPackage ( { mkDerivation, base, @@ -176723,8 +176866,8 @@ self: { }: mkDerivation { pname = "data-effects-core"; - version = "0.4.0.2"; - sha256 = "03p30sj5nqqmkw55p0fc83ncx5w8z7rpi920x35mdgl00wpxxs6a"; + version = "0.4.2.0"; + sha256 = "0m45lvyy4rpl1n0dk7pbpw7hna2i4m5l5s4x8vgs2afp8wdc15ix"; libraryHaskellDepends = [ base free @@ -176801,7 +176944,7 @@ self: { } ) { }; - "data-effects-th_0_4_0_2" = callPackage ( + "data-effects-th_0_4_2_1" = callPackage ( { mkDerivation, base, @@ -176810,7 +176953,6 @@ self: { data-effects-core, either, extra, - formatting, infinite-list, lens, mtl, @@ -176823,8 +176965,8 @@ self: { }: mkDerivation { pname = "data-effects-th"; - version = "0.4.0.2"; - sha256 = "08qa9f0mc4246qp8dnfp7pcbfvlfvrgpqyv407nqqnd1wc7nlf78"; + version = "0.4.2.1"; + sha256 = "0xfmyaj1acri8bjvylnwvr12i4aza6zamfj15ffviwk1q9ryzgp4"; libraryHaskellDepends = [ base containers @@ -176832,7 +176974,6 @@ self: { data-effects-core either extra - formatting infinite-list lens mtl @@ -177154,10 +177295,12 @@ self: { "data-findcycle" = callPackage ( { mkDerivation, + array, base, containers, deepseq, hashable, + mtl, primes, QuickCheck, tasty, @@ -177167,12 +177310,14 @@ self: { }: mkDerivation { pname = "data-findcycle"; - version = "0.1.0.0"; - sha256 = "0l0ggmrb6czfy81qbdfm5iyi7mkipqgnrz26c6b38fahbrqflpa3"; + version = "0.1.1.0"; + sha256 = "06ix4v13gwxvbyaw89ka97zrbh5y2rmw12gl3lb41k823aaglgdj"; libraryHaskellDepends = [ + array base containers hashable + mtl unordered-containers ]; testHaskellDepends = [ @@ -179892,8 +180037,8 @@ self: { }: mkDerivation { pname = "dataframe"; - version = "0.1.0.1"; - sha256 = "1n17s20s4lznqs4rx8f90zw5sijkz0s6b48j6wrg4wgddg3dsb2m"; + version = "0.1.0.3"; + sha256 = "0p4syk43nz1b9x9fzm3hgrdgksjs3siqgczaf2bqmgrra61fw8nh"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -182542,6 +182687,8 @@ self: { pname = "debruijn"; version = "0.3"; sha256 = "0yww60649wcaz7yjlhli5kijlcminf1h2n4f9za3ca85m20jzzy9"; + revision = "1"; + editedCabalFile = "11n3x3pviakx6q0cgnky0y3qgxjc89giq2jvk714b9vwb59rd0zj"; libraryHaskellDepends = [ base deepseq @@ -182569,6 +182716,8 @@ self: { pname = "debruijn-safe"; version = "0.3"; sha256 = "1x95kffjjki304bj37viz6rn74g51cm1ndikdc19zgkxxarraxxp"; + revision = "1"; + editedCabalFile = "0hlgml3nxhdc4d3arphhz51d85x6553cy5asjkabnqi8n0iffdpk"; libraryHaskellDepends = [ base deepseq @@ -182851,8 +183000,8 @@ self: { }: mkDerivation { pname = "debug-print"; - version = "0.2.0.0"; - sha256 = "195hacxpm3ik7r8mcl5vs1l6j5q8nhvvrsxqbp3p7bghybvnaa3v"; + version = "0.2.0.1"; + sha256 = "1bcdmnkxcyicw4f57vlx64iyfj3lwz1157s89k4gdyk3ilc2x8g4"; libraryHaskellDepends = [ aeson base @@ -209751,8 +209900,8 @@ self: { }: mkDerivation { pname = "ekg"; - version = "0.4.1.1"; - sha256 = "19dv4rcdbdahx7kwv1qfxwpifqx3z5psl1kvrwy6ic34x8qfk59c"; + version = "0.4.1.2"; + sha256 = "1k16w8xfnqzbdvbr01yp02fxv6cypsl6z0vfah7zsf7cvw34ryjz"; enableSeparateDataOutput = true; libraryHaskellDepends = [ aeson @@ -210219,8 +210368,8 @@ self: { }: mkDerivation { pname = "ekg-statsd"; - version = "0.2.6.1"; - sha256 = "10svmfns5s3xa4j5a295zdaxn56scmplgch8avraimf3y10spd98"; + version = "0.2.6.2"; + sha256 = "1gkh3fqp41sgskwgp9bzpfxign9wkm8agyzqqxvadipr0v7wih13"; libraryHaskellDepends = [ base bytestring @@ -214908,6 +215057,8 @@ self: { ]; description = "Safe helpers for accessing and modifying environment variables"; license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -227518,6 +227669,201 @@ self: { } ) { }; + "fb-stubs" = callPackage ( + { + mkDerivation, + base, + HUnit, + }: + mkDerivation { + pname = "fb-stubs"; + version = "0.1.0.1"; + sha256 = "03hx929q919r27hskwnkp8ic49k8xgn44b1agy5ig2n4n7r7w7hr"; + libraryHaskellDepends = [ + base + HUnit + ]; + description = "Stubs for dependencies of test code"; + license = lib.licenses.bsd3; + } + ) { }; + + "fb-util" = + callPackage + ( + { + mkDerivation, + aeson, + aeson-pretty, + array, + async, + atomic-primops, + attoparsec, + attoparsec-aeson, + base, + binary, + bytestring, + bytestring-lexing, + clock, + concurrent-extra, + containers, + data-default, + deepseq, + directory, + double-conversion, + either, + exceptions, + extra, + fb-stubs, + filepath, + fmt, + gflags, + ghc, + ghci, + hashable, + haskell-src-exts, + hspec, + hspec-contrib, + HUnit, + integer-gmp, + json, + lens, + libevent, + libglog, + lifted-base, + mangle, + monad-control, + mtl, + optparse-applicative, + pretty, + prettyprinter, + primitive, + process, + QuickCheck, + regex-base, + regex-pcre, + scientific, + some, + split, + stm, + template-haskell, + temporary, + text, + text-show, + time, + transformers, + unix, + unordered-containers, + vector, + }: + mkDerivation { + pname = "fb-util"; + version = "0.1.0.1"; + sha256 = "16n38c1vi99rhvzv61lah6krplf4sgfz74nwngmjn90vm5ah6r4h"; + libraryHaskellDepends = [ + aeson + aeson-pretty + array + async + atomic-primops + attoparsec + attoparsec-aeson + base + binary + bytestring + bytestring-lexing + clock + concurrent-extra + containers + data-default + deepseq + directory + either + exceptions + extra + filepath + ghc + ghci + hashable + haskell-src-exts + HUnit + integer-gmp + json + lens + lifted-base + mangle + monad-control + mtl + optparse-applicative + pretty + prettyprinter + primitive + process + QuickCheck + scientific + some + split + stm + template-haskell + text + text-show + time + transformers + unix + unordered-containers + vector + ]; + libraryPkgconfigDepends = [ + double-conversion + fmt + gflags + libevent + libglog + ]; + testHaskellDepends = [ + aeson + async + base + binary + bytestring + containers + directory + fb-stubs + filepath + hspec + hspec-contrib + HUnit + json + lens + mtl + optparse-applicative + prettyprinter + QuickCheck + regex-base + regex-pcre + scientific + template-haskell + temporary + text + text-show + transformers + unordered-containers + vector + ]; + description = "Various utility libraries"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; + } + ) + { + inherit (pkgs) double-conversion; + inherit (pkgs) fmt; + inherit (pkgs) gflags; + inherit (pkgs) libevent; + libglog = null; + }; + "fbmessenger-api" = callPackage ( { mkDerivation, @@ -232148,6 +232494,8 @@ self: { pname = "fin"; version = "0.3.2"; sha256 = "0h912rcy2krba01yd1xq6wyj2mnq7bqr7ap6rcdfw0sgkxa5j9dr"; + revision = "1"; + editedCabalFile = "0m4h2vqkmjkzbxswyrmj9b33wiq61kij6snlcnflk556acakrzsv"; libraryHaskellDepends = [ base boring @@ -232933,6 +233281,8 @@ self: { pname = "finite-typelits"; version = "0.2.1.0"; sha256 = "0i786r2l3k9fxkpyy6rsi8my6kkar7y8yxk7h9gncm0z6kmvrnvk"; + revision = "1"; + editedCabalFile = "1967xzvdhlk92ifn980pm05jxjnmra32wlfzx7l2p2gn1cydzlhv"; libraryHaskellDepends = [ base deepseq @@ -235273,8 +235623,8 @@ self: { }: mkDerivation { pname = "flatbuffers-parser"; - version = "0.1.1.0"; - sha256 = "08f775sr7hghh5plgh4fvwq408w9d9m7hd5bck7nzfxy0n7l2sij"; + version = "0.2.0.0"; + sha256 = "0qj7148x7h8b4ygzd1x0vdb7yi4zhdh1gxrgqyr5sxr8wrvn6bqd"; libraryHaskellDepends = [ base byte-order @@ -239674,8 +240024,8 @@ self: { }: mkDerivation { pname = "fortran-src"; - version = "0.16.3"; - sha256 = "153zalj2d50w7gazsnc2i0530x1l12w5ppwn86q92xp5j56kij96"; + version = "0.16.5"; + sha256 = "1adqczpb1d2zclgvg03z3izcmmncgxj7bff9zz5p8zc77v8865m4"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -241516,8 +241866,8 @@ self: { }: mkDerivation { pname = "freckle-app"; - version = "1.23.0.1"; - sha256 = "0vpi7kps9xndc1h6wnklpf1k2qaqxx4301pwa9l03ln97l0zkpvr"; + version = "1.23.1.0"; + sha256 = "0ik1ay4vm0qw5jg1zvbdfl1p0gxawlrah9lphg9y2cqq48yj4zql"; libraryHaskellDepends = [ aeson annotated-exception @@ -247222,8 +247572,8 @@ self: { }: mkDerivation { pname = "futhark"; - version = "0.25.29"; - sha256 = "1b7140xkkk89nhxnf8hlss8f6z1nffvp20252019jqv9300xj1zi"; + version = "0.25.30"; + sha256 = "0sqglqm2w22wfl3sx4f4657k37f31mkjhl0xw3lxkpaxj187ijak"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -247831,6 +248181,30 @@ self: { } ) { }; + "fuzzySets" = callPackage ( + { + mkDerivation, + base, + HUnit, + tasty, + tasty-hunit, + }: + mkDerivation { + pname = "fuzzySets"; + version = "1.0.1"; + sha256 = "1snj86p40p8abjhiqqblqi2qz35w3mnsbzq7x70rbc76hp6qyvw1"; + libraryHaskellDepends = [ base ]; + testHaskellDepends = [ + base + HUnit + tasty + tasty-hunit + ]; + description = "Library for constructing and manipulating fuzzy sets and fuzzy relations"; + license = lib.licenses.bsd3; + } + ) { }; + "fuzzyfind" = callPackage ( { mkDerivation, @@ -250779,51 +251153,44 @@ self: { aeson, base, bytestring, - formatting, - heredoc, - hslogger, + containers, http-client, - optparse-applicative, - prettyprinter, + http-client-tls, + scientific, servant, servant-client, servant-client-core, string-conv, text, + time, }: mkDerivation { pname = "genai-lib"; - version = "1.3"; - sha256 = "002158i1g807jp3sn4wlshnnvpf3s1b8al6gaiy12ni0fvvncn1p"; + version = "2.1.0"; + sha256 = "1plzkp0gjg38m4zl6ijxpqfbbpdn2yi7i1nc6d5wsqa5mbc75svp"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ aeson base bytestring - formatting - hslogger + containers http-client + http-client-tls + scientific servant servant-client servant-client-core string-conv text + time ]; executableHaskellDepends = [ - aeson base - formatting - heredoc - optparse-applicative - prettyprinter text ]; - description = "Library and command line tool for interacting with various generative AI LLMs"; + description = "A library for interacting with various generative AI LLMs"; license = lib.licenses.isc; - hydraPlatforms = lib.platforms.none; - mainProgram = "genai"; - broken = true; } ) { }; @@ -253881,8 +254248,6 @@ self: { ]; description = "GenValidity support for URI"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -255732,12 +256097,12 @@ self: { } ) { ghc-platform = null; }; - "ghc-boot-th_9_10_1" = callPackage ( + "ghc-boot-th_9_10_2" = callPackage ( { mkDerivation, base }: mkDerivation { pname = "ghc-boot-th"; - version = "9.10.1"; - sha256 = "1lzwhidhv9dv70i7nkjzbli2qc8s4fbzps311ihz73wx3sdvrrrr"; + version = "9.10.2"; + sha256 = "0g7a71w56hr7s5ysy1nm3wm2s1rly3nc2phfgdr0f1w0pd77shqx"; libraryHaskellDepends = [ base ]; description = "Shared functionality between GHC and the @template-haskell@ library"; license = lib.licenses.bsd3; @@ -257548,7 +257913,7 @@ self: { } ) { }; - "ghc-lib_9_10_1_20250103" = callPackage ( + "ghc-lib_9_10_2_20250503" = callPackage ( { mkDerivation, alex, @@ -257577,10 +257942,8 @@ self: { }: mkDerivation { pname = "ghc-lib"; - version = "9.10.1.20250103"; - sha256 = "1bbwslrsmdkj124vzyvcjl3al661hq9kgbl6n1zsm8mxn5cm8k87"; - revision = "1"; - editedCabalFile = "00ig5ga7jvc8jr14ghkrl34lwrh66mdwannh4pkcdsy7wqsshrpz"; + version = "9.10.2.20250503"; + sha256 = "0glpa8jaq31dga6avif4k9yp6vi11xh68qm3vrcrrcs11bj0wjcq"; enableSeparateDataOutput = true; libraryHaskellDepends = [ array @@ -257615,7 +257978,7 @@ self: { } ) { }; - "ghc-lib_9_12_2_20250320" = callPackage ( + "ghc-lib_9_12_2_20250421" = callPackage ( { mkDerivation, alex, @@ -257645,8 +258008,8 @@ self: { }: mkDerivation { pname = "ghc-lib"; - version = "9.12.2.20250320"; - sha256 = "1pmwky5aka2q07jzari6n3qlhiv6id65l4yg60kgjb6gf1jyknrk"; + version = "9.12.2.20250421"; + sha256 = "1liyrxdf790b3ga7v1kq501pa54wq92yvaggzy6vf1l3viakyxpl"; enableSeparateDataOutput = true; libraryHaskellDepends = [ array @@ -257846,7 +258209,7 @@ self: { } ) { }; - "ghc-lib-parser_9_10_1_20250103" = callPackage ( + "ghc-lib-parser_9_10_2_20250503" = callPackage ( { mkDerivation, alex, @@ -257870,10 +258233,8 @@ self: { }: mkDerivation { pname = "ghc-lib-parser"; - version = "9.10.1.20250103"; - sha256 = "00vzynimqmf4wysskdkp9rlprmhbq0siapbab10h36r2a74rirss"; - revision = "1"; - editedCabalFile = "0apspifskj21jsccb7ka2zq4fvp844ijr5nc2c0plk3bdcr0kb76"; + version = "9.10.2.20250503"; + sha256 = "04nsz41x0v62nbi3y3x3ilxawr3kzldmd8rlxqxzpj00gdd8jndk"; enableSeparateDataOutput = true; libraryHaskellDepends = [ array @@ -257903,7 +258264,7 @@ self: { } ) { }; - "ghc-lib-parser_9_12_2_20250320" = callPackage ( + "ghc-lib-parser_9_12_2_20250421" = callPackage ( { mkDerivation, alex, @@ -257928,8 +258289,8 @@ self: { }: mkDerivation { pname = "ghc-lib-parser"; - version = "9.12.2.20250320"; - sha256 = "1f9d3h8g7ic78k6jnvzm1klw980ad4y3vwkw4lqwrqssbg0800cp"; + version = "9.12.2.20250421"; + sha256 = "1lscfnbpmyv0fahl9y33kwiypnp45iljljax69dxhlr9zdijv7x4"; enableSeparateDataOutput = true; libraryHaskellDepends = [ array @@ -259094,20 +259455,18 @@ self: { ghc, ghc-paths, process, - safe, temporary, }: mkDerivation { pname = "ghc-stdin"; - version = "0.2.0.0"; - sha256 = "03bwm0wxkgnx922cgg1db5zb3cdqmhbp5641qihx176cdlls66yj"; + version = "0.2.1.0"; + sha256 = "0zzw8bznhk1lbd4g8mj3ndrv8r1f19fl5053i7xacxzmybhxadn2"; libraryHaskellDepends = [ base bytestring ghc ghc-paths process - safe temporary ]; description = "Compile source code from the standard input"; @@ -260927,8 +261286,8 @@ self: { { mkDerivation }: mkDerivation { pname = "ghcjs-base"; - version = "0.8.0.2"; - sha256 = "1p78m70jr1bc7c9xh316ib8ldpsk4nzjjz56sax5ygwz4513kc87"; + version = "0.8.0.3"; + sha256 = "1cff0sgcwdas30dgxg9mdab5rk0s1v2qkkb9cr47dl3d5wmc4add"; description = "base library for GHCJS"; license = lib.licenses.mit; platforms = [ "javascript-ghcjs" ]; @@ -261030,8 +261389,8 @@ self: { }: mkDerivation { pname = "ghcjs-dom-hello"; - version = "6.0.0.0"; - sha256 = "16f69w53a3vcfnb805nyn257465gvyv2981gsggvpkzvyqklsp74"; + version = "6.0.0.1"; + sha256 = "0sak5wki9ka40jksj8gx34sap0yp6m9k1am6jc2bddiqi3s792r4"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -262342,77 +262701,6 @@ self: { ) { inherit (pkgs) libdbusmenu; }; "gi-dbusmenugtk3" = - callPackage - ( - { - mkDerivation, - base, - bytestring, - Cabal, - containers, - gi-atk, - gi-dbusmenu, - gi-gdk, - gi-gdkpixbuf, - gi-glib, - gi-gobject, - gi-gtk, - gtk3, - haskell-gi, - haskell-gi-base, - haskell-gi-overloading, - libdbusmenu-gtk3, - text, - transformers, - }: - mkDerivation { - pname = "gi-dbusmenugtk3"; - version = "0.4.15"; - sha256 = "05i72iqv7x9r673d4b4q523q8py0652s79radclqg5maiy40ivfb"; - setupHaskellDepends = [ - base - Cabal - gi-atk - gi-dbusmenu - gi-gdk - gi-gdkpixbuf - gi-glib - gi-gobject - gi-gtk - haskell-gi - ]; - libraryHaskellDepends = [ - base - bytestring - containers - gi-atk - gi-dbusmenu - gi-gdk - gi-gdkpixbuf - gi-glib - gi-gobject - gi-gtk - haskell-gi - haskell-gi-base - haskell-gi-overloading - text - transformers - ]; - libraryPkgconfigDepends = [ - gtk3 - libdbusmenu-gtk3 - ]; - description = "DbusmenuGtk bindings"; - license = lib.licenses.lgpl21Only; - badPlatforms = lib.platforms.darwin; - } - ) - { - inherit (pkgs) gtk3; - inherit (pkgs) libdbusmenu-gtk3; - }; - - "gi-dbusmenugtk3_0_4_16" = callPackage ( { @@ -262476,7 +262764,6 @@ self: { description = "DbusmenuGtk bindings"; license = lib.licenses.lgpl21Only; badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; } ) { @@ -262527,58 +262814,30 @@ self: { { mkDerivation, base, - bytestring, Cabal, - containers, - gi-cairo, - gi-gdkpixbuf, - gi-gio, - gi-glib, - gi-gobject, - gi-pango, - gtk3, + gi-gdk3, haskell-gi, - haskell-gi-base, - haskell-gi-overloading, - text, - transformers, }: mkDerivation { pname = "gi-gdk"; - version = "3.0.29"; - sha256 = "02bxn01znxwfrcdgxhfc8zsyz02x1rin5yz6km4q3fb9vpcrp9ak"; + version = "3.0.30"; + sha256 = "0fq77cryf9njdxxh7ywhv3dinpn5hy5p7ppfsaf6163zw2qjshz3"; + revision = "1"; + editedCabalFile = "1pf2dxjr47hhxkxhv9wy7w8d0w7zbszindja2xqi3ss8imsljpxl"; setupHaskellDepends = [ base Cabal - gi-cairo - gi-gdkpixbuf - gi-gio - gi-glib - gi-gobject - gi-pango + gi-gdk3 haskell-gi ]; libraryHaskellDepends = [ base - bytestring - containers - gi-cairo - gi-gdkpixbuf - gi-gio - gi-glib - gi-gobject - gi-pango - haskell-gi - haskell-gi-base - haskell-gi-overloading - text - transformers + gi-gdk3 ]; - libraryPkgconfigDepends = [ gtk3 ]; - description = "Gdk bindings"; + description = "Gdk 3.x bindings (compatibility layer)"; license = lib.licenses.lgpl21Only; } - ) { inherit (pkgs) gtk3; }; + ) { }; "gi-gdk_4_0_10" = callPackage ( { @@ -263759,64 +264018,30 @@ self: { { mkDerivation, base, - bytestring, Cabal, - containers, - gi-atk, - gi-cairo, - gi-gdk, - gi-gdkpixbuf, - gi-gio, - gi-glib, - gi-gobject, - gi-pango, - gtk3, + gi-gtk3, haskell-gi, - haskell-gi-base, - haskell-gi-overloading, - text, - transformers, }: mkDerivation { pname = "gi-gtk"; - version = "3.0.43"; - sha256 = "14kgnyi6h8z3p3k9lis8ci0m189iacijvx88nyfsiilji53zw0yp"; + version = "3.0.44"; + sha256 = "19rj31plyr8syx0g0f5q7p0g8ay4i38cfnmqdkvzbx7zczv7hlck"; + revision = "1"; + editedCabalFile = "18yxy4h72rc13qjqzkr3jqpk19fvahmj9hhyllc4hy3z3s7zp0zp"; setupHaskellDepends = [ base Cabal - gi-atk - gi-cairo - gi-gdk - gi-gdkpixbuf - gi-gio - gi-glib - gi-gobject - gi-pango + gi-gtk3 haskell-gi ]; libraryHaskellDepends = [ base - bytestring - containers - gi-atk - gi-cairo - gi-gdk - gi-gdkpixbuf - gi-gio - gi-glib - gi-gobject - gi-pango - haskell-gi - haskell-gi-base - haskell-gi-overloading - text - transformers + gi-gtk3 ]; - libraryPkgconfigDepends = [ gtk3 ]; - description = "Gtk bindings"; + description = "Gtk 3.x bindings (compatibility layer)"; license = lib.licenses.lgpl21Only; } - ) { inherit (pkgs) gtk3; }; + ) { }; "gi-gtk_4_0_12" = callPackage ( { @@ -265494,70 +265719,6 @@ self: { ) { inherit (pkgs) vips; }; "gi-vte" = callPackage ( - { - mkDerivation, - base, - bytestring, - Cabal, - containers, - gi-atk, - gi-cairo, - gi-gdk, - gi-gio, - gi-glib, - gi-gobject, - gi-gtk, - gi-pango, - haskell-gi, - haskell-gi-base, - haskell-gi-overloading, - text, - transformers, - vte_291, - }: - mkDerivation { - pname = "gi-vte"; - version = "2.91.33"; - sha256 = "0w24xl9i0mfw9jvihi8kbmz65s5g81f33l9sa2hk8cvm0w7s3x8p"; - setupHaskellDepends = [ - base - Cabal - gi-atk - gi-cairo - gi-gdk - gi-gio - gi-glib - gi-gobject - gi-gtk - gi-pango - haskell-gi - ]; - libraryHaskellDepends = [ - base - bytestring - containers - gi-atk - gi-cairo - gi-gdk - gi-gio - gi-glib - gi-gobject - gi-gtk - gi-pango - haskell-gi - haskell-gi-base - haskell-gi-overloading - text - transformers - ]; - libraryPkgconfigDepends = [ vte_291 ]; - description = "Vte bindings"; - license = lib.licenses.lgpl21Only; - badPlatforms = lib.platforms.darwin; - } - ) { vte_291 = pkgs.vte; }; - - "gi-vte_2_91_35" = callPackage ( { mkDerivation, base, @@ -265621,7 +265782,6 @@ self: { description = "Vte bindings"; license = lib.licenses.lgpl21Only; badPlatforms = lib.platforms.darwin; - hydraPlatforms = lib.platforms.none; } ) { vte_291 = pkgs.vte; }; @@ -288420,6 +288580,7 @@ self: { license = lib.licenses.mit; hydraPlatforms = lib.platforms.none; mainProgram = "hablog"; + broken = true; } ) { }; @@ -290432,8 +290593,8 @@ self: { }: mkDerivation { pname = "hackport"; - version = "0.9.0.0"; - sha256 = "0r2qr9qgx9dailqy0ja1v0wki6csjyqbsndnsxggmz53axvrfv1w"; + version = "0.9.1.0"; + sha256 = "1jx228zzxx6qqm6asjfpnfzk7pbai3p3r4rjm15lp14jx20p2m3f"; isLibrary = false; isExecutable = true; libraryHaskellDepends = [ @@ -317889,7 +318050,7 @@ self: { } ) { }; - "heftia_0_6_0_0" = callPackage ( + "heftia_0_7_0_0" = callPackage ( { mkDerivation, base, @@ -317902,10 +318063,8 @@ self: { }: mkDerivation { pname = "heftia"; - version = "0.6.0.0"; - sha256 = "18nvp0zcdwi9zf2w1zz60zn4iy78mjy9zqnw6156kz8bwpi8vbda"; - revision = "1"; - editedCabalFile = "0abcmwiwqik19fc8h5z0ijpw2fmygfkkyx44wddq26gd3kh89wid"; + version = "0.7.0.0"; + sha256 = "12nc03y7x3sclxihvn3936rqh9dw018z25whsqkgm9m5z51y7fij"; libraryHaskellDepends = [ base data-effects @@ -318041,7 +318200,7 @@ self: { } ) { eff = null; }; - "heftia-effects_0_6_0_1" = callPackage ( + "heftia-effects_0_7_0_0" = callPackage ( { mkDerivation, base, @@ -318051,14 +318210,12 @@ self: { data-effects, eff, effectful, - eveff, filepath, freer-simple, fused-effects, heftia, hspec, logict, - mpeff, mtl, polysemy, process, @@ -318069,12 +318226,13 @@ self: { text, time, unbounded-delays, + unix, unliftio, }: mkDerivation { pname = "heftia-effects"; - version = "0.6.0.1"; - sha256 = "0jdxprqjz2x7g9sa6szvh8bs54kqmmgaacqfwr7jsydnjsdmbayq"; + version = "0.7.0.0"; + sha256 = "1b9kk5lfxbh52afk3f4q0kw9kimwma6d35frcf0bn2anxq0wnw15"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -318129,12 +318287,10 @@ self: { data-effects eff effectful - eveff freer-simple fused-effects heftia logict - mpeff mtl polysemy process @@ -318142,6 +318298,7 @@ self: { text time unbounded-delays + unix unliftio ]; description = "higher-order algebraic effects done right"; @@ -319882,8 +320039,8 @@ self: { }: mkDerivation { pname = "hercules-ci-agent"; - version = "0.10.5"; - sha256 = "14g5q032f6lnssc8mf01kzcl1gysirj8a6fbcxxpvjpxvdq2675b"; + version = "0.10.6"; + sha256 = "1mkgh544f5zxgbm6gx5dl8pnw3kpvj08b3qzh2k8vd4hlgnwhlam"; isLibrary = true; isExecutable = true; setupHaskellDepends = [ @@ -320528,8 +320685,8 @@ self: { }: mkDerivation { pname = "hercules-ci-cnix-expr"; - version = "0.3.6.5"; - sha256 = "1pxnvjp38y2yhl4pf0hrk00vmq0lw7k7yiy0i1rymdjvh58x9nqa"; + version = "0.4.0.0"; + sha256 = "1v96q27x66cdrd1mibb2cpnqiwly408ac67h1mw5dr0l1bdasvds"; setupHaskellDepends = [ base Cabal @@ -320612,8 +320769,8 @@ self: { }: mkDerivation { pname = "hercules-ci-cnix-store"; - version = "0.3.6.1"; - sha256 = "0phdy6073fz7dfl87xiwryjl5z17s8r2aapjg8c8675wkcgx5qrm"; + version = "0.3.7.0"; + sha256 = "1cfkfp8n61v7wssgs4f466pb241mm9pfsqkrnrlvqrx2w6ka5svg"; setupHaskellDepends = [ base Cabal @@ -321578,8 +321735,8 @@ self: { }: mkDerivation { pname = "hetzner"; - version = "0.7.1.1"; - sha256 = "1pp2yrk701kr597s8fimm2nnhpihxndgg0a8wya8kmcqb80grxd5"; + version = "0.7.2.1"; + sha256 = "0c0zfgp5s8j2ymncpz0lb0y6rfrr2m2pbacwvz5kjrglma19dck1"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -324934,10 +325091,8 @@ self: { }: mkDerivation { pname = "hie-bios"; - version = "0.14.0"; - sha256 = "1caszgj3x3l13q6w26snx49yqyzjfgiik4403gl3mfalkrgbvk2g"; - revision = "3"; - editedCabalFile = "0v66cjqf2hi5kvsfifc6b8v7192zjl85mfjd8yrhd3ykwia6z2wf"; + version = "0.15.0"; + sha256 = "1lih0gab4r33vyjmrfd7dq6fzwy6bzgkr2xw4cf3yxvxk3m1czaj"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -324987,6 +325142,7 @@ self: { tasty-expected-failure tasty-hunit temporary + text transformers yaml ]; @@ -336000,8 +336156,8 @@ self: { }: mkDerivation { pname = "hoare"; - version = "0.1.0.0"; - sha256 = "1xc49mfp7j9fk28xfn2w23ka6yx6rid453mfxh80ix1hzngyww4k"; + version = "0.1.1.0"; + sha256 = "08f3rcaj4vv63720vjs5nya9xvkk25rp7nyk4v7yw06vifqp7vm0"; libraryHaskellDepends = [ async base @@ -349373,6 +349529,8 @@ self: { pname = "hscurses"; version = "1.5.0.0"; sha256 = "1z155qqbdgwdrwh312cf8xz7iyipzcgrvlg73gyssly2392lmxdj"; + revision = "1"; + editedCabalFile = "0l4n26g6px7wfgizrkd4nks19gkaxrl6nymvrnz9jjny1s2d3l2v"; isLibrary = true; isExecutable = true; enableSeparateDataOutput = true; @@ -361685,11 +361843,12 @@ self: { stm, time-manager, tls, + utf8-string, }: mkDerivation { pname = "http3"; - version = "0.0.22"; - sha256 = "1w9zrzxj1n0j2y529chhfnbxbqrflvqhpifizyb9v192fgkzwiy2"; + version = "0.0.23"; + sha256 = "1xqs4k81758cwpdr7r3qdhv7hscv8yy8vaikq2i4wdyaa85cda56"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -361702,12 +361861,14 @@ self: { http-semantics http-types http2 + iproute network network-byte-order quic sockaddr stm time-manager + utf8-string ]; testHaskellDepends = [ async @@ -372860,6 +373021,7 @@ self: { testToolDepends = [ hspec-discover ]; description = "IHaskell extension for making the use of Symtegration more seamless"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; } ) { }; @@ -377831,8 +377993,8 @@ self: { }: mkDerivation { pname = "inline-python"; - version = "0.1.1.1"; - sha256 = "169f3xa2v53h5pqkc6h34wswyl0y3311xq66jwshxh80ynp37nj3"; + version = "0.2"; + sha256 = "168iz8nfqwqx0wd6ijdgw29gkfqvy7rdxhaw9yzbhl9msraxb05i"; libraryHaskellDepends = [ base bytestring @@ -382231,8 +382393,8 @@ self: { }: mkDerivation { pname = "ip2location-io"; - version = "1.0.0"; - sha256 = "13ik6ry60h3wl92p9piwx65z8gp0r08f8dan1s62pnnn7rmjaaj1"; + version = "1.1.0"; + sha256 = "1hzikf2ivaxmhw8z1zlcs108vww88nfk4iv4hx85v205gdxwgpwz"; libraryHaskellDepends = [ aeson base @@ -383566,6 +383728,61 @@ self: { } ) { }; + "iri-orphans" = callPackage ( + { + mkDerivation, + aeson, + autodocodec, + base, + debug-print, + generic-arbitrary, + hspec, + hspec-junit-formatter, + ip, + iri, + lens, + openapi3, + persistent, + QuickCheck, + serialise, + text, + vector, + wide-word, + }: + mkDerivation { + pname = "iri-orphans"; + version = "0.0.0.0"; + sha256 = "0iik37w0fzis7yxw9g3591g0ckljznzkbnvzf18apkg3q49dzsgj"; + libraryHaskellDepends = [ + aeson + autodocodec + base + debug-print + generic-arbitrary + ip + iri + lens + openapi3 + persistent + QuickCheck + serialise + text + vector + wide-word + ]; + testHaskellDepends = [ + base + hspec + hspec-junit-formatter + iri + QuickCheck + ]; + description = "Orphan instances for iri"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + } + ) { }; + "iridium" = callPackage ( { mkDerivation, @@ -389588,10 +389805,8 @@ self: { }: mkDerivation { pname = "jsaddle"; - version = "0.9.9.2"; - sha256 = "0xifxq1mfx1wxcsy23h9lsq8qpnccrzq6v9qk7zfnj43ljfv9mav"; - revision = "1"; - editedCabalFile = "0jq5xmaw6kvz3dmq8gzhgnhhzii7i5z5igq7gam3fim9qf050wwy"; + version = "0.9.9.3"; + sha256 = "0k784bcvqhnsd771pa3k1s8gv25adwwyxk1dzwyqvnp2jpl4djcc"; libraryHaskellDepends = [ aeson attoparsec @@ -389638,8 +389853,8 @@ self: { }: mkDerivation { pname = "jsaddle-clib"; - version = "0.9.9.2"; - sha256 = "1g34xam06kyvdr3dfmwrc0ybysj4kd2cyip0348kpf72yvbn5caf"; + version = "0.9.9.3"; + sha256 = "08l6a8yvkcngcz6sv8smwpbd9j0a0xxnw3s7dwix1mww0ghq0zfd"; libraryHaskellDepends = [ aeson base @@ -389689,8 +389904,6 @@ self: { { mkDerivation, base, - Cabal, - cabal-macosx, jsaddle, jsaddle-warp, jsaddle-webkit2gtk, @@ -389699,15 +389912,10 @@ self: { }: mkDerivation { pname = "jsaddle-hello"; - version = "2.0.0.1"; - sha256 = "08ciwhp1k5ff75z9pq5zyp1vfgzc9aryj4czz3hg57r922yhq5ph"; + version = "2.0.0.2"; + sha256 = "10xc5mn5y14nr3b9lqxdr90xq6w0869sxhry6ybchc2562s6pffh"; isLibrary = true; isExecutable = true; - setupHaskellDepends = [ - base - Cabal - cabal-macosx - ]; libraryHaskellDepends = [ base jsaddle @@ -389753,8 +389961,9 @@ self: { }: mkDerivation { pname = "jsaddle-warp"; - version = "0.9.9.2"; - sha256 = "0pcswpx37i5gl70n75dlmqb57asya0ikjwyigklv6974yy9ryc9q"; + version = "0.9.9.4"; + sha256 = "0lx2vn0hlr8b27p3lg2fcpc22q8qazgpwa4yx8553xa540idi7g8"; + enableSeparateDataOutput = true; libraryHaskellDepends = [ aeson base @@ -389803,8 +390012,8 @@ self: { }: mkDerivation { pname = "jsaddle-wasm"; - version = "0.1.0.0"; - sha256 = "1z98xwraw46czjv03b6bywljqg6cli8755qzjys9cxd07biilfxh"; + version = "0.1.1.0"; + sha256 = "0srdxphbx4f70z97l1v64xdww2ggxap7wb1lyplacrml3pq7qr5d"; libraryHaskellDepends = [ base bytestring @@ -389837,8 +390046,8 @@ self: { }: mkDerivation { pname = "jsaddle-webkit2gtk"; - version = "0.9.9.0"; - sha256 = "0b3kl5hm4ssbiga8cjcb30fli15z8sx4x8p5qvpxzlwmzx9zsk9p"; + version = "0.9.9.3"; + sha256 = "08bikhzb7x4c78isly3qmid68zs3il9vhyb5pb8wvmgs2y5jcyn6"; libraryHaskellDepends = [ aeson base @@ -389909,8 +390118,8 @@ self: { { mkDerivation }: mkDerivation { pname = "jsaddle-wkwebview"; - version = "0.9.9.0"; - sha256 = "0r8payj72akz951jmv7frllj8cxpwgjyci7gad7250s7nmnd9f1s"; + version = "0.9.9.3"; + sha256 = "1icj9cll7ifrharpngwhzgfyxixckd6viwk94f8wmqbf4yyyfsmv"; description = "Interface for JavaScript that works with GHCJS and GHC"; license = lib.licenses.mit; platforms = lib.platforms.darwin; @@ -392886,8 +393095,8 @@ self: { }: mkDerivation { pname = "jsonpatch"; - version = "0.3.0.1"; - sha256 = "0ycszkiij85j1hymq3v7g8pyjqam6g3cphar0yvdhy00xfda2wxd"; + version = "0.3.0.2"; + sha256 = "0szf70sy9kca2vrr81r116mbgss6jq3ni3sxzg3rm96b5p41qsrq"; libraryHaskellDepends = [ aeson aeson-optics @@ -404590,54 +404799,67 @@ self: { { mkDerivation, aeson, + async, base, bytestring, + conduit, containers, directory, filepath, http-conduit, http-types, ollama-haskell, + parsec, pdf-toolbox-document, - scalpel, + tagsoup, tasty, tasty-hunit, temporary, text, + vector, }: mkDerivation { pname = "langchain-hs"; - version = "0.0.1.0"; - sha256 = "10i1xk5zi9dmbw86zi3fkanqgwdzkb6kgyr5bccjfjhrizb8c933"; + version = "0.0.2.0"; + sha256 = "0gh3gmmppfms1jg5zaxksalh90675r4pl6lmz63szkpwl9rmc9kz"; libraryHaskellDepends = [ aeson + async base bytestring + conduit containers directory + filepath http-conduit http-types ollama-haskell + parsec pdf-toolbox-document - scalpel + tagsoup text + vector ]; testHaskellDepends = [ aeson + async base bytestring + conduit containers directory filepath http-conduit http-types ollama-haskell + parsec pdf-toolbox-document - scalpel + tagsoup tasty tasty-hunit temporary text + vector ]; description = "Haskell implementation of Langchain"; license = lib.licenses.mit; @@ -434617,6 +434839,49 @@ self: { } ) { }; + "mangle" = callPackage ( + { + mkDerivation, + base, + containers, + fb-stubs, + hspec, + hspec-contrib, + HUnit, + parsec, + template-haskell, + }: + mkDerivation { + pname = "mangle"; + version = "0.1.0.1"; + sha256 = "0ngyiyahg500fcn77ak5rf0jlcakvyq3vf2gf2flk184qpkskmcb"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base + containers + parsec + template-haskell + ]; + executableHaskellDepends = [ + base + containers + parsec + template-haskell + ]; + testHaskellDepends = [ + base + fb-stubs + hspec + hspec-contrib + HUnit + ]; + description = "Convert C++ type signatures to their mangled form"; + license = lib.licenses.bsd3; + mainProgram = "mangle"; + } + ) { }; + "mangopay" = callPackage ( { mkDerivation, @@ -435183,6 +435448,8 @@ self: { pname = "mappings"; version = "0.3.1.0"; sha256 = "1yf6qvsipjfq8s9z9lk7q29m3dkpa5kgvjpkm4wap5vawp2rzqyd"; + revision = "1"; + editedCabalFile = "1xg13149rlb00gb8bmnwwy7hncsjsw961mwfffwj99a1ki2ym5qw"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -442094,10 +442361,8 @@ self: { }: mkDerivation { pname = "mempack"; - version = "0.1.1.0"; - sha256 = "1xfy8lir0l0qfqs8r637hjwbqc3c8zcn249jrsf5ay4v18pww46q"; - revision = "1"; - editedCabalFile = "0x1spcslv5wfw1dag3vq9mdgrlzcl2155855dark7w9imwaigs7m"; + version = "0.1.2.0"; + sha256 = "0livcdbsx6bxgy2r9hm0alfb1rgj570pp342rrfhj3l8p43y4xl7"; libraryHaskellDepends = [ base bytestring @@ -446445,8 +446710,8 @@ self: { { mkDerivation, base }: mkDerivation { pname = "mini"; - version = "1.5.5.2"; - sha256 = "10qxqfqdzqy092mnm6f53ws6cc6hf68705nxv01kgamrdnpq6fby"; + version = "1.6.0.0"; + sha256 = "04gcdvygrk2xxhqafjfnvk7cpz8n4wbwhxjqhfcz65l4id0aslpc"; libraryHaskellDepends = [ base ]; description = "Minimal essentials"; license = lib.licenses.mit; @@ -449710,8 +449975,8 @@ self: { }: mkDerivation { pname = "mmzk-typeid"; - version = "0.7.0.1"; - sha256 = "1c2mybdgnn9nzvk2php5i3xid3cm1ws7zrcsg4ngy2a60057pwbz"; + version = "0.7.0.2"; + sha256 = "0zkyxyzc4dgp3d7jr806jwplagw7m0y0pjysagcw9b76lrw229r5"; libraryHaskellDepends = [ aeson array @@ -485903,6 +486168,38 @@ self: { } ) { }; + "ollama-holes-plugin" = callPackage ( + { + mkDerivation, + aeson, + base, + containers, + ghc, + modern-uri, + ollama-haskell, + req, + text, + }: + mkDerivation { + pname = "ollama-holes-plugin"; + version = "0.1.6.0"; + sha256 = "0svak3p9f55dfjxifqg2w3wz9hzd34v4pf95jnwsaw01xkrr8p5i"; + libraryHaskellDepends = [ + aeson + base + containers + ghc + modern-uri + ollama-haskell + req + text + ]; + description = "A typed-hole plugin that uses LLMs to generate valid hole-fits"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + } + ) { }; + "olwrapper" = callPackage ( { mkDerivation, @@ -486051,6 +486348,46 @@ self: { } ) { }; + "om-elm_2_0_1_0" = callPackage ( + { + mkDerivation, + base, + bytestring, + Cabal, + containers, + directory, + http-types, + safe, + safe-exceptions, + template-haskell, + text, + unix, + wai, + }: + mkDerivation { + pname = "om-elm"; + version = "2.0.1.0"; + sha256 = "0gi6frmdlv2sqhy63jjvswiahppxmapsrf1z66y3hdxi8dwhv2gm"; + libraryHaskellDepends = [ + base + bytestring + Cabal + containers + directory + http-types + safe + safe-exceptions + template-haskell + text + unix + wai + ]; + description = "Haskell utilities for building embedded Elm programs"; + license = lib.licenses.mit; + hydraPlatforms = lib.platforms.none; + } + ) { }; + "om-fail" = callPackage ( { mkDerivation, @@ -488739,8 +489076,8 @@ self: { }: mkDerivation { pname = "opencascade-hs"; - version = "0.5.0.0"; - sha256 = "104h4fzzyw457g2lxvhshaw711bc6zl3gd5zwg629hwqwm96b356"; + version = "0.5.0.1"; + sha256 = "1a397mxry4k5hq6gwnjn1lc3q8fz5pg7ff6imr1fwyf9b6rhls9j"; libraryHaskellDepends = [ base resourcet @@ -489073,8 +489410,8 @@ self: { }: mkDerivation { pname = "opendht-hs"; - version = "0.1.0.0"; - sha256 = "0vrqxa9vyz8r6ryvc90mqqzacjv5yqlalb7wm488zs85iszblskv"; + version = "0.1.1.1"; + sha256 = "1qzjpx2wqwp5v2s0y3prpynrsyyvb5y7w7d2d8xap7kxhv9saxxl"; libraryHaskellDepends = [ base bytestring @@ -495060,6 +495397,49 @@ self: { } ) { }; + "oughta" = callPackage ( + { + mkDerivation, + base, + bytestring, + containers, + directory, + exceptions, + file-embed, + filepath, + hslua, + tasty, + tasty-hunit, + text, + }: + mkDerivation { + pname = "oughta"; + version = "0.2.0.0"; + sha256 = "1ls97l94jpv5mlmiqccm4z8p80vnk8z0mv2937zcl1c7bx67ra3j"; + libraryHaskellDepends = [ + base + bytestring + containers + exceptions + file-embed + hslua + text + ]; + testHaskellDepends = [ + base + bytestring + directory + file-embed + filepath + tasty + tasty-hunit + text + ]; + description = "A library to test programs that output text"; + license = lib.licenses.bsd3; + } + ) { }; + "outsort" = callPackage ( { mkDerivation, @@ -504331,8 +504711,8 @@ self: { }: mkDerivation { pname = "patat"; - version = "0.15.0.0"; - sha256 = "1vamp3m0567fvm1ghjjjmhpfw0pbp2aardhgr1n0fsmamjq8zgbz"; + version = "0.15.1.0"; + sha256 = "1n8yprcb8s26wc5k0c3r8fm01bs8jayi27p50ffvvy103l1ia2rr"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -506261,6 +506641,35 @@ self: { } ) { }; + "pcre-heavy_1_0_0_4" = callPackage ( + { + mkDerivation, + base, + base-compat, + bytestring, + pcre-light, + string-conversions, + template-haskell, + }: + mkDerivation { + pname = "pcre-heavy"; + version = "1.0.0.4"; + sha256 = "08g5y596hc948y72h6jbpzg4q7vc4mqxc6rmdv1jl98fr6h1m7k6"; + libraryHaskellDepends = [ + base + base-compat + bytestring + pcre-light + string-conversions + template-haskell + ]; + description = "A regexp (regex) library on top of pcre-light you can actually use"; + license = lib.licenses.publicDomain; + hydraPlatforms = lib.platforms.none; + maintainers = [ lib.maintainers.mpscholten ]; + } + ) { }; + "pcre-less" = callPackage ( { mkDerivation, @@ -511985,10 +512394,8 @@ self: { }: mkDerivation { pname = "pg-entity"; - version = "0.0.4.4"; - sha256 = "0xbsys4h6p84m3vh076v5cjrmf2v9yl8d44zaknfxbjc8ssfbmh2"; - revision = "5"; - editedCabalFile = "1dawp5f6pha1z96bkx34whpqik20azx6aizcv8xrmj0ai6vvkhik"; + version = "0.0.5.1"; + sha256 = "1cb3x7vl2g2wmhrvfm6ajyrhb6whfzndq5zqd9acay9i3l26m014"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -512004,7 +512411,6 @@ self: { text-display text-manipulate time - uuid vector ]; testHaskellDepends = [ @@ -526789,8 +527195,8 @@ self: { }: mkDerivation { pname = "posit"; - version = "2022.2.0.2"; - sha256 = "0zm5vmabxiznzfzv0ldc94qdw8gxm7v2b1pfia00nsv7v728jdgb"; + version = "2022.2.0.3"; + sha256 = "0s9kbbhnabv1ssxpylf7gp2kxp01gp21ij4gxjf9bcpcixxvjjil"; libraryHaskellDepends = [ base data-dword @@ -547458,7 +547864,6 @@ self: { crypton, crypton-x509, crypton-x509-system, - data-default, fast-logger, filepath, hspec, @@ -547477,8 +547882,8 @@ self: { }: mkDerivation { pname = "quic"; - version = "0.2.10"; - sha256 = "1ki26dcd3bkgiln8ww52w1azvjpw2c32cv9lczzwijq50hnkqs93"; + version = "0.2.12"; + sha256 = "1x5326bmf8pz74dxjdlgf5a6mjf2v2358lmr4x94smbr5gscmlxx"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -547492,7 +547897,6 @@ self: { crypton crypton-x509 crypton-x509-system - data-default fast-logger filepath iproute @@ -551259,8 +551663,8 @@ self: { pname = "ral"; version = "0.2.2"; sha256 = "1c301l9mcq86wkgb4x8vhjrzb0nmv75dsixg5bgmwqp8rbh0xis6"; - revision = "1"; - editedCabalFile = "1j3fqas4xxjs59x8flgm7y7hd21cxs3ahx2zgx5294f844bgkjxb"; + revision = "2"; + editedCabalFile = "1a1c3y5b9kp96wkm39f1ahnij0vpr6y9fb25l03ykhhc03y6fadm"; libraryHaskellDepends = [ adjunctions base @@ -551297,6 +551701,8 @@ self: { pname = "ral-lens"; version = "0.2.1"; sha256 = "04i3mq49y3swvzyzhjzjgalwwbgn29vjwkqda7b8hs33wxaza7d6"; + revision = "1"; + editedCabalFile = "0bnkggykp5sj4aaw850srg9xsv666cdzafcwcpr3gnk1fqy50rgg"; libraryHaskellDepends = [ base bin @@ -551322,6 +551728,8 @@ self: { pname = "ral-optics"; version = "0.2.1"; sha256 = "117nwsw8h167fi1x416xifa4pq9ihvasj9144cdg4mmk2ly9br2n"; + revision = "1"; + editedCabalFile = "0x6ww1ck2ysafqrhwxa6d3978yj8fy3nkbsghmhkhv4v0whnxkda"; libraryHaskellDepends = [ base bin @@ -556030,6 +556438,39 @@ self: { } ) { }; + "reader" = callPackage ( + { + mkDerivation, + base, + contravariant, + distributive, + lens, + mmorph, + mtl, + profunctors, + semigroupoids, + transformers, + }: + mkDerivation { + pname = "reader"; + version = "0.0.8"; + sha256 = "04ka5zix7z0d0z20x8x6d0lsnlgwk98ns8sdgvk050dqyw0df9lm"; + libraryHaskellDepends = [ + base + contravariant + distributive + lens + mmorph + mtl + profunctors + semigroupoids + transformers + ]; + description = "A reader data type with all the bits"; + license = lib.licenses.bsd3; + } + ) { }; + "reader-soup" = callPackage ( { mkDerivation, @@ -557702,8 +558143,8 @@ self: { }: mkDerivation { pname = "recv"; - version = "0.1.0"; - sha256 = "0nsdy7a0rbizgz5wpg06p9kac4chsrdxfk30paf7yjxlzxf90r7n"; + version = "0.1.1"; + sha256 = "08dp76haq3yb1bzxvg8hv0p060c07a0w7vrq63fh75ajgz2pgbwd"; libraryHaskellDepends = [ base bytestring @@ -582200,7 +582641,7 @@ self: { } ) { inherit (pkgs) z3; }; - "sbv_11_4" = callPackage ( + "sbv_11_5" = callPackage ( { mkDerivation, array, @@ -582234,8 +582675,8 @@ self: { }: mkDerivation { pname = "sbv"; - version = "11.4"; - sha256 = "1dap0lpx4s40kp3n2m7r3331jrx6mbxd5pa1lv03khdb09w5fhd8"; + version = "11.5"; + sha256 = "14hhx9wj7f89l8df52izz6lb1xk51lyqql70p1gh4sq2f38axnwb"; enableSeparateDataOutput = true; libraryHaskellDepends = [ array @@ -585447,8 +585888,8 @@ self: { }: mkDerivation { pname = "scotty-tls"; - version = "0.4.1"; - sha256 = "1813fyxa98wfwgiazixpmsmghkc5ax8qwqk3jw5rmrngf0wxg5y8"; + version = "0.6.0"; + sha256 = "1wa1jv2r4ifg43jxjh18j4vzx8dzx97mddmv6g6iwsixsk5q6kvn"; libraryHaskellDepends = [ base scotty @@ -585459,8 +585900,6 @@ self: { ]; description = "TLS for Scotty"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -588336,8 +588775,6 @@ self: { ]; description = "SQLite backend for the Selda database EDSL"; license = lib.licenses.mit; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -596815,6 +597252,56 @@ self: { } ) { }; + "servant-routes" = callPackage ( + { + mkDerivation, + aeson, + aeson-pretty, + base, + containers, + hspec, + hspec-discover, + http-types, + microlens, + microlens-th, + QuickCheck, + servant, + text, + }: + mkDerivation { + pname = "servant-routes"; + version = "0.1.0.0"; + sha256 = "1m17cpbmyi8y2h27p9y28193b2d46qmr8bhswvjn89nd5z42d6x2"; + libraryHaskellDepends = [ + aeson + aeson-pretty + base + containers + http-types + microlens + microlens-th + servant + text + ]; + testHaskellDepends = [ + aeson + aeson-pretty + base + containers + hspec + http-types + microlens + microlens-th + QuickCheck + servant + text + ]; + testToolDepends = [ hspec-discover ]; + description = "Generate route descriptions from Servant APIs"; + license = lib.licenses.bsd3; + } + ) { }; + "servant-ruby" = callPackage ( { mkDerivation, @@ -598028,10 +598515,8 @@ self: { }: mkDerivation { pname = "servant-swagger-ui-jensoleg"; - version = "0.3.4"; - sha256 = "04s4syfmnjwa52xqm29x2sfi1ka6p7fpjff0pxry099rh0d59hkm"; - revision = "6"; - editedCabalFile = "1mqbhf6yfraqlriq7l6yvi5hkf93fdb6cwks6s6pyf9qxvd6pn5c"; + version = "0.3.5"; + sha256 = "1645lp9yw2z2mf6gn0h54wjmhdwbkng12s6gd9sr847nc1rahjqq"; libraryHaskellDepends = [ aeson base @@ -598044,8 +598529,6 @@ self: { ]; description = "Servant swagger ui: Jens-Ole Graulund theme"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -598063,10 +598546,8 @@ self: { }: mkDerivation { pname = "servant-swagger-ui-redoc"; - version = "0.3.4.1.22.3"; - sha256 = "0ln2sz7ffhddk4dqvczpxb5g8f6bic7sandn5zifpz2jg7lgzy0f"; - revision = "6"; - editedCabalFile = "1p2086msm6zdlagb7l5zwm84cg8q74v10svw0q1hdjahn547n5zs"; + version = "0.3.5"; + sha256 = "0wvv51mnwjycxgppqbb14kms1m77lf4b07jzgrsf0z0yhdfyn3nw"; libraryHaskellDepends = [ aeson base @@ -598079,8 +598560,6 @@ self: { ]; description = "Servant swagger ui: ReDoc theme"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -606989,15 +607468,17 @@ self: { { mkDerivation, base, + contravariant, doctest, integer-gmp, }: mkDerivation { pname = "simple-enumeration"; - version = "0.2.1"; - sha256 = "16m3i3703yb2921nq1hk4ap3s7yrxsyczw2anziv6wvy4xq252qr"; + version = "0.3"; + sha256 = "1mcsq60kq62ms1ggn76jfa3ymnck3ndg40jrd05sdl1ii169j6kl"; libraryHaskellDepends = [ base + contravariant integer-gmp ]; testHaskellDepends = [ @@ -607006,8 +607487,6 @@ self: { ]; description = "Finite or countably infinite sequences of values"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -611022,8 +611501,8 @@ self: { pname = "skew-list"; version = "0.1"; sha256 = "1j0rc1s3mpf933wl4fifik62d68hx1py8g8wwxz69ynfhjhf9fa2"; - revision = "3"; - editedCabalFile = "1d44sp9hcf5p72f6km47q5hy2v0xw7slrcbkb6dkvh4mv5cga8iw"; + revision = "4"; + editedCabalFile = "0l72s72kzqgxg07rxm6m75f2jxkhwl0mldj8raqs4hhy0dxhry4z"; libraryHaskellDepends = [ base deepseq @@ -616382,23 +616861,29 @@ self: { { mkDerivation, aeson, + attoparsec, base, base64-bytestring, binary, binary-instances, bytestring, - bytestring-show, + case-insensitive, configurator, containers, + crypton, errors, heist, hoauth2, http-client, http-client-tls, + http-types, + jose, lens, map-syntax, + memory, + monad-time, mtl, - random, + network-uri, snap, snap-core, text, @@ -616410,27 +616895,33 @@ self: { }: mkDerivation { pname = "snaplet-customauth"; - version = "0.2.1"; - sha256 = "04bnkw268klv06w0hbgdcxmdcyyg7bjxfhqfx7ymbl41a887h2zb"; + version = "0.3.0"; + sha256 = "107jl8zirzscw4qbbjlbsnzafyacdxbxjpqm5yw9f62g5y2rv334"; libraryHaskellDepends = [ aeson + attoparsec base base64-bytestring binary binary-instances bytestring - bytestring-show + case-insensitive configurator containers + crypton errors heist hoauth2 http-client http-client-tls + http-types + jose lens map-syntax + memory + monad-time mtl - random + network-uri snap snap-core text @@ -616442,7 +616933,6 @@ self: { ]; description = "Alternate authentication snaplet"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -621027,8 +621517,8 @@ self: { }: mkDerivation { pname = "spacecookie"; - version = "1.0.0.2"; - sha256 = "0f60ak4i6msyxk4bypgiijsm8wg2qvj96lr7chy20kdy44wghnxp"; + version = "1.0.0.3"; + sha256 = "1kzzbq22dk277jcx04w154y4vwa92zmnf40jcbgiihkz5rvisix0"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -625035,6 +625525,72 @@ self: { } ) { }; + "sqlc-hs" = callPackage ( + { + mkDerivation, + aeson, + base, + bytestring, + directory, + ede, + file-embed, + filepath, + mtl, + process, + process-extras, + proto-lens, + proto-lens-runtime, + relude, + tasty, + tasty-discover, + tasty-golden, + temporary, + text, + vector, + }: + mkDerivation { + pname = "sqlc-hs"; + version = "0.1.0.1"; + sha256 = "1s1ihpdxmnxq3466pady1l3pba796k71h8p08cr2mi0y0px1443h"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson + base + bytestring + directory + ede + file-embed + filepath + mtl + proto-lens + proto-lens-runtime + relude + text + vector + ]; + executableHaskellDepends = [ base ]; + testHaskellDepends = [ + base + bytestring + directory + filepath + process + process-extras + proto-lens + tasty + tasty-golden + temporary + ]; + testToolDepends = [ tasty-discover ]; + doHaddock = false; + description = "Generate type-safe Haskell code from SQL via https://github.com/sqlc-dev/sqlc."; + license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + mainProgram = "sqlc-hs"; + } + ) { }; + "sqlcipher" = callPackage ( { mkDerivation, @@ -646839,6 +647395,8 @@ self: { testToolDepends = [ hspec-discover ]; description = "Library for symbolic integration of mathematical expressions"; license = lib.licenses.asl20; + hydraPlatforms = lib.platforms.none; + broken = true; } ) { }; @@ -653560,6 +654118,8 @@ self: { pname = "tasty-coverage"; version = "0.1.4.0"; sha256 = "0jj7lx44vsvwhkvpxmsf2lc8i0yks6d9c28hqnhrmqp53vamqp23"; + revision = "1"; + editedCabalFile = "1sjn8hcdw8fbzi6jm0yxqjxbam9f7sj3mcx6l410pflwl0727d8g"; libraryHaskellDepends = [ base containers @@ -661440,8 +662000,8 @@ self: { }: mkDerivation { pname = "texmath"; - version = "0.12.9"; - sha256 = "05wfj0xyybwrnszd9y69ncl9yfp89nv4bffjaz4mg676fbb58d1f"; + version = "0.12.10"; + sha256 = "09gff44pz9jyz714jn4xgglkp31vfmsccdlbcf3n732z30y0h9wb"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -667281,6 +667841,324 @@ self: { } ) { }; + "thrift-compiler" = callPackage ( + { + mkDerivation, + aeson, + aeson-pretty, + alex, + array, + async, + base, + bytestring, + containers, + directory, + either, + extra, + fb-stubs, + fb-util, + filepath, + happy, + haskell-names, + haskell-src-exts, + hspec, + hspec-contrib, + HUnit, + mtl, + optparse-applicative, + pretty, + process, + some, + temporary, + text, + text-show, + transformers, + unordered-containers, + }: + mkDerivation { + pname = "thrift-compiler"; + version = "0.1.0.1"; + sha256 = "09cchacymbacg9i6r375pshl3k23hr16967hjrnmfq4865x7kc9r"; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + aeson + aeson-pretty + array + async + base + bytestring + containers + directory + either + extra + fb-util + filepath + haskell-names + haskell-src-exts + mtl + optparse-applicative + pretty + some + text + text-show + transformers + unordered-containers + ]; + libraryToolDepends = [ + alex + happy + ]; + executableHaskellDepends = [ + base + optparse-applicative + ]; + testHaskellDepends = [ + aeson-pretty + base + directory + extra + fb-stubs + filepath + haskell-src-exts + hspec + hspec-contrib + HUnit + process + temporary + text + ]; + description = "A compiler from the Thrift Interface Definition Language (IDL) to Haskell"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + mainProgram = "thrift-compiler"; + } + ) { }; + + "thrift-haxl" = callPackage ( + { + mkDerivation, + base, + hashable, + haxl, + mtl, + text, + text-show, + thrift-lib, + transformers, + unordered-containers, + }: + mkDerivation { + pname = "thrift-haxl"; + version = "0.1.0.1"; + sha256 = "0ggl264m25qfmb6wi1mnvn24z6ivhybdzbwj4wfvb08865gw06y0"; + libraryHaskellDepends = [ + base + hashable + haxl + mtl + text + text-show + thrift-lib + transformers + unordered-containers + ]; + description = "Support for using Haxl with Thrift services"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + } + ) { }; + + "thrift-http" = callPackage ( + { + mkDerivation, + aeson, + async, + base, + bytestring, + containers, + data-default, + deepseq, + fb-stubs, + fb-util, + ghc-prim, + hashable, + hspec, + hspec-contrib, + http-client, + http-types, + HUnit, + network, + STMonadTrans, + streaming-commons, + text, + thrift-lib, + transformers, + unordered-containers, + utf8-string, + wai, + warp, + }: + mkDerivation { + pname = "thrift-http"; + version = "0.1.0.1"; + sha256 = "1vsh56axfzi9p374nbxis6k9c9lzba7czkzag3wa3l9l30y3504n"; + libraryHaskellDepends = [ + aeson + async + base + bytestring + containers + data-default + deepseq + fb-stubs + fb-util + ghc-prim + hashable + hspec + hspec-contrib + http-client + http-types + HUnit + network + STMonadTrans + streaming-commons + text + thrift-lib + transformers + unordered-containers + utf8-string + wai + warp + ]; + testHaskellDepends = [ + aeson + base + bytestring + data-default + deepseq + fb-stubs + fb-util + ghc-prim + hashable + hspec + hspec-contrib + HUnit + STMonadTrans + text + thrift-lib + transformers + unordered-containers + ]; + doHaddock = false; + description = "Support for Thrift-over-HTTP server and client"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + } + ) { }; + + "thrift-lib" = callPackage ( + { + mkDerivation, + aeson, + aeson-pretty, + async, + base, + bytestring, + bytestring-lexing, + containers, + data-default, + deepseq, + fb-stubs, + fb-util, + filepath, + ghc, + ghc-prim, + hashable, + hspec, + hspec-contrib, + HUnit, + network, + QuickCheck, + scientific, + some, + STMonadTrans, + text, + text-show, + thrift-compiler, + transformers, + unordered-containers, + vector, + word8, + }: + mkDerivation { + pname = "thrift-lib"; + version = "0.1.0.1"; + sha256 = "0y9wg720q18mwn39iq8fd1xldy2vf1km85b2dxmwwb2nl71dxmmj"; + libraryHaskellDepends = [ + aeson + aeson-pretty + async + base + bytestring + bytestring-lexing + containers + data-default + deepseq + fb-stubs + fb-util + filepath + ghc + ghc-prim + hashable + hspec + hspec-contrib + HUnit + network + QuickCheck + scientific + some + STMonadTrans + text + text-show + transformers + unordered-containers + vector + word8 + ]; + libraryToolDepends = [ thrift-compiler ]; + testHaskellDepends = [ + aeson + async + base + bytestring + containers + data-default + deepseq + fb-stubs + fb-util + filepath + ghc-prim + hashable + hspec + hspec-contrib + HUnit + network + QuickCheck + STMonadTrans + text + transformers + unordered-containers + vector + ]; + testToolDepends = [ thrift-compiler ]; + doHaddock = false; + description = "Libraries for Haskell Thrift"; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + } + ) { }; + "thrist" = callPackage ( { mkDerivation, base }: mkDerivation { @@ -673747,10 +674625,8 @@ self: { }: mkDerivation { pname = "toml-parser"; - version = "2.0.1.0"; - sha256 = "1qcpcrcalds3a2gdx83iynpj3hvkg6hbyza8al0f7jdsg9r6sdh3"; - revision = "1"; - editedCabalFile = "1m3i2zbaavcyikp6dqqvyrvc1706zzsaqzg5z1bix916gscfkdhk"; + version = "2.0.1.2"; + sha256 = "0fm3anvslylamazr4jgm3y3v3sjh0jv5ydf565cfm1ma9kw4kbhv"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -673834,6 +674710,55 @@ self: { } ) { }; + "toml-reader_0_3_0_0" = callPackage ( + { + mkDerivation, + aeson, + base, + bytestring, + containers, + directory, + megaparsec, + parser-combinators, + process, + skeletest, + text, + time, + unordered-containers, + vector, + }: + mkDerivation { + pname = "toml-reader"; + version = "0.3.0.0"; + sha256 = "15nwqhg9w6l6bhnpxc1nw3gx7smksd9sg8w76kmgqdb8v5im8w4h"; + libraryHaskellDepends = [ + base + containers + megaparsec + parser-combinators + text + time + ]; + testHaskellDepends = [ + aeson + base + bytestring + containers + directory + process + skeletest + text + time + unordered-containers + vector + ]; + testToolDepends = [ skeletest ]; + description = "TOML format parser compliant with v1.0.0."; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + } + ) { }; + "toml-reader-parse" = callPackage ( { mkDerivation, @@ -692755,8 +693680,8 @@ self: { }: mkDerivation { pname = "unleash-client-haskell"; - version = "0.7.0"; - sha256 = "00dnfqci4adgadhmx9wikgk26z70skhqva9iij034v8fgqg480p4"; + version = "0.8.1"; + sha256 = "1bf24abj84qhg47xa5in5pynnr2h6bmcjv1jqip58sh6c07z4mvc"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -692782,7 +693707,6 @@ self: { description = "Unleash feature toggle client"; license = lib.licenses.mit; mainProgram = "example"; - maintainers = [ lib.maintainers.evenbrenden ]; } ) { }; @@ -692805,8 +693729,8 @@ self: { }: mkDerivation { pname = "unleash-client-haskell-core"; - version = "0.12.0"; - sha256 = "0vw6s8g7kcvk5l9nrjhnj8q1ndjcy85fadm8aj2zam4hxs7gczfr"; + version = "0.12.1"; + sha256 = "19zf5aszpv981fx41dkf8ffh8n6b4w7gz3j33s1zcyspcvk1k23q"; libraryHaskellDepends = [ aeson base @@ -692829,7 +693753,6 @@ self: { ]; description = "Unleash feature toggle client core"; license = lib.licenses.mit; - maintainers = [ lib.maintainers.evenbrenden ]; } ) { }; @@ -693176,6 +694099,8 @@ self: { pname = "unliftio-servant-server"; version = "0.1.0.1"; sha256 = "16ddmcacd1laa5y1k8x1xddhbbfw03xad6yc2hsca4kih1lsiw61"; + revision = "1"; + editedCabalFile = "0ihpwclzkh9b1x7v696y9g0jsvcliqdkrwlv7nia4k5yby5r1v50"; libraryHaskellDepends = [ base mtl @@ -699847,8 +700772,8 @@ self: { pname = "vec"; version = "0.5.1"; sha256 = "0rswq31fjsqzzq88b920hz0j8v0rdjhb04v4fr10cdqbnxaqglb0"; - revision = "1"; - editedCabalFile = "0znfs73x9amng298hzi98cy15fbgx5hdkcfslwmdqsyarr9v0ffx"; + revision = "2"; + editedCabalFile = "0cc6hby6dq0474fk1qn8iiychw2hjk7x70mcmndxxjq14pslrps5"; libraryHaskellDepends = [ adjunctions base @@ -699891,6 +700816,8 @@ self: { pname = "vec-lens"; version = "0.4.1"; sha256 = "1llppbk2qdkymgy66w5dl2w7x3r70mf5rqzp6ppllvzhjm7fg9vw"; + revision = "1"; + editedCabalFile = "1kpaay7gdidz07j8z2afp0h3ymay5xp8x03h5sqfzg8kvxjhbj1s"; libraryHaskellDepends = [ base fin @@ -699914,6 +700841,8 @@ self: { pname = "vec-optics"; version = "0.4.1"; sha256 = "1s0q34r54bsj43lzzzg9wcssc2lcgqgvx556xzdkyhs69rcc3r11"; + revision = "1"; + editedCabalFile = "0lx1wmmz037x8whs6wf67rx7gzwb3sm9pxmk3vplyp7dnz0sxm8p"; libraryHaskellDepends = [ base fin @@ -705440,7 +706369,6 @@ self: { conduit, conduit-extra, containers, - data-default-class, directory, filepath, hspec, @@ -705464,8 +706392,8 @@ self: { }: mkDerivation { pname = "wai-app-file-cgi"; - version = "3.1.11"; - sha256 = "0ba9f76pjx1yvjly2b1p29ypanrdw40kg05x1bqass3hiz3j1n4k"; + version = "3.1.12"; + sha256 = "0h1j6zz3l098jhrb42s6hdzxmr2qcksl27w5ghzxrvzwnl12j7fa"; libraryHaskellDepends = [ array attoparsec @@ -705475,7 +706403,6 @@ self: { conduit conduit-extra containers - data-default-class directory filepath http-client @@ -711149,8 +712076,8 @@ self: { }: mkDerivation { pname = "waterfall-cad"; - version = "0.5.0.0"; - sha256 = "0yk6wwqwzna6g8al15pdd4mqc3jpbxbvg0jrgvqfcxh86idfcixx"; + version = "0.5.0.1"; + sha256 = "1869qwkbi3mlvciz916y6hv6l4h7z16fflf9xac4i0p9frly50jg"; libraryHaskellDepends = [ base filepath @@ -711184,8 +712111,8 @@ self: { }: mkDerivation { pname = "waterfall-cad-examples"; - version = "0.5.0.0"; - sha256 = "1fwyxnjphfcdf3qvmvszd2k78aiscdb47x9mm17kr11l1lnbn88i"; + version = "0.5.0.1"; + sha256 = "1k9qs6jnh23d1r9xdpc07002a89rwn1zy5lgvbvlmmlsjny3v7fv"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [ @@ -711238,8 +712165,8 @@ self: { }: mkDerivation { pname = "waterfall-cad-svg"; - version = "0.5.0.0"; - sha256 = "1x7q7zk2kzlgchsrdybzw26hny8lpignzbm3zdk29vskhpg381fk"; + version = "0.5.0.1"; + sha256 = "0vyq23iryzsqjjdyb9ws5jbjm3rkb00ssmabnzx6vlnvzf5cfb1s"; libraryHaskellDepends = [ attoparsec base @@ -713759,6 +714686,60 @@ self: { } ) { }; + "webdriver-precore" = callPackage ( + { + mkDerivation, + aeson, + aeson-pretty, + base, + bytestring, + containers, + falsify, + ghc, + pretty-show, + raw-strings-qq, + tasty, + tasty-discover, + tasty-hunit, + tasty-quickcheck, + text, + vector, + }: + mkDerivation { + pname = "webdriver-precore"; + version = "0.1.0.1"; + sha256 = "0c86dgnpg8rccmkjfzslvp6nppr9s2scxyy9g15xawaglrrm6xw2"; + libraryHaskellDepends = [ + aeson + aeson-pretty + base + bytestring + containers + text + vector + ]; + testHaskellDepends = [ + aeson + base + containers + falsify + ghc + pretty-show + raw-strings-qq + tasty + tasty-discover + tasty-hunit + tasty-quickcheck + text + ]; + testToolDepends = [ tasty-discover ]; + description = "A typed wrapper for W3C WebDriver protocol. A base for other libraries."; + license = lib.licenses.bsd3; + hydraPlatforms = lib.platforms.none; + broken = true; + } + ) { }; + "webdriver-snoy" = callPackage ( { mkDerivation, @@ -714232,8 +715213,8 @@ self: { }: mkDerivation { pname = "webfinger-client"; - version = "0.2.0.0"; - sha256 = "0ajsp28m50sjxlfx75nivf3apkh9v7hjf15276adr8abf2cg248k"; + version = "0.2.1.0"; + sha256 = "04m61f8274nnn81cddv66n5cm4s0lxlz5gyapw1w7yk3pq4xfx9w"; libraryHaskellDepends = [ aeson base @@ -717542,8 +718523,6 @@ self: { ]; description = "Graphical indicator for WildBind"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; - broken = true; } ) { }; @@ -717572,7 +718551,6 @@ self: { testHaskellDepends = [ base ]; description = "Task to install and export everything you need to use WildBind in X11"; license = lib.licenses.bsd3; - hydraPlatforms = lib.platforms.none; } ) { }; @@ -723309,8 +724287,8 @@ self: { }: mkDerivation { pname = "xcffib"; - version = "1.7.1"; - sha256 = "199x70bq5vq3m7f1bapj59gyn3xraf6alk2i5glgw8hg77fnkh8b"; + version = "1.8.0"; + sha256 = "15jbxqmp12kraf7cnkw1wj6vxqw076wn0c1p22q5kpf8nzixrl3a"; isLibrary = true; isExecutable = true; libraryHaskellDepends = [