···125126## Writing Agda packages {#writing-agda-packages}
127128-To write a nix derivation for an Agda library, first check that the library has a `*.agda-lib` file.
129130A derivation can then be written using `agdaPackages.mkDerivation`. This has similar arguments to `stdenv.mkDerivation` with the following additions:
131132-* `everythingFile` can be used to specify the location of the `Everything.agda` file, defaulting to `./Everything.agda`. If this file does not exist then either it should be patched in or the `buildPhase` should be overridden (see below).
133* `libraryName` should be the name that appears in the `*.agda-lib` file, defaulting to `pname`.
134* `libraryFile` should be the file name of the `*.agda-lib` file, defaulting to `${libraryName}.agda-lib`.
135···150151### Building Agda packages {#building-agda-packages}
152153-The default build phase for `agdaPackages.mkDerivation` runs `agda` on the `Everything.agda` file.
154If something else is needed to build the package (e.g. `make`) then the `buildPhase` should be overridden.
155-Additionally, a `preBuild` or `configurePhase` can be used if there are steps that need to be done prior to checking the `Everything.agda` file.
156`agda` and the Agda libraries contained in `buildInputs` are made available during the build phase.
157158### Installing Agda packages {#installing-agda-packages}
···180181### Adding Agda packages to Nixpkgs {#adding-agda-packages-to-nixpkgs}
182183-To add an Agda package to `nixpkgs`, the derivation should be written to `pkgs/development/libraries/agda/${library-name}/` and an entry should be added to `pkgs/top-level/agda-packages.nix`. Here it is called in a scope with access to all other Agda libraries, so the top line of the `default.nix` can look like:
184185```nix
186{
···188 standard-library,
189 fetchFromGitHub,
190}:
191-{ }
192-```
193194-Note that the derivation function is called with `mkDerivation` set to `agdaPackages.mkDerivation`, therefore you
195-could use a similar set as in your `default.nix` from [Writing Agda Packages](#writing-agda-packages) with
196-`agdaPackages.mkDerivation` replaced with `mkDerivation`.
197-198-Here is an example skeleton derivation for iowa-stdlib:
199-200-```nix
201mkDerivation {
202- version = "1.5.0";
203- pname = "iowa-stdlib";
204-205 src = <...>;
206-207- libraryFile = "";
208- libraryName = "IAL-1.3";
209-210- buildPhase = ''
211- runHook preBuild
212-213- patchShebangs find-deps.sh
214- make
215-216- runHook postBuild
217- '';
218}
219```
220221-This library has a file called `.agda-lib`, and so we give an empty string to `libraryFile` as nothing precedes `.agda-lib` in the filename. This file contains `name: IAL-1.3`, and so we let `libraryName = "IAL-1.3"`. This library does not use an `Everything.agda` file and instead has a Makefile, so there is no need to set `everythingFile` and we set a custom `buildPhase`.
0000222223When writing an Agda package it is essential to make sure that no `.agda-lib` file gets added to the store as a single file (for example by using `writeText`). This causes Agda to think that the nix store is a Agda library and it will attempt to write to it whenever it typechecks something. See [https://github.com/agda/agda/issues/4613](https://github.com/agda/agda/issues/4613).
224···226you can test whether it builds correctly by writing in a comment:
227228```
229-@ofborg build agdaPackages.iowa-stdlib
230```
231232### Maintaining Agda packages {#agda-maintaining-packages}
···125126## Writing Agda packages {#writing-agda-packages}
127128+To write a nix derivation for an Agda library, first check that the library has a (single) `*.agda-lib` file.
129130A derivation can then be written using `agdaPackages.mkDerivation`. This has similar arguments to `stdenv.mkDerivation` with the following additions:
1310132* `libraryName` should be the name that appears in the `*.agda-lib` file, defaulting to `pname`.
133* `libraryFile` should be the file name of the `*.agda-lib` file, defaulting to `${libraryName}.agda-lib`.
134···149150### Building Agda packages {#building-agda-packages}
151152+The default build phase for `agdaPackages.mkDerivation` runs `agda --build-library`.
153If something else is needed to build the package (e.g. `make`) then the `buildPhase` should be overridden.
154+Additionally, a `preBuild` or `configurePhase` can be used if there are steps that need to be done prior to checking the library.
155`agda` and the Agda libraries contained in `buildInputs` are made available during the build phase.
156157### Installing Agda packages {#installing-agda-packages}
···179180### Adding Agda packages to Nixpkgs {#adding-agda-packages-to-nixpkgs}
181182+To add an Agda package to `nixpkgs`, the derivation should be written to `pkgs/development/libraries/agda/${library-name}/default.nix` and an entry should be added to `pkgs/top-level/agda-packages.nix`. Here it is called in a scope with access to all other Agda libraries, so the derivation could look like:
183184```nix
185{
···187 standard-library,
188 fetchFromGitHub,
189}:
001900000000191mkDerivation {
192+ pname = "my-library";
193+ version = "1.0";
0194 src = <...>;
195+ buildInputs = [ standard-library ];
196+ meta = <...>;
0000000000197}
198```
199200+You can look at other files under `pkgs/development/libraries/agda/` for more inspiration.
201+202+Note that the derivation function is called with `mkDerivation` set to `agdaPackages.mkDerivation`, therefore you
203+could use a similar set as in your `default.nix` from [Writing Agda Packages](#writing-agda-packages) with
204+`agdaPackages.mkDerivation` replaced with `mkDerivation`.
205206When writing an Agda package it is essential to make sure that no `.agda-lib` file gets added to the store as a single file (for example by using `writeText`). This causes Agda to think that the nix store is a Agda library and it will attempt to write to it whenever it typechecks something. See [https://github.com/agda/agda/issues/4613](https://github.com/agda/agda/issues/4613).
207···209you can test whether it builds correctly by writing in a comment:
210211```
212+@ofborg build agdaPackages.my-library
213```
214215### Maintaining Agda packages {#agda-maintaining-packages}
+1-7
maintainers/scripts/haskell/merge-and-open-pr.sh
···80gh pr merge --repo NixOS/nixpkgs --merge "$curr_haskell_updates_pr_num"
8182# Update stackage, Hackage hashes, and regenerate Haskell package set
83-echo "Updating Stackage..."
84-./maintainers/scripts/haskell/update-stackage.sh --do-commit
85-echo "Updating Hackage hashes..."
86-./maintainers/scripts/haskell/update-hackage.sh --do-commit
87-echo "Regenerating Hackage packages..."
88-# Using fast here because after the hackage-update eval errors will likely break the transitive dependencies check.
89-./maintainers/scripts/haskell/regenerate-hackage-packages.sh --fast --do-commit
9091# Push these new commits to the haskell-updates branch
92echo "Pushing commits just created to the remote $push_remote/haskell-updates branch..."
···80gh pr merge --repo NixOS/nixpkgs --merge "$curr_haskell_updates_pr_num"
8182# Update stackage, Hackage hashes, and regenerate Haskell package set
83+./maintainers/scripts/haskell/update-package-set.sh
0000008485# Push these new commits to the haskell-updates branch
86echo "Pushing commits just created to the remote $push_remote/haskell-updates branch..."
···107if [[ "$DO_COMMIT" -eq 1 ]]; then
108git add pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml
109git add pkgs/development/haskell-modules/hackage-packages.nix
110-git commit -F - << EOF
111haskellPackages: regenerate package set based on current config
112113-This commit has been generated by maintainers/scripts/haskell/regenerate-hackage-packages.sh
114EOF
115fi
116
···107if [[ "$DO_COMMIT" -eq 1 ]]; then
108git add pkgs/development/haskell-modules/configuration-hackage2nix/transitive-broken.yaml
109git add pkgs/development/haskell-modules/hackage-packages.nix
110+git commit --edit -F - << EOF
111haskellPackages: regenerate package set based on current config
112113+(generated by maintainers/scripts/haskell/regenerate-hackage-packages.sh)
114EOF
115fi
116
+31-10
maintainers/scripts/haskell/update-hackage.sh
···1#! /usr/bin/env nix-shell
2#! nix-shell -i bash -p curl jq git gnused -I nixpkgs=.
3-4-# See regenerate-hackage-packages.sh for details on the purpose of this script.
000000000000000000056set -euo pipefail
7000008pin_file=pkgs/data/misc/hackage/pin.json
9current_commit="$(jq -r .commit $pin_file)"
10old_date="$(jq -r .msg $pin_file | sed 's/Update from Hackage at //')"
···14new_date="$(echo "$commit_msg" | sed 's/Update from Hackage at //')"
1516if [ "$current_commit" != "$head_commit" ]; then
017 url="https://github.com/commercialhaskell/all-cabal-hashes/archive/$head_commit.tar.gz"
18 hash="$(nix-prefetch-url "$url")"
19 jq -n \
···23 --arg commit_msg "$commit_msg" \
24 '{commit: $commit, url: $url, sha256: $hash, msg: $commit_msg}' \
25 > $pin_file
00026fi
2728-if [[ "${1:-}" == "--do-commit" ]]; then
29-git add pkgs/data/misc/hackage/pin.json
30-git commit -F - << EOF
31-all-cabal-hashes: $old_date -> $new_date
32-33-This commit has been generated by maintainers/scripts/haskell/update-hackage.sh
34-EOF
35-fi
···1#! /usr/bin/env nix-shell
2#! nix-shell -i bash -p curl jq git gnused -I nixpkgs=.
3+#
4+# SYNOPSIS
5+#
6+# Update Hackage index and hashes data exposed via pkgs.all-cabal-hashes.
7+#
8+# DESCRIPTION
9+#
10+# Find latest revision of the commercialhaskell/all-cabal-hashes repository's
11+# hackage branch and update pkgs/data/misc/hackage/pin.json accordingly.
12+#
13+# This data is used by hackage2nix to generate hackage-packages.nix. Since
14+# hackage2nix uses the latest version of a package unless an explicit
15+# constraint is configured, running this script indirectly updates packages
16+# (when hackage2nix is executed afterwards).
17+#
18+# Prints a version difference to stdout if the pin has been updated, nothing
19+# otherwise.
20+#
21+# EXIT STATUS
22+#
23+# Always exit with zero (even if nothing changed) unless there was an error.
2425set -euo pipefail
2627+if [[ "${1:-}" == "--do-commit" ]]; then
28+ echo "$0: --do-commit is no longer supported. Use update-package-set.sh instead."
29+ exit 100
30+fi
31+32pin_file=pkgs/data/misc/hackage/pin.json
33current_commit="$(jq -r .commit $pin_file)"
34old_date="$(jq -r .msg $pin_file | sed 's/Update from Hackage at //')"
···38new_date="$(echo "$commit_msg" | sed 's/Update from Hackage at //')"
3940if [ "$current_commit" != "$head_commit" ]; then
41+ echo "Updating all-cabal-hashes from $old_date to $new_date" >&2
42 url="https://github.com/commercialhaskell/all-cabal-hashes/archive/$head_commit.tar.gz"
43 hash="$(nix-prefetch-url "$url")"
44 jq -n \
···48 --arg commit_msg "$commit_msg" \
49 '{commit: $commit, url: $url, sha256: $hash, msg: $commit_msg}' \
50 > $pin_file
51+else
52+ echo "No new all-cabal-hashes version" >&2
53+ exit 0
54fi
5556+echo "$old_date -> $new_date"
0000000
···1+#! /usr/bin/env nix-shell
2+#! nix-shell -i bash
3+#! nix-shell -p git -I nixpkgs=.
4+set -euo pipefail
5+6+filesToStage=(
7+ 'pkgs/data/misc/hackage/pin.json'
8+ 'pkgs/development/haskell-modules/configuration-hackage2nix/stackage.yaml'
9+ 'pkgs/development/haskell-modules/hackage-packages.nix'
10+)
11+12+if ! git diff --quiet --cached; then
13+ echo "Please commit staged changes before running $0" >&2
14+ exit 100
15+fi
16+17+if ! git diff --quiet -- "${filesToStage[@]}"; then
18+ echo -n "Please commit your changes to the following files before running $0: " >&2
19+ echo "${filesToStage[@]}" >&2
20+ exit 100
21+fi
22+23+stackage_diff="$(./maintainers/scripts/haskell/update-stackage.sh)"
24+hackage_diff="$(./maintainers/scripts/haskell/update-hackage.sh)"
25+readonly stackage_diff hackage_diff
26+27+# Prefer Stackage version diff in the commit header, fall back to Hackage
28+if [[ -n "$stackage_diff" ]]; then
29+ commit_message="haskellPackages: stackage $stackage_diff"
30+ if [[ -n "$hackage_diff" ]]; then
31+ commit_message="$commit_message
32+33+all-cabal-hashes: $hackage_diff"
34+ fi
35+elif [[ -n "$hackage_diff" ]]; then
36+ commit_message="haskellPackages: hackage $hackage_diff
37+38+all-cabal-hashes: $hackage_diff"
39+else
40+ echo "Neither Hackage nor Stackage changed. Nothing to do." >&2
41+ exit 0
42+fi
43+44+commit_message="$commit_message
45+46+(generated by maintainers/scripts/haskell/update-package-set.sh)"
47+48+# Using fast here because after the hackage-update eval errors will likely break the transitive dependencies check.
49+./maintainers/scripts/haskell/regenerate-hackage-packages.sh --fast
50+51+# A --do-commit flag probably doesn't make much sense
52+git add -- "${filesToStage[@]}"
53+git commit -m "$commit_message"
+30-10
maintainers/scripts/haskell/update-stackage.sh
···1#! /usr/bin/env nix-shell
2#! nix-shell -i bash -p curl jq git gnused gnugrep -I nixpkgs=.
3# shellcheck shell=bash
000000000000000000000045set -eu -o pipefail
0000067# Stackage solver to use, LTS or Nightly
8# (should be capitalized like the display name)
···31version="$SOLVER $(sed -rn "s/^--.*http:..(www.)?stackage.org.snapshot.$(toLower "$SOLVER")-//p" "$tmpfile")"
3233if [[ "$old_version" == "$version" ]]; then
34- echo "No new stackage version"
35 exit 0 # Nothing to do
36fi
3738-echo "Updating Stackage from $old_version to $version."
3940# Create a simple yaml version of the file.
41sed -r \
···78# ShellCheck: latest version of command-line dev tool.
79# Agda: The Agda community is fast-moving; we strive to always include the newest versions of Agda and the Agda packages in nixpkgs.
8081-if [[ "${1:-}" == "--do-commit" ]]; then
82-git add $stackage_config
83-git commit -F - << EOF
84-haskellPackages: stackage $old_version -> $version
85-86-This commit has been generated by maintainers/scripts/haskell/update-stackage.sh
87-EOF
88-fi
···1#! /usr/bin/env nix-shell
2#! nix-shell -i bash -p curl jq git gnused gnugrep -I nixpkgs=.
3# shellcheck shell=bash
4+#
5+# SYNOPSIS
6+#
7+# Update version constraints in hackage2nix config file from Stackage.
8+#
9+# DESCRIPTION
10+#
11+# Fetches the latest snapshot of the configured Stackage solver which is
12+# configured via the SOLVER (either LTS or Nightly) and VERSION variables in
13+# the script.
14+#
15+# VERSION is only applicable if SOLVER is LTS. SOLVER=LTS and VERSION=22
16+# will cause update-stackage.sh to fetch the latest LTS-22.XX version.
17+# If empty, the latest version of the solver is used.
18+#
19+# If the configuration file has been updated, update-stackage.sh prints a
20+# version difference to stdout, e.g. 23.11 -> 23.13. Otherwise, stdout remains
21+# empty.
22+#
23+# EXIT STATUS
24+#
25+# Always exit with zero (even if nothing changed) unless there was an error.
2627set -eu -o pipefail
28+29+if [[ "${1:-}" == "--do-commit" ]]; then
30+ echo "$0: --do-commit is no longer supported. Use update-package-set.sh instead."
31+ exit 100
32+fi
3334# Stackage solver to use, LTS or Nightly
35# (should be capitalized like the display name)
···58version="$SOLVER $(sed -rn "s/^--.*http:..(www.)?stackage.org.snapshot.$(toLower "$SOLVER")-//p" "$tmpfile")"
5960if [[ "$old_version" == "$version" ]]; then
61+ echo "No new stackage version" >&2
62 exit 0 # Nothing to do
63fi
6465+echo "Updating Stackage from $old_version to $version." >&2
6667# Create a simple yaml version of the file.
68sed -r \
···105# ShellCheck: latest version of command-line dev tool.
106# Agda: The Agda community is fast-moving; we strive to always include the newest versions of Agda and the Agda packages in nixpkgs.
107108+echo "$old_version -> $version"
0000000
···6 * The resulting path may not be normalized.
7 *
8 * Examples:
9- * interfaceFile pkgs.agda.version "./Everything.agda" == "_build/2.6.4.3/agda/./Everything.agdai"
10- * interfaceFile pkgs.agda.version "src/Everything.lagda.tex" == "_build/2.6.4.3/agda/src/Everything.agdai"
11 */
12 interfaceFile =
13 agdaVersion: agdaFile:
···6 * The resulting path may not be normalized.
7 *
8 * Examples:
9+ * interfaceFile pkgs.agda.version "./Foo.agda" == "_build/AGDA_VERSION/agda/./Foo.agdai"
10+ * interfaceFile pkgs.agda.version "src/Foo.lagda.tex" == "_build/AGDA_VERSION/agda/src/Foo.agdai"
11 */
12 interfaceFile =
13 agdaVersion: agdaFile:
+4-4
pkgs/data/misc/hackage/pin.json
···1{
2- "commit": "0b40331fe9f6ba2ce9cf1b8afe0a04aa79d36878",
3- "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/0b40331fe9f6ba2ce9cf1b8afe0a04aa79d36878.tar.gz",
4- "sha256": "03mjsvybfh8bq5v475pqqs5bs9xdb0pm2qrw9w892q0q0ir5b6na",
5- "msg": "Update from Hackage at 2025-06-01T18:10:16Z"
6}
···1{
2+ "commit": "e184dedb360769d6e8e041e711559185f39ab55c",
3+ "url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/e184dedb360769d6e8e041e711559185f39ab55c.tar.gz",
4+ "sha256": "16qlwrw96lf52yvmmhfl948wpimbnqm9z87j27agcdmigf5icg1s",
5+ "msg": "Update from Hackage at 2025-07-07T21:33:55Z"
6}
+23-3
pkgs/development/compilers/ghc/8.10.7.nix
···69 || (stdenv.hostPlatform != stdenv.targetPlatform)
70 ),
71000072 # What flavour to build. An empty string indicates no
73 # specific flavour and falls back to ghc default values.
74 ghcFlavour ? lib.optionalString (stdenv.targetPlatform != stdenv.hostPlatform) (
···265 basePackageSet = if hostPlatform != targetPlatform then targetPackages else pkgsHostTarget;
266 in
267 {
268- inherit (basePackageSet) gmp ncurses;
269 # dynamic inherits are not possible in Nix
270 libffi = basePackageSet.${libffi_name};
271 };
···363 sha256 = "1rmv3132xhxbka97v0rx7r6larx5f5nnvs4mgm9q3rmgpjyd1vf9";
364 includes = [ "libraries/ghci/ghci.cabal.in" ];
365 })
000000366 ]
367 ++ lib.optionals stdenv.hostPlatform.isDarwin [
368 # Make Block.h compile with c++ compilers. Remove with the next release
···511 ++ lib.optionals (disableLargeAddressSpace) [
512 "--disable-large-address-space"
513 ]
00000514 ++ lib.optionals enableUnregisterised [
515 "--enable-unregisterised"
516 ];
···562563 buildInputs = [ bash ] ++ (libDeps hostPlatform);
564565- depsTargetTarget = map lib.getDev (libDeps targetPlatform);
566- depsTargetTargetPropagated = map (lib.getOutput "out") (libDeps targetPlatform);
00000567568 # required, because otherwise all symbols from HSffi.o are stripped, and
569 # that in turn causes GHCi to abort
···69 || (stdenv.hostPlatform != stdenv.targetPlatform)
70 ),
7172+ # Enable NUMA support in RTS
73+ enableNuma ? lib.meta.availableOn stdenv.targetPlatform numactl,
74+ numactl,
75+76 # What flavour to build. An empty string indicates no
77 # specific flavour and falls back to ghc default values.
78 ghcFlavour ? lib.optionalString (stdenv.targetPlatform != stdenv.hostPlatform) (
···269 basePackageSet = if hostPlatform != targetPlatform then targetPackages else pkgsHostTarget;
270 in
271 {
272+ inherit (basePackageSet) gmp ncurses numactl;
273 # dynamic inherits are not possible in Nix
274 libffi = basePackageSet.${libffi_name};
275 };
···367 sha256 = "1rmv3132xhxbka97v0rx7r6larx5f5nnvs4mgm9q3rmgpjyd1vf9";
368 includes = [ "libraries/ghci/ghci.cabal.in" ];
369 })
370+371+ # Correctly record libnuma's library and include directories in the
372+ # package db. This fixes linking whenever stdenv and propagation won't
373+ # quite pass the correct -L flags to the linker, e.g. when using GHC
374+ # outside of stdenv/nixpkgs or build->build compilation in pkgsStatic.
375+ ./ghc-8.10-9.2-rts-package-db-libnuma-dirs.patch
376 ]
377 ++ lib.optionals stdenv.hostPlatform.isDarwin [
378 # Make Block.h compile with c++ compilers. Remove with the next release
···521 ++ lib.optionals (disableLargeAddressSpace) [
522 "--disable-large-address-space"
523 ]
524+ ++ lib.optionals enableNuma [
525+ "--enable-numa"
526+ "--with-libnuma-includes=${lib.getDev targetLibs.numactl}/include"
527+ "--with-libnuma-libraries=${lib.getLib targetLibs.numactl}/lib"
528+ ]
529 ++ lib.optionals enableUnregisterised [
530 "--enable-unregisterised"
531 ];
···577578 buildInputs = [ bash ] ++ (libDeps hostPlatform);
579580+ # stage1 GHC doesn't need to link against libnuma, so it's target specific
581+ depsTargetTarget = map lib.getDev (
582+ libDeps targetPlatform ++ lib.optionals enableNuma [ targetLibs.numactl ]
583+ );
584+ depsTargetTargetPropagated = map (lib.getOutput "out") (
585+ libDeps targetPlatform ++ lib.optionals enableNuma [ targetLibs.numactl ]
586+ );
587588 # required, because otherwise all symbols from HSffi.o are stripped, and
589 # that in turn causes GHCi to abort
+39-4
pkgs/development/compilers/ghc/common-hadrian.nix
···91 && !stdenv.hostPlatform.isStatic,
92 elfutils,
93000094 # What flavour to build. Flavour string may contain a flavour and flavour
95 # transformers as accepted by hadrian.
96 ghcFlavour ?
···110 # While split sections are now enabled by default in ghc 8.8 for windows,
111 # they seem to lead to `too many sections` errors when building base for
112 # profiling.
113- ++ lib.optionals (!stdenv.targetPlatform.isWindows) [ "split_sections" ];
114 in
115 baseFlavour + lib.concatMapStrings (t: "+${t}") transformers,
116···248 ./Cabal-3.12-paths-fix-cycle-aarch64-darwin.patch
249 )
250 ]
00000000251 # Prevents passing --hyperlinked-source to haddock. Note that this can
252 # be configured via a user defined flavour now. Unfortunately, it is
253 # impossible to import an existing flavour in UserSettings, so patching
···291 url = "https://gitlab.haskell.org/ghc/ghc/-/commit/39bb6e583d64738db51441a556d499aa93a4fc4a.patch";
292 sha256 = "0w5fx413z924bi2irsy1l4xapxxhrq158b5gn6jzrbsmhvmpirs0";
293 })
00000294 ];
295296 stdenv = stdenvNoCC;
···329assert stdenv.buildPlatform == stdenv.hostPlatform || stdenv.hostPlatform == stdenv.targetPlatform;
330331# It is currently impossible to cross-compile GHC with Hadrian.
332-assert stdenv.buildPlatform == stdenv.hostPlatform;
0333334let
335 inherit (stdenv) buildPlatform hostPlatform targetPlatform;
···407 ld = cc.bintools;
408 "ld.gold" = cc.bintools;
40900410 otool = cc.bintools.bintools;
411412 # GHC needs install_name_tool on all darwin platforms. The same one can
···465 gmp
466 libffi
467 ncurses
0468 ;
469 };
470···649 "--with-libdw-includes=${lib.getDev targetLibs.elfutils}/include"
650 "--with-libdw-libraries=${lib.getLib targetLibs.elfutils}/lib"
651 ]
00000652 ++ lib.optionals targetPlatform.isDarwin [
653 # Darwin uses llvm-ar. GHC will try to use `-L` with `ar` when it is `llvm-ar`
654 # but it doesn’t currently work because Cabal never uses `-L` on Darwin. See:
···715716 buildInputs = [ bash ] ++ (libDeps hostPlatform);
717718- depsTargetTarget = map lib.getDev (libDeps targetPlatform);
719- depsTargetTargetPropagated = map (lib.getOutput "out") (libDeps targetPlatform);
00000720721 hadrianFlags = [
722 "--flavour=${ghcFlavour}"
···819 else
820 "${llvmPackages.clang}/bin/${llvmPackages.clang.targetPrefix}clang"
821 }"
0000822 ''
823 + ''
824
···91 && !stdenv.hostPlatform.isStatic,
92 elfutils,
9394+ # Enable NUMA support in RTS
95+ enableNuma ? lib.meta.availableOn stdenv.targetPlatform numactl,
96+ numactl,
97+98 # What flavour to build. Flavour string may contain a flavour and flavour
99 # transformers as accepted by hadrian.
100 ghcFlavour ?
···114 # While split sections are now enabled by default in ghc 8.8 for windows,
115 # they seem to lead to `too many sections` errors when building base for
116 # profiling.
117+ ++ (if stdenv.targetPlatform.isWindows then [ "no_split_sections" ] else [ "split_sections" ]);
118 in
119 baseFlavour + lib.concatMapStrings (t: "+${t}") transformers,
120···252 ./Cabal-3.12-paths-fix-cycle-aarch64-darwin.patch
253 )
254 ]
255+ ++ lib.optionals stdenv.targetPlatform.isWindows [
256+ # https://gitlab.haskell.org/ghc/ghc/-/merge_requests/13919
257+ (fetchpatch {
258+ name = "include-modern-utimbuf.patch";
259+ url = "https://gitlab.haskell.org/ghc/ghc/-/commit/7e75928ed0f1c4654de6ddd13d0b00bf4b5c6411.patch";
260+ hash = "sha256-sb+AHdkGkCu8MW0xoQIpD5kEc0zYX8udAMDoC+TWc0Q=";
261+ })
262+ ]
263 # Prevents passing --hyperlinked-source to haddock. Note that this can
264 # be configured via a user defined flavour now. Unfortunately, it is
265 # impossible to import an existing flavour in UserSettings, so patching
···303 url = "https://gitlab.haskell.org/ghc/ghc/-/commit/39bb6e583d64738db51441a556d499aa93a4fc4a.patch";
304 sha256 = "0w5fx413z924bi2irsy1l4xapxxhrq158b5gn6jzrbsmhvmpirs0";
305 })
306+ ]
307+308+ # Missing ELF symbols
309+ ++ lib.optionals stdenv.targetPlatform.isAndroid [
310+ ./ghc-define-undefined-elf-st-visibility.patch
311 ];
312313 stdenv = stdenvNoCC;
···346assert stdenv.buildPlatform == stdenv.hostPlatform || stdenv.hostPlatform == stdenv.targetPlatform;
347348# It is currently impossible to cross-compile GHC with Hadrian.
349+assert lib.assertMsg (stdenv.buildPlatform == stdenv.hostPlatform)
350+ "GHC >= 9.6 can't be cross-compiled. If you meant to build a GHC cross-compiler, use `buildPackages`.";
351352let
353 inherit (stdenv) buildPlatform hostPlatform targetPlatform;
···425 ld = cc.bintools;
426 "ld.gold" = cc.bintools;
427428+ windres = cc.bintools;
429+430 otool = cc.bintools.bintools;
431432 # GHC needs install_name_tool on all darwin platforms. The same one can
···485 gmp
486 libffi
487 ncurses
488+ numactl
489 ;
490 };
491···670 "--with-libdw-includes=${lib.getDev targetLibs.elfutils}/include"
671 "--with-libdw-libraries=${lib.getLib targetLibs.elfutils}/lib"
672 ]
673+ ++ lib.optionals enableNuma [
674+ "--enable-numa"
675+ "--with-libnuma-includes=${lib.getDev targetLibs.numactl}/include"
676+ "--with-libnuma-libraries=${lib.getLib targetLibs.numactl}/lib"
677+ ]
678 ++ lib.optionals targetPlatform.isDarwin [
679 # Darwin uses llvm-ar. GHC will try to use `-L` with `ar` when it is `llvm-ar`
680 # but it doesn’t currently work because Cabal never uses `-L` on Darwin. See:
···741742 buildInputs = [ bash ] ++ (libDeps hostPlatform);
743744+ # stage0:ghc (i.e. stage1) doesn't need to link against libnuma, so it's target specific
745+ depsTargetTarget = map lib.getDev (
746+ libDeps targetPlatform ++ lib.optionals enableNuma [ targetLibs.numactl ]
747+ );
748+ depsTargetTargetPropagated = map (lib.getOutput "out") (
749+ libDeps targetPlatform ++ lib.optionals enableNuma [ targetLibs.numactl ]
750+ );
751752 hadrianFlags = [
753 "--flavour=${ghcFlavour}"
···850 else
851 "${llvmPackages.clang}/bin/${llvmPackages.clang.targetPrefix}clang"
852 }"
853+ ''
854+ + lib.optionalString stdenv.targetPlatform.isWindows ''
855+ ghc-settings-edit "$settingsFile" \
856+ "windres command" "${toolPath "windres" installCC}"
857 ''
858 + ''
859
···68 || (stdenv.hostPlatform != stdenv.targetPlatform)
69 ),
70000071 # What flavour to build. An empty string indicates no
72 # specific flavour and falls back to ghc default values.
73 ghcFlavour ? lib.optionalString (stdenv.targetPlatform != stdenv.hostPlatform) (
···261 gmp
262 libffi
263 ncurses
0264 ;
265 };
266···296 stripLen = 1;
297 extraPrefix = "libraries/unix/";
298 })
299- ]
300- ++ lib.optionals (lib.versionOlder version "9.4") [
301- # fix hyperlinked haddock sources: https://github.com/haskell/haddock/pull/1482
302- (fetchpatch {
303- url = "https://patch-diff.githubusercontent.com/raw/haskell/haddock/pull/1482.patch";
304- sha256 = "sha256-8w8QUCsODaTvknCDGgTfFNZa8ZmvIKaKS+2ZJZ9foYk=";
305- extraPrefix = "utils/haddock/";
306- stripLen = 1;
307- })
308- ]
309310- ++ lib.optionals (lib.versionOlder version "9.4.6") [
311- # Fix docs build with sphinx >= 6.0
312- # https://gitlab.haskell.org/ghc/ghc/-/issues/22766
313- (fetchpatch {
314- name = "ghc-docs-sphinx-6.0.patch";
315- url = "https://gitlab.haskell.org/ghc/ghc/-/commit/10e94a556b4f90769b7fd718b9790d58ae566600.patch";
316- sha256 = "0kmhfamr16w8gch0lgln2912r8aryjky1hfcda3jkcwa5cdzgjdv";
317- })
318- ]
319-320- ++ [
321 # Fix docs build with Sphinx >= 7 https://gitlab.haskell.org/ghc/ghc/-/issues/24129
322 ./docs-sphinx-7.patch
323- ]
324325- ++ lib.optionals (lib.versionOlder version "9.2.2") [
326- # Add flag that fixes C++ exception handling; opt-in. Merged in 9.4 and 9.2.2.
327- # https://gitlab.haskell.org/ghc/ghc/-/merge_requests/7423
328- (fetchpatch {
329- name = "ghc-9.0.2-fcompact-unwind.patch";
330- # Note that the test suite is not packaged.
331- url = "https://gitlab.haskell.org/ghc/ghc/-/commit/c6132c782d974a7701e7f6447bdcd2bf6db4299a.patch?merge_request_iid=7423";
332- sha256 = "sha256-b4feGZIaKDj/UKjWTNY6/jH4s2iate0wAgMxG3rAbZI=";
333- })
334- ]
335-336- ++ lib.optionals (lib.versionAtLeast version "9.2") [
337- # Don't generate code that doesn't compile when --enable-relocatable is passed to Setup.hs
338- # Can be removed if the Cabal library included with ghc backports the linked fix
339- (fetchpatch {
340- url = "https://github.com/haskell/cabal/commit/6c796218c92f93c95e94d5ec2d077f6956f68e98.patch";
341- stripLen = 1;
342- extraPrefix = "libraries/Cabal/";
343- sha256 = "sha256-yRQ6YmMiwBwiYseC5BsrEtDgFbWvst+maGgDtdD0vAY=";
344- })
345- ]
346-347- ++ lib.optionals (version == "9.4.6") [
348- # Work around a type not being defined when including Rts.h in bytestring's cbits
349- # due to missing feature macros. See https://gitlab.haskell.org/ghc/ghc/-/issues/23810.
350- ./9.4.6-bytestring-posix-source.patch
351- ]
352-353- ++ lib.optionals (stdenv.targetPlatform.isDarwin && stdenv.targetPlatform.isAarch64) [
354- # Prevent the paths module from emitting symbols that we don't use
355- # when building with separate outputs.
356- #
357- # These cause problems as they're not eliminated by GHC's dead code
358- # elimination on aarch64-darwin. (see
359- # https://github.com/NixOS/nixpkgs/issues/140774 for details).
360 (
361- if lib.versionAtLeast version "9.2" then
362- ./Cabal-at-least-3.6-paths-fix-cycle-aarch64-darwin.patch
363 else
364- ./Cabal-3.2-3.4-paths-fix-cycle-aarch64-darwin.patch
365 )
366- ]
367-368- # Fixes stack overrun in rts which crashes an process whenever
369- # freeHaskellFunPtr is called with nixpkgs' hardening flags.
370- # https://gitlab.haskell.org/ghc/ghc/-/issues/25485
371- # https://gitlab.haskell.org/ghc/ghc/-/merge_requests/13599
372- # TODO: patch doesn't apply for < 9.4, but may still be necessary?
373- ++ lib.optionals (lib.versionAtLeast version "9.4") [
374- (fetchpatch {
375- name = "ghc-rts-adjustor-fix-i386-stack-overrun.patch";
376- url = "https://gitlab.haskell.org/ghc/ghc/-/commit/39bb6e583d64738db51441a556d499aa93a4fc4a.patch";
377- sha256 = "0w5fx413z924bi2irsy1l4xapxxhrq158b5gn6jzrbsmhvmpirs0";
378- })
379 ]
380381 # Before GHC 9.6, GHC, when used to compile C sources (i.e. to drive the CC), would first
···414 [
415 # TODO(@sternenseemann): backport changes to GHC < 9.4 if possible
416 ]
417- );
0000000000000000000000000000000000000000000000000000000000000000000000000000418419 postPatch = "patchShebangs .";
420···563 ++ lib.optionals (disableLargeAddressSpace) [
564 "--disable-large-address-space"
565 ]
00000566 ++ lib.optionals enableUnregisterised [
567 "--enable-unregisterised"
568 ];
···618619 buildInputs = [ bash ] ++ (libDeps hostPlatform);
620621- depsTargetTarget = map lib.getDev (libDeps targetPlatform);
622- depsTargetTargetPropagated = map (lib.getOutput "out") (libDeps targetPlatform);
00000623624 # required, because otherwise all symbols from HSffi.o are stripped, and
625 # that in turn causes GHCi to abort
···68 || (stdenv.hostPlatform != stdenv.targetPlatform)
69 ),
7071+ # Enable NUMA support in RTS
72+ enableNuma ? lib.meta.availableOn stdenv.targetPlatform numactl,
73+ numactl,
74+75 # What flavour to build. An empty string indicates no
76 # specific flavour and falls back to ghc default values.
77 ghcFlavour ? lib.optionalString (stdenv.targetPlatform != stdenv.hostPlatform) (
···265 gmp
266 libffi
267 ncurses
268+ numactl
269 ;
270 };
271···301 stripLen = 1;
302 extraPrefix = "libraries/unix/";
303 })
000000000030400000000000305 # Fix docs build with Sphinx >= 7 https://gitlab.haskell.org/ghc/ghc/-/issues/24129
306 ./docs-sphinx-7.patch
0307308+ # Correctly record libnuma's library and include directories in the
309+ # package db. This fixes linking whenever stdenv and propagation won't
310+ # quite pass the correct -L flags to the linker, e.g. when using GHC
311+ # outside of stdenv/nixpkgs or build->build compilation in pkgsStatic.
0000000000000000000000000000000312 (
313+ if lib.versionAtLeast version "9.4" then
314+ ./ghc-9.4-rts-package-db-libnuma-dirs.patch
315 else
316+ ./ghc-8.10-9.2-rts-package-db-libnuma-dirs.patch
317 )
0000000000000318 ]
319320 # Before GHC 9.6, GHC, when used to compile C sources (i.e. to drive the CC), would first
···353 [
354 # TODO(@sternenseemann): backport changes to GHC < 9.4 if possible
355 ]
356+ )
357+358+ ++ lib.optionals (lib.versionAtLeast version "9.2") [
359+ # Don't generate code that doesn't compile when --enable-relocatable is passed to Setup.hs
360+ # Can be removed if the Cabal library included with ghc backports the linked fix
361+ (fetchpatch {
362+ url = "https://github.com/haskell/cabal/commit/6c796218c92f93c95e94d5ec2d077f6956f68e98.patch";
363+ stripLen = 1;
364+ extraPrefix = "libraries/Cabal/";
365+ sha256 = "sha256-yRQ6YmMiwBwiYseC5BsrEtDgFbWvst+maGgDtdD0vAY=";
366+ })
367+ ]
368+369+ ++ lib.optionals (lib.versionOlder version "9.2.2") [
370+ # Add flag that fixes C++ exception handling; opt-in. Merged in 9.4 and 9.2.2.
371+ # https://gitlab.haskell.org/ghc/ghc/-/merge_requests/7423
372+ (fetchpatch {
373+ name = "ghc-9.0.2-fcompact-unwind.patch";
374+ # Note that the test suite is not packaged.
375+ url = "https://gitlab.haskell.org/ghc/ghc/-/commit/c6132c782d974a7701e7f6447bdcd2bf6db4299a.patch?merge_request_iid=7423";
376+ sha256 = "sha256-b4feGZIaKDj/UKjWTNY6/jH4s2iate0wAgMxG3rAbZI=";
377+ })
378+ ]
379+380+ # fix hyperlinked haddock sources: https://github.com/haskell/haddock/pull/1482
381+ ++ lib.optionals (lib.versionOlder version "9.4") [
382+ (fetchpatch {
383+ url = "https://patch-diff.githubusercontent.com/raw/haskell/haddock/pull/1482.patch";
384+ sha256 = "sha256-8w8QUCsODaTvknCDGgTfFNZa8ZmvIKaKS+2ZJZ9foYk=";
385+ extraPrefix = "utils/haddock/";
386+ stripLen = 1;
387+ })
388+ ]
389+390+ # Fixes stack overrun in rts which crashes an process whenever
391+ # freeHaskellFunPtr is called with nixpkgs' hardening flags.
392+ # https://gitlab.haskell.org/ghc/ghc/-/issues/25485
393+ # https://gitlab.haskell.org/ghc/ghc/-/merge_requests/13599
394+ # TODO: patch doesn't apply for < 9.4, but may still be necessary?
395+ ++ lib.optionals (lib.versionAtLeast version "9.4") [
396+ (fetchpatch {
397+ name = "ghc-rts-adjustor-fix-i386-stack-overrun.patch";
398+ url = "https://gitlab.haskell.org/ghc/ghc/-/commit/39bb6e583d64738db51441a556d499aa93a4fc4a.patch";
399+ sha256 = "0w5fx413z924bi2irsy1l4xapxxhrq158b5gn6jzrbsmhvmpirs0";
400+ })
401+ ]
402+403+ ++ lib.optionals (lib.versionOlder version "9.4.6") [
404+ # Fix docs build with sphinx >= 6.0
405+ # https://gitlab.haskell.org/ghc/ghc/-/issues/22766
406+ (fetchpatch {
407+ name = "ghc-docs-sphinx-6.0.patch";
408+ url = "https://gitlab.haskell.org/ghc/ghc/-/commit/10e94a556b4f90769b7fd718b9790d58ae566600.patch";
409+ sha256 = "0kmhfamr16w8gch0lgln2912r8aryjky1hfcda3jkcwa5cdzgjdv";
410+ })
411+ ]
412+413+ ++ lib.optionals (version == "9.4.6") [
414+ # Work around a type not being defined when including Rts.h in bytestring's cbits
415+ # due to missing feature macros. See https://gitlab.haskell.org/ghc/ghc/-/issues/23810.
416+ ./9.4.6-bytestring-posix-source.patch
417+ ]
418+419+ ++ lib.optionals (stdenv.targetPlatform.isDarwin && stdenv.targetPlatform.isAarch64) [
420+ # Prevent the paths module from emitting symbols that we don't use
421+ # when building with separate outputs.
422+ #
423+ # These cause problems as they're not eliminated by GHC's dead code
424+ # elimination on aarch64-darwin. (see
425+ # https://github.com/NixOS/nixpkgs/issues/140774 for details).
426+ (
427+ if lib.versionAtLeast version "9.2" then
428+ ./Cabal-at-least-3.6-paths-fix-cycle-aarch64-darwin.patch
429+ else
430+ ./Cabal-3.2-3.4-paths-fix-cycle-aarch64-darwin.patch
431+ )
432+ ];
433434 postPatch = "patchShebangs .";
435···578 ++ lib.optionals (disableLargeAddressSpace) [
579 "--disable-large-address-space"
580 ]
581+ ++ lib.optionals enableNuma [
582+ "--enable-numa"
583+ "--with-libnuma-includes=${lib.getDev targetLibs.numactl}/include"
584+ "--with-libnuma-libraries=${lib.getLib targetLibs.numactl}/lib"
585+ ]
586 ++ lib.optionals enableUnregisterised [
587 "--enable-unregisterised"
588 ];
···638639 buildInputs = [ bash ] ++ (libDeps hostPlatform);
640641+ # stage1 GHC doesn't need to link against libnuma, so it's target specific
642+ depsTargetTarget = map lib.getDev (
643+ libDeps targetPlatform ++ lib.optionals enableNuma [ targetLibs.numactl ]
644+ );
645+ depsTargetTargetPropagated = map (lib.getOutput "out") (
646+ libDeps targetPlatform ++ lib.optionals enableNuma [ targetLibs.numactl ]
647+ );
648649 # required, because otherwise all symbols from HSffi.o are stripped, and
650 # that in turn causes GHCi to abort
···117 "haskell-language-server has dropped support for ghc 9.0 in version 2.4.0.0, please use a newer ghc version or an older nixpkgs version"
118 (markBroken super.haskell-language-server);
119000120 # Needs to use ghc-lib due to incompatible GHC
121 ghc-tags = doDistribute self.ghc-tags_1_5;
122
···117 "haskell-language-server has dropped support for ghc 9.0 in version 2.4.0.0, please use a newer ghc version or an older nixpkgs version"
118 (markBroken super.haskell-language-server);
119120+ # test suite depends on vcr since hpack >= 0.38.1 which requires GHC2021
121+ hpack_0_38_1 = dontCheck super.hpack_0_38_1;
122+123 # Needs to use ghc-lib due to incompatible GHC
124 ghc-tags = doDistribute self.ghc-tags_1_5;
125
···16 - AC-BuildPlatform # failure in job https://hydra.nixos.org/build/233219130 at 2023-09-02
17 - AC-EasyRaster-GTK # failure in job https://hydra.nixos.org/build/233226232 at 2023-09-02
18 - AC-HalfInteger # failure in job https://hydra.nixos.org/build/233239266 at 2023-09-02
019 - ac-machine # failure in job https://hydra.nixos.org/build/233253535 at 2023-09-02
20 - AC-MiniTest # failure in job https://hydra.nixos.org/build/233216015 at 2023-09-02
21 - AC-Terminal # failure in job https://hydra.nixos.org/build/233192747 at 2023-09-02
···256 - ascii-string # failure in job https://hydra.nixos.org/build/233249978 at 2023-09-02
257 - ascii-vector-avc # failure in job https://hydra.nixos.org/build/233208533 at 2023-09-02
258 - ascii85-conduit # failure in job https://hydra.nixos.org/build/233235427 at 2023-09-02
0259 - asciidiagram # failure in job https://hydra.nixos.org/build/233259020 at 2023-09-02
260 - asif # failure in job https://hydra.nixos.org/build/233251551 at 2023-09-02
261 - asil # failure in job https://hydra.nixos.org/build/233204081 at 2023-09-02
···313 - auto # failure in job https://hydra.nixos.org/build/233211088 at 2023-09-02
314 - auto-split # failure in job https://hydra.nixos.org/build/295091795 at 2025-04-22
315 - autoapply # failure in job https://hydra.nixos.org/build/295091805 at 2025-04-22
0316 - autom # failure in job https://hydra.nixos.org/build/234461198 at 2023-09-13
317 - automata # failure in job https://hydra.nixos.org/build/295091890 at 2025-04-22
318 - autonix-deps # failure in job https://hydra.nixos.org/build/233258269 at 2023-09-02
···326 - avwx # failure in job https://hydra.nixos.org/build/233258167 at 2023-09-02
327 - awesome-prelude # failure in job https://hydra.nixos.org/build/233232761 at 2023-09-02
328 - awesomium-raw # failure in job https://hydra.nixos.org/build/233241036 at 2023-09-02
0329 - aws-cloudfront-signed-cookies # failure in job https://hydra.nixos.org/build/252736035 at 2024-03-16
330 - aws-cloudfront-signer # failure in job https://hydra.nixos.org/build/233194723 at 2023-09-02
331 - aws-easy # failure building library in job https://hydra.nixos.org/build/237244335 at 2023-10-21
···375 - base32-lens # failure in job https://hydra.nixos.org/build/233226670 at 2023-09-02
376 - base58address # failure in job https://hydra.nixos.org/build/233221633 at 2023-09-02
377 - base62 # failure in job https://hydra.nixos.org/build/233250040 at 2023-09-02
378- - base64-bytes # failure in job https://hydra.nixos.org/build/295091866 at 2025-04-22
379 - base64-conduit # failure in job https://hydra.nixos.org/build/233197196 at 2023-09-02
380 - base64-lens # failure in job https://hydra.nixos.org/build/233252600 at 2023-09-02
381 - based # failure in job https://hydra.nixos.org/build/233211900 at 2023-09-02
···515 - bliplib # failure in job https://hydra.nixos.org/build/233195751 at 2023-09-02
516 - blockchain # failure in job https://hydra.nixos.org/build/233245492 at 2023-09-02
517 - blockhash # failure in job https://hydra.nixos.org/build/233227049 at 2023-09-02
00518 - Blogdown # failure in job https://hydra.nixos.org/build/233239841 at 2023-09-02
519 - BlogLiterately # failure in job https://hydra.nixos.org/build/233202164 at 2023-09-02
520 - bloodhound-amazonka-auth # failure building library in job https://hydra.nixos.org/build/237245625 at 2023-10-21
···718 - Cassava # failure in job https://hydra.nixos.org/build/233245677 at 2023-09-02
719 - cassava-conduit # failure in job https://hydra.nixos.org/build/233220495 at 2023-09-02
720 - cassava-records # failure in job https://hydra.nixos.org/build/233259049 at 2023-09-02
721- - cassette # failure in job https://hydra.nixos.org/build/233201251 at 2023-09-02
722 - castle # failure in job https://hydra.nixos.org/build/233204027 at 2023-09-02
723 - catamorphism # failure in job https://hydra.nixos.org/build/233208488 at 2023-09-02
724 - Catana # failure in job https://hydra.nixos.org/build/233196550 at 2023-09-02
···726 - category-printf # failure in job https://hydra.nixos.org/build/233216355 at 2023-09-02
727 - category-traced # failure in job https://hydra.nixos.org/build/233193963 at 2023-09-02
728 - catnplus # failure in job https://hydra.nixos.org/build/233241280 at 2023-09-02
0729 - cautious-file # failure in job https://hydra.nixos.org/build/233218702 at 2023-09-02
730 - cautious-gen # failure in job https://hydra.nixos.org/build/233258367 at 2023-09-02
731 - cayene-lpp # failure in job https://hydra.nixos.org/build/233228959 at 2023-09-02
···871 - cmph # failure in job https://hydra.nixos.org/build/233225766 at 2023-09-02
872 - CMQ # failure in job https://hydra.nixos.org/build/233233168 at 2023-09-02
873 - cmt # failure in job https://hydra.nixos.org/build/233233474 at 2023-09-02
874- - co-log-concurrent # failure in job https://hydra.nixos.org/build/295092333 at 2025-04-22
875- - co-log-json # failure in job https://hydra.nixos.org/build/295092337 at 2025-04-22
876 - co-log-polysemy-formatting # failure building executable 'example' in job https://hydra.nixos.org/build/237249360 at 2023-10-21
877 - co-log-sys # failure in job https://hydra.nixos.org/build/233206587 at 2023-09-02
878 - cobot-tools # failure in job https://hydra.nixos.org/build/233259173 at 2023-09-02
···1015 - contra-tracers # failure in job https://hydra.nixos.org/build/233197959 at 2023-09-02
1016 - contracheck-applicative # failure in job https://hydra.nixos.org/build/233255104 at 2023-09-02
1017 - Contract # failure in job https://hydra.nixos.org/build/233242103 at 2023-09-02
1018- - control-block # failure in job https://hydra.nixos.org/build/295092490 at 2025-04-22
1019 - control-dsl # failure in job https://hydra.nixos.org/build/233249037 at 2023-09-02
1020 - control-iso # failure in job https://hydra.nixos.org/build/233229763 at 2023-09-02
1021 - control-monad-failure # failure in job https://hydra.nixos.org/build/233240265 at 2023-09-02
···1024 - contstuff-monads-tf # failure in job https://hydra.nixos.org/build/233224064 at 2023-09-02
1025 - contstuff-transformers # failure in job https://hydra.nixos.org/build/233244153 at 2023-09-02
1026 - conversion-bytestring # failure in job https://hydra.nixos.org/build/295092506 at 2025-04-22
01027 - cookie-tray # failure in job https://hydra.nixos.org/build/295092527 at 2025-04-22
1028 - cooklang-hs # failure in job https://hydra.nixos.org/build/295092511 at 2025-04-22
1029 - copilot-bluespec # failure in job https://hydra.nixos.org/build/253685418 at 2024-03-31
···1116 - cuckoo # failure in job https://hydra.nixos.org/build/233210915 at 2023-09-02
1117 - cuckoo-filter # failure in job https://hydra.nixos.org/build/233226484 at 2023-09-02
1118 - cudd # failure in job https://hydra.nixos.org/build/252716117 at 2024-03-16
01119 - curl-aeson # failure in job https://hydra.nixos.org/build/233210106 at 2023-09-02
1120 - curl-runnings # failure in job https://hydra.nixos.org/build/233258680 at 2023-09-02
1121 - currency-convert # failure in job https://hydra.nixos.org/build/233224509 at 2023-09-02
···1305 - dia-base # failure in job https://hydra.nixos.org/build/233230896 at 2023-09-02
1306 - diagnose # failure in job https://hydra.nixos.org/build/233231767 at 2023-09-02
1307 - diagrams-boolean # failure in job https://hydra.nixos.org/build/233202036 at 2023-09-02
1308- - diagrams-gtk # failure in job https://hydra.nixos.org/build/295092833 at 2025-04-22
1309 - diagrams-haddock # failure in job https://hydra.nixos.org/build/295092844 at 2025-04-22
1310- - diagrams-pandoc # failure in job https://hydra.nixos.org/build/295092840 at 2025-04-22
1311 - diagrams-pdf # failure in job https://hydra.nixos.org/build/233197864 at 2023-09-02
1312 - diagrams-qrcode # failure in job https://hydra.nixos.org/build/233229542 at 2023-09-02
1313 - diagrams-rubiks-cube # failure in job https://hydra.nixos.org/build/233213426 at 2023-09-02
···1349 - direm # failure in job https://hydra.nixos.org/build/233211496 at 2023-09-02
1350 - dirstream # failure in job https://hydra.nixos.org/build/273442606 at 2024-10-01
1351 - disco # failure in job https://hydra.nixos.org/build/233212298 at 2023-09-02
1352- - discord-haskell # failure in job https://hydra.nixos.org/build/295092870 at 2025-04-22
1353 - discord-register # failure in job https://hydra.nixos.org/build/295092898 at 2025-04-22
1354 - discord-types # failure in job https://hydra.nixos.org/build/233251778 at 2023-09-02
1355 - discordian-calendar # failure in job https://hydra.nixos.org/build/233218124 at 2023-09-02
···1401 - DOH # failure in job https://hydra.nixos.org/build/233231913 at 2023-09-02
1402 - doi # failure in job https://hydra.nixos.org/build/295092999 at 2025-04-22
1403 - dom-events # failure in job https://hydra.nixos.org/build/233231199 at 2023-09-02
1404- - dom-parser # failure in job https://hydra.nixos.org/build/233235797 at 2023-09-02
1405 - dom-selector # failure in job https://hydra.nixos.org/build/233212663 at 2023-09-02
1406 - domaindriven-core # failure in job https://hydra.nixos.org/build/233234739 at 2023-09-02
1407 - dominion # failure in job https://hydra.nixos.org/build/252714022 at 2024-03-16
···1409 - dormouse-uri # failure in job https://hydra.nixos.org/build/233191706 at 2023-09-02
1410 - dot-linker # failure in job https://hydra.nixos.org/build/233237512 at 2023-09-02
1411 - dotfs # failure in job https://hydra.nixos.org/build/233200762 at 2023-09-02
1412- - double-x-encoding # failure in job https://hydra.nixos.org/build/253694746 at 2024-03-31
1413 - doublezip # failure in job https://hydra.nixos.org/build/233219270 at 2023-09-02
1414 - doublify-toolkit # failure in job https://hydra.nixos.org/build/233223302 at 2023-09-02
1415 - dovin # failure in job https://hydra.nixos.org/build/252714139 at 2024-03-16
···1446 - dualizer # failure in job https://hydra.nixos.org/build/233237592 at 2023-09-02
1447 - duckling # failure in job https://hydra.nixos.org/build/233247880 at 2023-09-02
1448 - duet # failure in job https://hydra.nixos.org/build/233219004 at 2023-09-02
1449- - dumb-cas # failure in job https://hydra.nixos.org/build/252730634 at 2024-03-16
1450 - dump-core # failure in job https://hydra.nixos.org/build/233244428 at 2023-09-02
1451 - dunai-core # failure in job https://hydra.nixos.org/build/233255804 at 2023-09-02
1452 - Dung # failure in job https://hydra.nixos.org/build/233206343 at 2023-09-02
···1507 - editline # failure in job https://hydra.nixos.org/build/233259515 at 2023-09-02
1508 - edits # failure in job https://hydra.nixos.org/build/295093075 at 2025-04-22
1509 - effect-handlers # failure in job https://hydra.nixos.org/build/233234988 at 2023-09-02
1510- - effect-stack # failure in job https://hydra.nixos.org/build/233212358 at 2023-09-02
1511 - effectful-st # failure in job https://hydra.nixos.org/build/233248591 at 2023-09-02
1512 - effectful-zoo # failure in job https://hydra.nixos.org/build/283208805 at 2024-12-31
1513 - effective-aspects # failure in job https://hydra.nixos.org/build/233223120 at 2023-09-02
···1656 - exinst-hashable # failure in job https://hydra.nixos.org/build/233210438 at 2023-09-02
1657 - exists # failure in job https://hydra.nixos.org/build/233243541 at 2023-09-02
1658 - exitcode # failure in job https://hydra.nixos.org/build/233238454 at 2023-09-02
01659 - exp-cache # failure in job https://hydra.nixos.org/build/233220561 at 2023-09-02
1660 - exp-extended # failure in job https://hydra.nixos.org/build/233236139 at 2023-09-02
1661 - experimenter # failure in job https://hydra.nixos.org/build/252726011 at 2024-03-16
···1905 - frown # failure in job https://hydra.nixos.org/build/233208462 at 2023-09-02
1906 - frp-arduino # failure in job https://hydra.nixos.org/build/233192216 at 2023-09-02
1907 - frpnow # failure in job https://hydra.nixos.org/build/233236056 at 2023-09-02
1908- - fs-api # failure in job https://hydra.nixos.org/build/299137683 at 2025-06-23
1909 - fs-events # failure in job https://hydra.nixos.org/build/233218231 at 2023-09-02
1910 - fsh-csv # failure in job https://hydra.nixos.org/build/233220196 at 2023-09-02
1911 - FSM # failure in job https://hydra.nixos.org/build/233247343 at 2023-09-02
···1926 - funcons-tools # failure in job https://hydra.nixos.org/build/295122838 at 2025-04-22
1927 - function-instances-algebra # failure in job https://hydra.nixos.org/build/233202209 at 2023-09-02
1928 - functional-arrow # failure in job https://hydra.nixos.org/build/295093396 at 2025-04-22
1929- - functor-combinators # failure in job https://hydra.nixos.org/build/252714438 at 2024-03-16
1930 - functor-friends # failure in job https://hydra.nixos.org/build/233208108 at 2023-09-02
1931 - functor-infix # failure in job https://hydra.nixos.org/build/233228794 at 2023-09-02
1932 - functor-utils # failure in job https://hydra.nixos.org/build/233213259 at 2023-09-02
···1952 - fwgl # failure in job https://hydra.nixos.org/build/233246210 at 2023-09-02
1953 - fwgl-javascript # broken by fwgl, manually entered here, because it does not appear in transitive-broken.yaml at 2024-07-09
1954 - fx # failure in job https://hydra.nixos.org/build/295093438 at 2025-04-22
1955- - fxpak # failure in job https://hydra.nixos.org/build/265955610 at 2024-07-14
1956 - g-npm # failure in job https://hydra.nixos.org/build/233215965 at 2023-09-02
1957 - g4ip # failure in job https://hydra.nixos.org/build/233248315 at 2023-09-02
1958 - gambler # failure in job https://hydra.nixos.org/build/252732701 at 2024-03-16
···1980 - GeneralTicTacToe # failure in job https://hydra.nixos.org/build/233207939 at 2023-09-02
1981 - generator # failure in job https://hydra.nixos.org/build/233213384 at 2023-09-02
1982 - generators # failure in job https://hydra.nixos.org/build/233246459 at 2023-09-02
1983- - generic-aeson # failure in job https://hydra.nixos.org/build/233198064 at 2023-09-02
1984 - generic-binary # failure in job https://hydra.nixos.org/build/233214473 at 2023-09-02
1985 - generic-church # failure in job https://hydra.nixos.org/build/233213419 at 2023-09-02
1986 - generic-enum # failure in job https://hydra.nixos.org/build/233220316 at 2023-09-02
···2010 - gentlemark # failure in job https://hydra.nixos.org/build/233202158 at 2023-09-02
2011 - genvalidity-appendful # failure in job https://hydra.nixos.org/build/295093519 at 2025-04-22
2012 - genvalidity-mergeful # failure in job https://hydra.nixos.org/build/295093508 at 2025-04-22
2013- - genvalidity-network-uri # failure in job https://hydra.nixos.org/build/299137822 at 2025-06-23
2014 - geo-resolver # failure in job https://hydra.nixos.org/build/233206563 at 2023-09-02
2015 - geo-uk # failure in job https://hydra.nixos.org/build/233221284 at 2023-09-02
2016 - geocode-google # failure in job https://hydra.nixos.org/build/233191594 at 2023-09-02
···2078 - gi-gio-hs-list-model # failure in job https://hydra.nixos.org/build/233241640 at 2023-09-02
2079 - gi-gstapp # failure in job https://hydra.nixos.org/build/253686159 at 2024-03-31
2080 - gi-gsttag # failure in job https://hydra.nixos.org/build/233197576 at 2023-09-02
02081 - gi-gtksheet # failure in job https://hydra.nixos.org/build/233211386 at 2023-09-02
2082 - gi-ibus # failure in job https://hydra.nixos.org/build/233220272 at 2023-09-02
2083 - gi-keybinder # failure in job https://hydra.nixos.org/build/265273447 at 2024-07-14
···2086 - giak # failure in job https://hydra.nixos.org/build/233242229 at 2023-09-02
2087 - gibberish # failure in job https://hydra.nixos.org/build/255688714 at 2024-04-16
2088 - Gifcurry # failure in job https://hydra.nixos.org/build/233200204 at 2023-09-02
02089 - gingersnap # failure in job https://hydra.nixos.org/build/233227186 at 2023-09-02
2090 - ginsu # failure in job https://hydra.nixos.org/build/233223259 at 2023-09-02
2091 - gipeda # failure in job https://hydra.nixos.org/build/233228149 at 2023-09-02
···2455 - haskelldb-wx # failure in job https://hydra.nixos.org/build/233197525 at 2023-09-02
2456 - HaskellForMaths # failure in job https://hydra.nixos.org/build/233237608 at 2023-09-02
2457 - HaskellLM # failure in job https://hydra.nixos.org/build/233237641 at 2023-09-02
2458- - HaskellNet # failure in job https://hydra.nixos.org/build/295091001 at 2025-04-22
2459 - HaskellNN # failure in job https://hydra.nixos.org/build/233209323 at 2023-09-02
2460 - Haskelloids # failure in job https://hydra.nixos.org/build/233204861 at 2023-09-02
2461 - haskellscrabble # failure in job https://hydra.nixos.org/build/233251248 at 2023-09-02
···2471 - haskoin # failure in job https://hydra.nixos.org/build/233201668 at 2023-09-02
2472 - haskoin-store # failure in job https://hydra.nixos.org/build/299138382 at 2025-06-23
2473 - haskoin-util # failure in job https://hydra.nixos.org/build/233222171 at 2023-09-02
2474- - haskoin-wallet # failure in job https://hydra.nixos.org/build/233206922 at 2023-09-02
2475 - haskore-realtime # failure in job https://hydra.nixos.org/build/301391170 at 2025-07-01
2476 - haskore-vintage # failure in job https://hydra.nixos.org/build/233230742 at 2023-09-02
2477 - HaskRel # failure in job https://hydra.nixos.org/build/295090970 at 2025-04-22
···2522 - hbeat # failure in job https://hydra.nixos.org/build/233228628 at 2023-09-02
2523 - hblas # failure in job https://hydra.nixos.org/build/233232561 at 2023-09-02
2524 - hblock # failure in job https://hydra.nixos.org/build/233205351 at 2023-09-02
02525 - hburg # failure in job https://hydra.nixos.org/build/233247429 at 2023-09-02
2526 - hcad # failure in job https://hydra.nixos.org/build/233219976 at 2023-09-02
2527 - HCard # failure in job https://hydra.nixos.org/build/233231922 at 2023-09-02
···2561 - heckle # failure in job https://hydra.nixos.org/build/233228954 at 2023-09-02
2562 - heddit # failure in job https://hydra.nixos.org/build/233229058 at 2023-09-02
2563 - hedgehog-checkers # failure in job https://hydra.nixos.org/build/233229405 at 2023-09-02
02564 - hedgehog-gen # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237243271 at 2023-10-21
2565 - hedgehog-generic # failure in job https://hydra.nixos.org/build/233204695 at 2023-09-02
2566 - hedgehog-golden # failure in job https://hydra.nixos.org/build/233219619 at 2023-09-02
···2880 - hs-scrape # failure in job https://hydra.nixos.org/build/233244221 at 2023-09-02
2881 - hs-server-starter # failure in job https://hydra.nixos.org/build/295094379 at 2025-04-22
2882 - hs-snowtify # failure in job https://hydra.nixos.org/build/233200511 at 2023-09-02
2883- - hs-speedscope # failure in job https://hydra.nixos.org/build/295094385 at 2025-04-22
2884 - hs-tags # failure in job https://hydra.nixos.org/build/233258358 at 2023-09-02
2885 - hs-tango # failure in job https://hydra.nixos.org/build/276377558 at 2024-11-06
2886 - hs-term-emulator # failure in job https://hydra.nixos.org/build/233252262 at 2023-09-02
···3134 - IDynamic # failure in job https://hydra.nixos.org/build/233196222 at 2023-09-02
3135 - ieee-utils # failure in job https://hydra.nixos.org/build/233224430 at 2023-09-02
3136 - iexcloud # failure in job https://hydra.nixos.org/build/233224874 at 2023-09-02
03137 - ifcxt # failure in job https://hydra.nixos.org/build/233196911 at 2023-09-02
3138 - IFS # failure in job https://hydra.nixos.org/build/233246865 at 2023-09-02
3139 - ig # failure in job https://hydra.nixos.org/build/233203872 at 2023-09-02
···3221 - interspersed # failure in job https://hydra.nixos.org/build/252722645 at 2024-03-16
3222 - interval # failure in job https://hydra.nixos.org/build/233239434 at 2023-09-02
3223 - interval-algebra # failure in job https://hydra.nixos.org/build/233208487 at 2023-09-02
3224- - interval-patterns # failure in job https://hydra.nixos.org/build/239259401 at 2023-11-10
3225 - interval-tree-clock # failure in job https://hydra.nixos.org/build/233234316 at 2023-09-02
3226 - IntFormats # failure in job https://hydra.nixos.org/build/233195190 at 2023-09-02
3227 - intricacy # failure in job https://hydra.nixos.org/build/252711846 at 2024-03-16
···3259 - isdicom # failure in job https://hydra.nixos.org/build/233214249 at 2023-09-02
3260 - IsNull # failure in job https://hydra.nixos.org/build/233233011 at 2023-09-02
3261 - iso-deriving # failure in job https://hydra.nixos.org/build/252738238 at 2024-03-16
3262- - iso8601-duration # failure in job https://hydra.nixos.org/build/233190968 at 2023-09-02
3263 - isobmff # failure in job https://hydra.nixos.org/build/233237273 at 2023-09-02
3264 - isotope # failure in job https://hydra.nixos.org/build/233204650 at 2023-09-02
3265 - it-has # failure in job https://hydra.nixos.org/build/233212395 at 2023-09-02
···3332 - json-qq # failure in job https://hydra.nixos.org/build/233196259 at 2023-09-02
3333 - json-rpc-generic # failure in job https://hydra.nixos.org/build/233201371 at 2023-09-02
3334 - json-rpc-server # failure in job https://hydra.nixos.org/build/233201284 at 2023-09-02
03335 - json-syntax # failure in job https://hydra.nixos.org/build/233250639 at 2023-09-02
3336 - json-to-haskell # failure in job https://hydra.nixos.org/build/252711573 at 2024-03-16
3337 - json-to-type # failure in job https://hydra.nixos.org/build/275143966 at 2024-10-21
···3658 - llvm-base # failure in job https://hydra.nixos.org/build/233244366 at 2023-09-02
3659 - llvm-codegen # failure in job https://hydra.nixos.org/build/295095119 at 2025-04-22
3660 - llvm-extension # failure in job https://hydra.nixos.org/build/266355631 at 2024-07-14
03661 - llvm-general-pure # failure in job https://hydra.nixos.org/build/233246430 at 2023-09-02
3662 - llvm-hs # failure in job https://hydra.nixos.org/build/233205149 at 2023-09-02
3663 - llvm-hs-pure # failure in job https://hydra.nixos.org/build/252721738 at 2024-03-16
···3810 - mcm # failure in job https://hydra.nixos.org/build/233229087 at 2023-09-02
3811 - mcmaster-gloss-examples # failure in job https://hydra.nixos.org/build/234457610 at 2023-09-13
3812 - mcmc-synthesis # failure in job https://hydra.nixos.org/build/233208414 at 2023-09-02
003813 - mcpi # failure in job https://hydra.nixos.org/build/233231465 at 2023-09-02
3814 - mdapi # failure in job https://hydra.nixos.org/build/233257724 at 2023-09-02
3815 - mdcat # failure in job https://hydra.nixos.org/build/233249429 at 2023-09-02
···3995 - monoid-absorbing # failure in job https://hydra.nixos.org/build/233236465 at 2023-09-02
3996 - monoid-owns # failure in job https://hydra.nixos.org/build/233259043 at 2023-09-02
3997 - monoidmap # failure in job https://hydra.nixos.org/build/295095498 at 2025-04-22
3998- - monoidmap-internal # failure in job https://hydra.nixos.org/build/295095513 at 2025-04-22
3999 - monoidplus # failure in job https://hydra.nixos.org/build/233226759 at 2023-09-02
4000 - monoids # failure in job https://hydra.nixos.org/build/233231684 at 2023-09-02
4001 - monopati # failure in job https://hydra.nixos.org/build/233234119 at 2023-09-02
···4017 - movie-monad # failure in job https://hydra.nixos.org/build/233215402 at 2023-09-02
4018 - mpppc # failure in job https://hydra.nixos.org/build/233223008 at 2023-09-02
4019 - mpris # failure in job https://hydra.nixos.org/build/233259241 at 2023-09-02
04020 - mpvguihs # failure in job https://hydra.nixos.org/build/233196650 at 2023-09-02
4021 - mqtt # failure in job https://hydra.nixos.org/build/233202067 at 2023-09-02
4022 - mqtt-hs # failure in job https://hydra.nixos.org/build/233239399 at 2023-09-02
···4026 - ms-auth # failure in job https://hydra.nixos.org/build/233193383 at 2023-09-02
4027 - ms-azure-api # failure in job https://hydra.nixos.org/build/233202229 at 2023-09-02
4028 - ms-graph-api # failure in job https://hydra.nixos.org/build/233219042 at 2023-09-02
4029- - msgpack # failure in job https://hydra.nixos.org/build/233258131 at 2023-09-02
04030 - msgpack-types # failure in job https://hydra.nixos.org/build/233235351 at 2023-09-02
4031 - msh # failure in job https://hydra.nixos.org/build/233196466 at 2023-09-02
4032 - MTGBuilder # failure in job https://hydra.nixos.org/build/233227528 at 2023-09-02
···4273 - ohhecs # failure in job https://hydra.nixos.org/build/267987310 at 2024-07-31
4274 - ohloh-hs # failure in job https://hydra.nixos.org/build/233228177 at 2023-09-02
4275 - oi # failure in job https://hydra.nixos.org/build/233190838 at 2023-09-02
4276- - oidc-client # failure in job https://hydra.nixos.org/build/295095776 at 2025-04-22
4277 - okapi # failure in job https://hydra.nixos.org/build/233193822 at 2023-09-02
4278 - old-version # failure in job https://hydra.nixos.org/build/233198538 at 2023-09-02
4279 - ollama-haskell # failure in job https://hydra.nixos.org/build/276371507 at 2024-11-06
···4331 - openssh-protocol # failure in job https://hydra.nixos.org/build/233196013 at 2023-09-02
4332 - opentelemetry-extra # failure in job https://hydra.nixos.org/build/233194254 at 2023-09-02
4333 - opentelemetry-http-client # failure in job https://hydra.nixos.org/build/233221983 at 2023-09-02
4334- - opentelemetry-plugin # failure in job https://hydra.nixos.org/build/295095836 at 2025-04-22
4335 - opentheory-char # failure in job https://hydra.nixos.org/build/233222347 at 2023-09-02
4336 - opentype # failure in job https://hydra.nixos.org/build/233213443 at 2023-09-02
4337 - OpenVGRaw # failure in job https://hydra.nixos.org/build/233254457 at 2023-09-02
···4389 - overloaded-records # failure in job https://hydra.nixos.org/build/233235922 at 2023-09-02
4390 - overture # failure in job https://hydra.nixos.org/build/233245959 at 2023-09-02
4391 - owoify-hs # failure in job https://hydra.nixos.org/build/233213422 at 2023-09-02
04392 - pa-field-parser # failure in job https://hydra.nixos.org/build/295095885 at 2025-04-22
4393 - pack # failure in job https://hydra.nixos.org/build/233243562 at 2023-09-02
4394 - package-description-remote # failure in job https://hydra.nixos.org/build/233221358 at 2023-09-02
4395 - package-vt # failure in job https://hydra.nixos.org/build/233225831 at 2023-09-02
4396 - packdeps # failure in job https://hydra.nixos.org/build/233216607 at 2023-09-02
4397 - packed # failure in job https://hydra.nixos.org/build/233231889 at 2023-09-02
04398 - packed-dawg # failure in job https://hydra.nixos.org/build/233207332 at 2023-09-02
4399 - packed-multikey-map # failure in job https://hydra.nixos.org/build/233234157 at 2023-09-02
4400 - packedstring # failure in job https://hydra.nixos.org/build/233240511 at 2023-09-02
···4690 - plural # failure in job https://hydra.nixos.org/build/233198934 at 2023-09-02
4691 - ply-loader # failure in job https://hydra.nixos.org/build/252720663 at 2024-03-16
4692 - plzwrk # failure in job https://hydra.nixos.org/build/233219630 at 2023-09-02
04693 - pngload-fixed # failure in job https://hydra.nixos.org/build/233233956 at 2023-09-02
4694 - pocket # failure in job https://hydra.nixos.org/build/233244120 at 2023-09-02
4695 - podenv # failure in job https://hydra.nixos.org/build/233210257 at 2023-09-02
···4738 - pontarius-xpmn # failure in job https://hydra.nixos.org/build/233217546 at 2023-09-02
4739 - pool # failure in job https://hydra.nixos.org/build/233205364 at 2023-09-02
4740 - pool-conduit # failure in job https://hydra.nixos.org/build/233246643 at 2023-09-02
4741- - poolboy # failure in job https://hydra.nixos.org/build/233195085 at 2023-09-02
4742 - pop3-client # failure in job https://hydra.nixos.org/build/233251475 at 2023-09-02
4743 - popkey # failure in job https://hydra.nixos.org/build/233203892 at 2023-09-02
4744 - poppler # failure in job https://hydra.nixos.org/build/233196044 at 2023-09-02
···4978 - quickbooks # failure in job https://hydra.nixos.org/build/233227666 at 2023-09-02
4979 - quickcheck-arbitrary-template # failure in job https://hydra.nixos.org/build/233223045 at 2023-09-02
4980 - quickcheck-combinators # failure in job https://hydra.nixos.org/build/233209131 at 2023-09-02
4981- - quickcheck-lockstep # failure in job https://hydra.nixos.org/build/295096463 at 2025-04-22
4982 - quickcheck-property-comb # failure in job https://hydra.nixos.org/build/233204877 at 2023-09-02
4983 - quickcheck-property-monad # failure in job https://hydra.nixos.org/build/233228775 at 2023-09-02
4984 - quickcheck-rematch # failure in job https://hydra.nixos.org/build/233205449 at 2023-09-02
···5129 - regexqq # failure in job https://hydra.nixos.org/build/233233149 at 2023-09-02
5130 - regions # failure in job https://hydra.nixos.org/build/233196483 at 2023-09-02
5131 - register-machine-typelevel # failure in job https://hydra.nixos.org/build/233217514 at 2023-09-02
05132 - registry-options # failure in job https://hydra.nixos.org/build/295096594 at 2025-04-22
5133 - regress # failure in job https://hydra.nixos.org/build/233208901 at 2023-09-02
5134 - regular # failure in job https://hydra.nixos.org/build/233232656 at 2023-09-02
···5400 - servant-avro # failure in job https://hydra.nixos.org/build/233225632 at 2023-09-02
5401 - servant-benchmark # failure in job https://hydra.nixos.org/build/233203748 at 2023-09-02
5402 - servant-cassava # failure in job https://hydra.nixos.org/build/252730906 at 2024-03-16
5403- - servant-cli # failure in job https://hydra.nixos.org/build/233259212 at 2023-09-02
5404 - servant-client-js # failure in job https://hydra.nixos.org/build/233194725 at 2023-09-02
5405 - servant-combinators # failure in job https://hydra.nixos.org/build/233249924 at 2023-09-02
5406 - servant-db # failure in job https://hydra.nixos.org/build/233234946 at 2023-09-02
···5408 - servant-docs-simple # failure in job https://hydra.nixos.org/build/233237374 at 2023-09-02
5409 - servant-ekg # failure in job https://hydra.nixos.org/build/295096851 at 2025-04-22
5410 - servant-errors # failure in job https://hydra.nixos.org/build/233239712 at 2023-09-02
05411 - servant-gdp # failure in job https://hydra.nixos.org/build/233191664 at 2023-09-02
5412 - servant-generate # failure in job https://hydra.nixos.org/build/233199452 at 2023-09-02
5413 - servant-generic # failure in job https://hydra.nixos.org/build/233211338 at 2023-09-02
···5442 - servant-to-elm # failure in job https://hydra.nixos.org/build/253681347 at 2024-03-31
5443 - servant-tracing # failure in job https://hydra.nixos.org/build/233229308 at 2023-09-02
5444 - servant-typed-error # failure in job https://hydra.nixos.org/build/252727241 at 2024-03-16
5445- - servant-typescript # failure in job https://hydra.nixos.org/build/253932573 at 2024-03-31
5446 - servant-util # failure in job https://hydra.nixos.org/build/252729690 at 2024-03-16
5447 - servant-wasm # failure in job https://hydra.nixos.org/build/233191644 at 2023-09-02
5448 - servant-xml-conduit # failure in job https://hydra.nixos.org/build/243828707 at 2024-01-01
···5591 - skemmtun # failure in job https://hydra.nixos.org/build/233223893 at 2023-09-02
5592 - sketch-frp-copilot # copilot >=4.3 && <4.4,
5593 - skew-list # failure in job https://hydra.nixos.org/build/295097034 at 2025-04-22
05594 - skopedate # failure in job https://hydra.nixos.org/build/233220634 at 2023-09-02
5595 - skulk # failure in job https://hydra.nixos.org/build/233258672 at 2023-09-02
5596 - skylighting-extensions # failure in job https://hydra.nixos.org/build/233221387 at 2023-09-02
···5682 - socketed # failure in job https://hydra.nixos.org/build/233210087 at 2023-09-02
5683 - socketio # failure in job https://hydra.nixos.org/build/233214659 at 2023-09-02
5684 - sockets # failure in job https://hydra.nixos.org/build/295097095 at 2025-04-22
05685 - sodium # failure in job https://hydra.nixos.org/build/233213989 at 2023-09-02
5686 - soegtk # failure in job https://hydra.nixos.org/build/233198991 at 2023-09-02
5687 - softfloat-hs # failure in job https://hydra.nixos.org/build/233205242 at 2023-09-02
···5691 - sonic-visualiser # failure in job https://hydra.nixos.org/build/233257956 at 2023-09-02
5692 - Sonnex # failure in job https://hydra.nixos.org/build/233229367 at 2023-09-02
5693 - SoOSiM # failure in job https://hydra.nixos.org/build/233224114 at 2023-09-02
05694 - sorted # failure in job https://hydra.nixos.org/build/233222633 at 2023-09-02
5695 - sorting # failure in job https://hydra.nixos.org/build/233214204 at 2023-09-02
5696 - sorty # failure in job https://hydra.nixos.org/build/233211118 at 2023-09-02
···5978 - system-test # failure in job https://hydra.nixos.org/build/233240318 at 2023-09-02
5979 - systemd-ntfy # failure in job https://hydra.nixos.org/build/236686880 at 2023-10-04
5980 - systemd-socket-activation # failure in job https://hydra.nixos.org/build/295097415 at 2025-04-22
5981- - systranything # failure in job https://hydra.nixos.org/build/295097462 at 2025-04-22
5982 - t-regex # failure in job https://hydra.nixos.org/build/233254486 at 2023-09-02
5983 - t3-server # failure in job https://hydra.nixos.org/build/233220511 at 2023-09-02
5984 - table # failure in job https://hydra.nixos.org/build/233223186 at 2023-09-02
···6023 - tasty-grading-system # failure in job https://hydra.nixos.org/build/236673021 at 2023-10-04
6024 - tasty-hedgehog-coverage # failure in job https://hydra.nixos.org/build/233231332 at 2023-09-02
6025 - tasty-mgolden # failure in job https://hydra.nixos.org/build/233248196 at 2023-09-02
06026 - tasty-process # failure in job https://hydra.nixos.org/build/253680638 at 2024-03-31
6027 - tasty-stats # failure in job https://hydra.nixos.org/build/233228752 at 2023-09-02
6028 - tasty-test-reporter # failure in job https://hydra.nixos.org/build/233208181 at 2023-09-02
···6184 - tiger # failure in job https://hydra.nixos.org/build/233249333 at 2023-09-02
6185 - TigerHash # failure in job https://hydra.nixos.org/build/233208162 at 2023-09-02
6186 - tightrope # failure in job https://hydra.nixos.org/build/233215237 at 2023-09-02
6187- - tiktoken # failure in job https://hydra.nixos.org/build/273448419 at 2024-10-01
6188 - tikzsd # failure in job https://hydra.nixos.org/build/233224431 at 2023-09-02
6189 - time-extras # failure in job https://hydra.nixos.org/build/233204030 at 2023-09-02
6190 - time-parsers # failure in job https://hydra.nixos.org/build/295097665 at 2025-04-22
···6328 - turing-music # failure in job https://hydra.nixos.org/build/233203435 at 2023-09-02
6329 - turtle-options # failure in job https://hydra.nixos.org/build/233255831 at 2023-09-02
6330 - tweak # failure in job https://hydra.nixos.org/build/233211020 at 2023-09-02
06331 - twentefp-websockets # failure in job https://hydra.nixos.org/build/233207022 at 2023-09-02
6332 - twhs # failure in job https://hydra.nixos.org/build/233201182 at 2023-09-02
6333 - twilio # failure in job https://hydra.nixos.org/build/233199959 at 2023-09-02
···6383 - typed-wire # failure in job https://hydra.nixos.org/build/233237626 at 2023-09-02
6384 - typedquery # failure in job https://hydra.nixos.org/build/233215307 at 2023-09-02
6385 - typehash # failure in job https://hydra.nixos.org/build/233207184 at 2023-09-02
06386 - typelevel-rewrite-rules # failure in job https://hydra.nixos.org/build/233243365 at 2023-09-02
6387 - typelevel-tensor # failure in job https://hydra.nixos.org/build/233190827 at 2023-09-02
6388 - typeparams # failure in job https://hydra.nixos.org/build/233192078 at 2023-09-02
···6763 - X11-xfixes # failure in job https://hydra.nixos.org/build/233256494 at 2023-09-02
6764 - x86-64bit # failure in job https://hydra.nixos.org/build/252737465 at 2024-03-16
6765 - xcffib # failure in job https://hydra.nixos.org/build/295098351 at 2025-04-22
06766 - xchat-plugin # failure in job https://hydra.nixos.org/build/233238679 at 2023-09-02
6767 - xcp # failure in job https://hydra.nixos.org/build/233208926 at 2023-09-02
6768 - Xec # failure in job https://hydra.nixos.org/build/233191564 at 2023-09-02
···6789 - xml-extractors # failure in job https://hydra.nixos.org/build/252718569 at 2024-03-16
6790 - xml-html-conduit-lens # failure in job https://hydra.nixos.org/build/233238471 at 2023-09-02
6791 - xml-indexed-cursor # failure in job https://hydra.nixos.org/build/295098303 at 2025-04-22
6792- - xml-lens # failure in job https://hydra.nixos.org/build/295098347 at 2025-04-22
6793 - xml-parsec # failure in job https://hydra.nixos.org/build/233208461 at 2023-09-02
6794 - xml-parser # failure in job https://hydra.nixos.org/build/252721082 at 2024-03-16
6795 - xml-prettify # failure in job https://hydra.nixos.org/build/233225974 at 2023-09-02
···6809 - xmonad-vanessa # failure in job https://hydra.nixos.org/build/233214303 at 2023-09-02
6810 - xmonad-wallpaper # failure in job https://hydra.nixos.org/build/233217165 at 2023-09-02
6811 - xmonad-windownames # failure in job https://hydra.nixos.org/build/233258043 at 2023-09-02
06812 - xorshift-plus # failure in job https://hydra.nixos.org/build/233255176 at 2023-09-02
6813 - Xorshift128Plus # failure in job https://hydra.nixos.org/build/233225679 at 2023-09-02
6814 - xsact # failure in job https://hydra.nixos.org/build/233221821 at 2023-09-02
···16 - AC-BuildPlatform # failure in job https://hydra.nixos.org/build/233219130 at 2023-09-02
17 - AC-EasyRaster-GTK # failure in job https://hydra.nixos.org/build/233226232 at 2023-09-02
18 - AC-HalfInteger # failure in job https://hydra.nixos.org/build/233239266 at 2023-09-02
19+ - ac-library-hs # failure in job https://hydra.nixos.org/build/302800699 at 2025-07-27
20 - ac-machine # failure in job https://hydra.nixos.org/build/233253535 at 2023-09-02
21 - AC-MiniTest # failure in job https://hydra.nixos.org/build/233216015 at 2023-09-02
22 - AC-Terminal # failure in job https://hydra.nixos.org/build/233192747 at 2023-09-02
···257 - ascii-string # failure in job https://hydra.nixos.org/build/233249978 at 2023-09-02
258 - ascii-vector-avc # failure in job https://hydra.nixos.org/build/233208533 at 2023-09-02
259 - ascii85-conduit # failure in job https://hydra.nixos.org/build/233235427 at 2023-09-02
260+ - ascii85x # failure in job https://hydra.nixos.org/build/302801241 at 2025-07-27
261 - asciidiagram # failure in job https://hydra.nixos.org/build/233259020 at 2023-09-02
262 - asif # failure in job https://hydra.nixos.org/build/233251551 at 2023-09-02
263 - asil # failure in job https://hydra.nixos.org/build/233204081 at 2023-09-02
···315 - auto # failure in job https://hydra.nixos.org/build/233211088 at 2023-09-02
316 - auto-split # failure in job https://hydra.nixos.org/build/295091795 at 2025-04-22
317 - autoapply # failure in job https://hydra.nixos.org/build/295091805 at 2025-04-22
318+ - autodocodec-exact # failure in job https://hydra.nixos.org/build/302801281 at 2025-07-27
319 - autom # failure in job https://hydra.nixos.org/build/234461198 at 2023-09-13
320 - automata # failure in job https://hydra.nixos.org/build/295091890 at 2025-04-22
321 - autonix-deps # failure in job https://hydra.nixos.org/build/233258269 at 2023-09-02
···329 - avwx # failure in job https://hydra.nixos.org/build/233258167 at 2023-09-02
330 - awesome-prelude # failure in job https://hydra.nixos.org/build/233232761 at 2023-09-02
331 - awesomium-raw # failure in job https://hydra.nixos.org/build/233241036 at 2023-09-02
332+ - aws-academy-grade-exporter # failure in job https://hydra.nixos.org/build/302801316 at 2025-07-27
333 - aws-cloudfront-signed-cookies # failure in job https://hydra.nixos.org/build/252736035 at 2024-03-16
334 - aws-cloudfront-signer # failure in job https://hydra.nixos.org/build/233194723 at 2023-09-02
335 - aws-easy # failure building library in job https://hydra.nixos.org/build/237244335 at 2023-10-21
···379 - base32-lens # failure in job https://hydra.nixos.org/build/233226670 at 2023-09-02
380 - base58address # failure in job https://hydra.nixos.org/build/233221633 at 2023-09-02
381 - base62 # failure in job https://hydra.nixos.org/build/233250040 at 2023-09-02
0382 - base64-conduit # failure in job https://hydra.nixos.org/build/233197196 at 2023-09-02
383 - base64-lens # failure in job https://hydra.nixos.org/build/233252600 at 2023-09-02
384 - based # failure in job https://hydra.nixos.org/build/233211900 at 2023-09-02
···518 - bliplib # failure in job https://hydra.nixos.org/build/233195751 at 2023-09-02
519 - blockchain # failure in job https://hydra.nixos.org/build/233245492 at 2023-09-02
520 - blockhash # failure in job https://hydra.nixos.org/build/233227049 at 2023-09-02
521+ - blockio-uring # failure in job https://hydra.nixos.org/build/302801498, https://github.com/well-typed/blockio-uring/issues/44 at 2025-07-27
522+ - blockio-uring # https://github.com/well-typed/blockio-uring/issues/44, added 2025-07-27
523 - Blogdown # failure in job https://hydra.nixos.org/build/233239841 at 2023-09-02
524 - BlogLiterately # failure in job https://hydra.nixos.org/build/233202164 at 2023-09-02
525 - bloodhound-amazonka-auth # failure building library in job https://hydra.nixos.org/build/237245625 at 2023-10-21
···723 - Cassava # failure in job https://hydra.nixos.org/build/233245677 at 2023-09-02
724 - cassava-conduit # failure in job https://hydra.nixos.org/build/233220495 at 2023-09-02
725 - cassava-records # failure in job https://hydra.nixos.org/build/233259049 at 2023-09-02
0726 - castle # failure in job https://hydra.nixos.org/build/233204027 at 2023-09-02
727 - catamorphism # failure in job https://hydra.nixos.org/build/233208488 at 2023-09-02
728 - Catana # failure in job https://hydra.nixos.org/build/233196550 at 2023-09-02
···730 - category-printf # failure in job https://hydra.nixos.org/build/233216355 at 2023-09-02
731 - category-traced # failure in job https://hydra.nixos.org/build/233193963 at 2023-09-02
732 - catnplus # failure in job https://hydra.nixos.org/build/233241280 at 2023-09-02
733+ - cauldron # failure in job https://hydra.nixos.org/build/302801682 at 2025-07-27
734 - cautious-file # failure in job https://hydra.nixos.org/build/233218702 at 2023-09-02
735 - cautious-gen # failure in job https://hydra.nixos.org/build/233258367 at 2023-09-02
736 - cayene-lpp # failure in job https://hydra.nixos.org/build/233228959 at 2023-09-02
···876 - cmph # failure in job https://hydra.nixos.org/build/233225766 at 2023-09-02
877 - CMQ # failure in job https://hydra.nixos.org/build/233233168 at 2023-09-02
878 - cmt # failure in job https://hydra.nixos.org/build/233233474 at 2023-09-02
00879 - co-log-polysemy-formatting # failure building executable 'example' in job https://hydra.nixos.org/build/237249360 at 2023-10-21
880 - co-log-sys # failure in job https://hydra.nixos.org/build/233206587 at 2023-09-02
881 - cobot-tools # failure in job https://hydra.nixos.org/build/233259173 at 2023-09-02
···1018 - contra-tracers # failure in job https://hydra.nixos.org/build/233197959 at 2023-09-02
1019 - contracheck-applicative # failure in job https://hydra.nixos.org/build/233255104 at 2023-09-02
1020 - Contract # failure in job https://hydra.nixos.org/build/233242103 at 2023-09-02
01021 - control-dsl # failure in job https://hydra.nixos.org/build/233249037 at 2023-09-02
1022 - control-iso # failure in job https://hydra.nixos.org/build/233229763 at 2023-09-02
1023 - control-monad-failure # failure in job https://hydra.nixos.org/build/233240265 at 2023-09-02
···1026 - contstuff-monads-tf # failure in job https://hydra.nixos.org/build/233224064 at 2023-09-02
1027 - contstuff-transformers # failure in job https://hydra.nixos.org/build/233244153 at 2023-09-02
1028 - conversion-bytestring # failure in job https://hydra.nixos.org/build/295092506 at 2025-04-22
1029+ - convex-schema-parser # failure in job https://hydra.nixos.org/build/302801971 at 2025-07-27
1030 - cookie-tray # failure in job https://hydra.nixos.org/build/295092527 at 2025-04-22
1031 - cooklang-hs # failure in job https://hydra.nixos.org/build/295092511 at 2025-04-22
1032 - copilot-bluespec # failure in job https://hydra.nixos.org/build/253685418 at 2024-03-31
···1119 - cuckoo # failure in job https://hydra.nixos.org/build/233210915 at 2023-09-02
1120 - cuckoo-filter # failure in job https://hydra.nixos.org/build/233226484 at 2023-09-02
1121 - cudd # failure in job https://hydra.nixos.org/build/252716117 at 2024-03-16
1122+ - cuddle # failure in job https://hydra.nixos.org/build/302802065 at 2025-07-27
1123 - curl-aeson # failure in job https://hydra.nixos.org/build/233210106 at 2023-09-02
1124 - curl-runnings # failure in job https://hydra.nixos.org/build/233258680 at 2023-09-02
1125 - currency-convert # failure in job https://hydra.nixos.org/build/233224509 at 2023-09-02
···1309 - dia-base # failure in job https://hydra.nixos.org/build/233230896 at 2023-09-02
1310 - diagnose # failure in job https://hydra.nixos.org/build/233231767 at 2023-09-02
1311 - diagrams-boolean # failure in job https://hydra.nixos.org/build/233202036 at 2023-09-02
01312 - diagrams-haddock # failure in job https://hydra.nixos.org/build/295092844 at 2025-04-22
01313 - diagrams-pdf # failure in job https://hydra.nixos.org/build/233197864 at 2023-09-02
1314 - diagrams-qrcode # failure in job https://hydra.nixos.org/build/233229542 at 2023-09-02
1315 - diagrams-rubiks-cube # failure in job https://hydra.nixos.org/build/233213426 at 2023-09-02
···1351 - direm # failure in job https://hydra.nixos.org/build/233211496 at 2023-09-02
1352 - dirstream # failure in job https://hydra.nixos.org/build/273442606 at 2024-10-01
1353 - disco # failure in job https://hydra.nixos.org/build/233212298 at 2023-09-02
01354 - discord-register # failure in job https://hydra.nixos.org/build/295092898 at 2025-04-22
1355 - discord-types # failure in job https://hydra.nixos.org/build/233251778 at 2023-09-02
1356 - discordian-calendar # failure in job https://hydra.nixos.org/build/233218124 at 2023-09-02
···1402 - DOH # failure in job https://hydra.nixos.org/build/233231913 at 2023-09-02
1403 - doi # failure in job https://hydra.nixos.org/build/295092999 at 2025-04-22
1404 - dom-events # failure in job https://hydra.nixos.org/build/233231199 at 2023-09-02
01405 - dom-selector # failure in job https://hydra.nixos.org/build/233212663 at 2023-09-02
1406 - domaindriven-core # failure in job https://hydra.nixos.org/build/233234739 at 2023-09-02
1407 - dominion # failure in job https://hydra.nixos.org/build/252714022 at 2024-03-16
···1409 - dormouse-uri # failure in job https://hydra.nixos.org/build/233191706 at 2023-09-02
1410 - dot-linker # failure in job https://hydra.nixos.org/build/233237512 at 2023-09-02
1411 - dotfs # failure in job https://hydra.nixos.org/build/233200762 at 2023-09-02
01412 - doublezip # failure in job https://hydra.nixos.org/build/233219270 at 2023-09-02
1413 - doublify-toolkit # failure in job https://hydra.nixos.org/build/233223302 at 2023-09-02
1414 - dovin # failure in job https://hydra.nixos.org/build/252714139 at 2024-03-16
···1445 - dualizer # failure in job https://hydra.nixos.org/build/233237592 at 2023-09-02
1446 - duckling # failure in job https://hydra.nixos.org/build/233247880 at 2023-09-02
1447 - duet # failure in job https://hydra.nixos.org/build/233219004 at 2023-09-02
01448 - dump-core # failure in job https://hydra.nixos.org/build/233244428 at 2023-09-02
1449 - dunai-core # failure in job https://hydra.nixos.org/build/233255804 at 2023-09-02
1450 - Dung # failure in job https://hydra.nixos.org/build/233206343 at 2023-09-02
···1505 - editline # failure in job https://hydra.nixos.org/build/233259515 at 2023-09-02
1506 - edits # failure in job https://hydra.nixos.org/build/295093075 at 2025-04-22
1507 - effect-handlers # failure in job https://hydra.nixos.org/build/233234988 at 2023-09-02
01508 - effectful-st # failure in job https://hydra.nixos.org/build/233248591 at 2023-09-02
1509 - effectful-zoo # failure in job https://hydra.nixos.org/build/283208805 at 2024-12-31
1510 - effective-aspects # failure in job https://hydra.nixos.org/build/233223120 at 2023-09-02
···1653 - exinst-hashable # failure in job https://hydra.nixos.org/build/233210438 at 2023-09-02
1654 - exists # failure in job https://hydra.nixos.org/build/233243541 at 2023-09-02
1655 - exitcode # failure in job https://hydra.nixos.org/build/233238454 at 2023-09-02
1656+ - exotic-list-monads # failure in job https://hydra.nixos.org/build/302802593 at 2025-07-27
1657 - exp-cache # failure in job https://hydra.nixos.org/build/233220561 at 2023-09-02
1658 - exp-extended # failure in job https://hydra.nixos.org/build/233236139 at 2023-09-02
1659 - experimenter # failure in job https://hydra.nixos.org/build/252726011 at 2024-03-16
···1903 - frown # failure in job https://hydra.nixos.org/build/233208462 at 2023-09-02
1904 - frp-arduino # failure in job https://hydra.nixos.org/build/233192216 at 2023-09-02
1905 - frpnow # failure in job https://hydra.nixos.org/build/233236056 at 2023-09-02
01906 - fs-events # failure in job https://hydra.nixos.org/build/233218231 at 2023-09-02
1907 - fsh-csv # failure in job https://hydra.nixos.org/build/233220196 at 2023-09-02
1908 - FSM # failure in job https://hydra.nixos.org/build/233247343 at 2023-09-02
···1923 - funcons-tools # failure in job https://hydra.nixos.org/build/295122838 at 2025-04-22
1924 - function-instances-algebra # failure in job https://hydra.nixos.org/build/233202209 at 2023-09-02
1925 - functional-arrow # failure in job https://hydra.nixos.org/build/295093396 at 2025-04-22
01926 - functor-friends # failure in job https://hydra.nixos.org/build/233208108 at 2023-09-02
1927 - functor-infix # failure in job https://hydra.nixos.org/build/233228794 at 2023-09-02
1928 - functor-utils # failure in job https://hydra.nixos.org/build/233213259 at 2023-09-02
···1948 - fwgl # failure in job https://hydra.nixos.org/build/233246210 at 2023-09-02
1949 - fwgl-javascript # broken by fwgl, manually entered here, because it does not appear in transitive-broken.yaml at 2024-07-09
1950 - fx # failure in job https://hydra.nixos.org/build/295093438 at 2025-04-22
01951 - g-npm # failure in job https://hydra.nixos.org/build/233215965 at 2023-09-02
1952 - g4ip # failure in job https://hydra.nixos.org/build/233248315 at 2023-09-02
1953 - gambler # failure in job https://hydra.nixos.org/build/252732701 at 2024-03-16
···1975 - GeneralTicTacToe # failure in job https://hydra.nixos.org/build/233207939 at 2023-09-02
1976 - generator # failure in job https://hydra.nixos.org/build/233213384 at 2023-09-02
1977 - generators # failure in job https://hydra.nixos.org/build/233246459 at 2023-09-02
01978 - generic-binary # failure in job https://hydra.nixos.org/build/233214473 at 2023-09-02
1979 - generic-church # failure in job https://hydra.nixos.org/build/233213419 at 2023-09-02
1980 - generic-enum # failure in job https://hydra.nixos.org/build/233220316 at 2023-09-02
···2004 - gentlemark # failure in job https://hydra.nixos.org/build/233202158 at 2023-09-02
2005 - genvalidity-appendful # failure in job https://hydra.nixos.org/build/295093519 at 2025-04-22
2006 - genvalidity-mergeful # failure in job https://hydra.nixos.org/build/295093508 at 2025-04-22
02007 - geo-resolver # failure in job https://hydra.nixos.org/build/233206563 at 2023-09-02
2008 - geo-uk # failure in job https://hydra.nixos.org/build/233221284 at 2023-09-02
2009 - geocode-google # failure in job https://hydra.nixos.org/build/233191594 at 2023-09-02
···2071 - gi-gio-hs-list-model # failure in job https://hydra.nixos.org/build/233241640 at 2023-09-02
2072 - gi-gstapp # failure in job https://hydra.nixos.org/build/253686159 at 2024-03-31
2073 - gi-gsttag # failure in job https://hydra.nixos.org/build/233197576 at 2023-09-02
2074+ - gi-gtk4-layer-shell # failure in job https://hydra.nixos.org/build/302803068 at 2025-07-27
2075 - gi-gtksheet # failure in job https://hydra.nixos.org/build/233211386 at 2023-09-02
2076 - gi-ibus # failure in job https://hydra.nixos.org/build/233220272 at 2023-09-02
2077 - gi-keybinder # failure in job https://hydra.nixos.org/build/265273447 at 2024-07-14
···2080 - giak # failure in job https://hydra.nixos.org/build/233242229 at 2023-09-02
2081 - gibberish # failure in job https://hydra.nixos.org/build/255688714 at 2024-04-16
2082 - Gifcurry # failure in job https://hydra.nixos.org/build/233200204 at 2023-09-02
2083+ - ginger2 # failure in job https://hydra.nixos.org/build/302803092 at 2025-07-27
2084 - gingersnap # failure in job https://hydra.nixos.org/build/233227186 at 2023-09-02
2085 - ginsu # failure in job https://hydra.nixos.org/build/233223259 at 2023-09-02
2086 - gipeda # failure in job https://hydra.nixos.org/build/233228149 at 2023-09-02
···2450 - haskelldb-wx # failure in job https://hydra.nixos.org/build/233197525 at 2023-09-02
2451 - HaskellForMaths # failure in job https://hydra.nixos.org/build/233237608 at 2023-09-02
2452 - HaskellLM # failure in job https://hydra.nixos.org/build/233237641 at 2023-09-02
02453 - HaskellNN # failure in job https://hydra.nixos.org/build/233209323 at 2023-09-02
2454 - Haskelloids # failure in job https://hydra.nixos.org/build/233204861 at 2023-09-02
2455 - haskellscrabble # failure in job https://hydra.nixos.org/build/233251248 at 2023-09-02
···2465 - haskoin # failure in job https://hydra.nixos.org/build/233201668 at 2023-09-02
2466 - haskoin-store # failure in job https://hydra.nixos.org/build/299138382 at 2025-06-23
2467 - haskoin-util # failure in job https://hydra.nixos.org/build/233222171 at 2023-09-02
02468 - haskore-realtime # failure in job https://hydra.nixos.org/build/301391170 at 2025-07-01
2469 - haskore-vintage # failure in job https://hydra.nixos.org/build/233230742 at 2023-09-02
2470 - HaskRel # failure in job https://hydra.nixos.org/build/295090970 at 2025-04-22
···2515 - hbeat # failure in job https://hydra.nixos.org/build/233228628 at 2023-09-02
2516 - hblas # failure in job https://hydra.nixos.org/build/233232561 at 2023-09-02
2517 - hblock # failure in job https://hydra.nixos.org/build/233205351 at 2023-09-02
2518+ - hblosc # failure in job https://hydra.nixos.org/build/302803521 at 2025-07-27
2519 - hburg # failure in job https://hydra.nixos.org/build/233247429 at 2023-09-02
2520 - hcad # failure in job https://hydra.nixos.org/build/233219976 at 2023-09-02
2521 - HCard # failure in job https://hydra.nixos.org/build/233231922 at 2023-09-02
···2555 - heckle # failure in job https://hydra.nixos.org/build/233228954 at 2023-09-02
2556 - heddit # failure in job https://hydra.nixos.org/build/233229058 at 2023-09-02
2557 - hedgehog-checkers # failure in job https://hydra.nixos.org/build/233229405 at 2023-09-02
2558+ - hedgehog-extras # failure in job https://hydra.nixos.org/build/302803553, https://github.com/input-output-hk/hedgehog-extras/issues/93 at 2025-07-27
2559 - hedgehog-gen # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237243271 at 2023-10-21
2560 - hedgehog-generic # failure in job https://hydra.nixos.org/build/233204695 at 2023-09-02
2561 - hedgehog-golden # failure in job https://hydra.nixos.org/build/233219619 at 2023-09-02
···2875 - hs-scrape # failure in job https://hydra.nixos.org/build/233244221 at 2023-09-02
2876 - hs-server-starter # failure in job https://hydra.nixos.org/build/295094379 at 2025-04-22
2877 - hs-snowtify # failure in job https://hydra.nixos.org/build/233200511 at 2023-09-02
02878 - hs-tags # failure in job https://hydra.nixos.org/build/233258358 at 2023-09-02
2879 - hs-tango # failure in job https://hydra.nixos.org/build/276377558 at 2024-11-06
2880 - hs-term-emulator # failure in job https://hydra.nixos.org/build/233252262 at 2023-09-02
···3128 - IDynamic # failure in job https://hydra.nixos.org/build/233196222 at 2023-09-02
3129 - ieee-utils # failure in job https://hydra.nixos.org/build/233224430 at 2023-09-02
3130 - iexcloud # failure in job https://hydra.nixos.org/build/233224874 at 2023-09-02
3131+ - if-instance # failure in job https://hydra.nixos.org/build/302803982 at 2025-07-27
3132 - ifcxt # failure in job https://hydra.nixos.org/build/233196911 at 2023-09-02
3133 - IFS # failure in job https://hydra.nixos.org/build/233246865 at 2023-09-02
3134 - ig # failure in job https://hydra.nixos.org/build/233203872 at 2023-09-02
···3216 - interspersed # failure in job https://hydra.nixos.org/build/252722645 at 2024-03-16
3217 - interval # failure in job https://hydra.nixos.org/build/233239434 at 2023-09-02
3218 - interval-algebra # failure in job https://hydra.nixos.org/build/233208487 at 2023-09-02
03219 - interval-tree-clock # failure in job https://hydra.nixos.org/build/233234316 at 2023-09-02
3220 - IntFormats # failure in job https://hydra.nixos.org/build/233195190 at 2023-09-02
3221 - intricacy # failure in job https://hydra.nixos.org/build/252711846 at 2024-03-16
···3253 - isdicom # failure in job https://hydra.nixos.org/build/233214249 at 2023-09-02
3254 - IsNull # failure in job https://hydra.nixos.org/build/233233011 at 2023-09-02
3255 - iso-deriving # failure in job https://hydra.nixos.org/build/252738238 at 2024-03-16
03256 - isobmff # failure in job https://hydra.nixos.org/build/233237273 at 2023-09-02
3257 - isotope # failure in job https://hydra.nixos.org/build/233204650 at 2023-09-02
3258 - it-has # failure in job https://hydra.nixos.org/build/233212395 at 2023-09-02
···3325 - json-qq # failure in job https://hydra.nixos.org/build/233196259 at 2023-09-02
3326 - json-rpc-generic # failure in job https://hydra.nixos.org/build/233201371 at 2023-09-02
3327 - json-rpc-server # failure in job https://hydra.nixos.org/build/233201284 at 2023-09-02
3328+ - json-schema # failure in job https://hydra.nixos.org/build/303231342 at 2025-07-27
3329 - json-syntax # failure in job https://hydra.nixos.org/build/233250639 at 2023-09-02
3330 - json-to-haskell # failure in job https://hydra.nixos.org/build/252711573 at 2024-03-16
3331 - json-to-type # failure in job https://hydra.nixos.org/build/275143966 at 2024-10-21
···3652 - llvm-base # failure in job https://hydra.nixos.org/build/233244366 at 2023-09-02
3653 - llvm-codegen # failure in job https://hydra.nixos.org/build/295095119 at 2025-04-22
3654 - llvm-extension # failure in job https://hydra.nixos.org/build/266355631 at 2024-07-14
3655+ - llvm-extra # failure in job https://hydra.nixos.org/build/303481607 at 2025-07-27
3656 - llvm-general-pure # failure in job https://hydra.nixos.org/build/233246430 at 2023-09-02
3657 - llvm-hs # failure in job https://hydra.nixos.org/build/233205149 at 2023-09-02
3658 - llvm-hs-pure # failure in job https://hydra.nixos.org/build/252721738 at 2024-03-16
···3805 - mcm # failure in job https://hydra.nixos.org/build/233229087 at 2023-09-02
3806 - mcmaster-gloss-examples # failure in job https://hydra.nixos.org/build/234457610 at 2023-09-13
3807 - mcmc-synthesis # failure in job https://hydra.nixos.org/build/233208414 at 2023-09-02
3808+ - mcp # failure in job https://hydra.nixos.org/build/302804588 at 2025-07-27
3809+ - mcp-server # failure in job https://hydra.nixos.org/build/302804602 at 2025-07-27
3810 - mcpi # failure in job https://hydra.nixos.org/build/233231465 at 2023-09-02
3811 - mdapi # failure in job https://hydra.nixos.org/build/233257724 at 2023-09-02
3812 - mdcat # failure in job https://hydra.nixos.org/build/233249429 at 2023-09-02
···3992 - monoid-absorbing # failure in job https://hydra.nixos.org/build/233236465 at 2023-09-02
3993 - monoid-owns # failure in job https://hydra.nixos.org/build/233259043 at 2023-09-02
3994 - monoidmap # failure in job https://hydra.nixos.org/build/295095498 at 2025-04-22
03995 - monoidplus # failure in job https://hydra.nixos.org/build/233226759 at 2023-09-02
3996 - monoids # failure in job https://hydra.nixos.org/build/233231684 at 2023-09-02
3997 - monopati # failure in job https://hydra.nixos.org/build/233234119 at 2023-09-02
···4013 - movie-monad # failure in job https://hydra.nixos.org/build/233215402 at 2023-09-02
4014 - mpppc # failure in job https://hydra.nixos.org/build/233223008 at 2023-09-02
4015 - mpris # failure in job https://hydra.nixos.org/build/233259241 at 2023-09-02
4016+ - mptcp-pm # failure in job https://hydra.nixos.org/build/303231350 at 2025-07-27
4017 - mpvguihs # failure in job https://hydra.nixos.org/build/233196650 at 2023-09-02
4018 - mqtt # failure in job https://hydra.nixos.org/build/233202067 at 2023-09-02
4019 - mqtt-hs # failure in job https://hydra.nixos.org/build/233239399 at 2023-09-02
···4023 - ms-auth # failure in job https://hydra.nixos.org/build/233193383 at 2023-09-02
4024 - ms-azure-api # failure in job https://hydra.nixos.org/build/233202229 at 2023-09-02
4025 - ms-graph-api # failure in job https://hydra.nixos.org/build/233219042 at 2023-09-02
4026+ - msgpack-aeson # failure in job https://hydra.nixos.org/build/303231349 at 2025-07-27
4027+ - msgpack-rpc # failure in job https://hydra.nixos.org/build/303231348 at 2025-07-27
4028 - msgpack-types # failure in job https://hydra.nixos.org/build/233235351 at 2023-09-02
4029 - msh # failure in job https://hydra.nixos.org/build/233196466 at 2023-09-02
4030 - MTGBuilder # failure in job https://hydra.nixos.org/build/233227528 at 2023-09-02
···4271 - ohhecs # failure in job https://hydra.nixos.org/build/267987310 at 2024-07-31
4272 - ohloh-hs # failure in job https://hydra.nixos.org/build/233228177 at 2023-09-02
4273 - oi # failure in job https://hydra.nixos.org/build/233190838 at 2023-09-02
04274 - okapi # failure in job https://hydra.nixos.org/build/233193822 at 2023-09-02
4275 - old-version # failure in job https://hydra.nixos.org/build/233198538 at 2023-09-02
4276 - ollama-haskell # failure in job https://hydra.nixos.org/build/276371507 at 2024-11-06
···4328 - openssh-protocol # failure in job https://hydra.nixos.org/build/233196013 at 2023-09-02
4329 - opentelemetry-extra # failure in job https://hydra.nixos.org/build/233194254 at 2023-09-02
4330 - opentelemetry-http-client # failure in job https://hydra.nixos.org/build/233221983 at 2023-09-02
04331 - opentheory-char # failure in job https://hydra.nixos.org/build/233222347 at 2023-09-02
4332 - opentype # failure in job https://hydra.nixos.org/build/233213443 at 2023-09-02
4333 - OpenVGRaw # failure in job https://hydra.nixos.org/build/233254457 at 2023-09-02
···4385 - overloaded-records # failure in job https://hydra.nixos.org/build/233235922 at 2023-09-02
4386 - overture # failure in job https://hydra.nixos.org/build/233245959 at 2023-09-02
4387 - owoify-hs # failure in job https://hydra.nixos.org/build/233213422 at 2023-09-02
4388+ - ox-arrays # failure in job https://hydra.nixos.org/build/302805170 at 2025-07-27
4389 - pa-field-parser # failure in job https://hydra.nixos.org/build/295095885 at 2025-04-22
4390 - pack # failure in job https://hydra.nixos.org/build/233243562 at 2023-09-02
4391 - package-description-remote # failure in job https://hydra.nixos.org/build/233221358 at 2023-09-02
4392 - package-vt # failure in job https://hydra.nixos.org/build/233225831 at 2023-09-02
4393 - packdeps # failure in job https://hydra.nixos.org/build/233216607 at 2023-09-02
4394 - packed # failure in job https://hydra.nixos.org/build/233231889 at 2023-09-02
4395+ - packed-data # failure in job https://hydra.nixos.org/build/302805203 at 2025-07-27
4396 - packed-dawg # failure in job https://hydra.nixos.org/build/233207332 at 2023-09-02
4397 - packed-multikey-map # failure in job https://hydra.nixos.org/build/233234157 at 2023-09-02
4398 - packedstring # failure in job https://hydra.nixos.org/build/233240511 at 2023-09-02
···4688 - plural # failure in job https://hydra.nixos.org/build/233198934 at 2023-09-02
4689 - ply-loader # failure in job https://hydra.nixos.org/build/252720663 at 2024-03-16
4690 - plzwrk # failure in job https://hydra.nixos.org/build/233219630 at 2023-09-02
4691+ - pms-domain-model # failure in job https://hydra.nixos.org/build/302805399 at 2025-07-27
4692 - pngload-fixed # failure in job https://hydra.nixos.org/build/233233956 at 2023-09-02
4693 - pocket # failure in job https://hydra.nixos.org/build/233244120 at 2023-09-02
4694 - podenv # failure in job https://hydra.nixos.org/build/233210257 at 2023-09-02
···4737 - pontarius-xpmn # failure in job https://hydra.nixos.org/build/233217546 at 2023-09-02
4738 - pool # failure in job https://hydra.nixos.org/build/233205364 at 2023-09-02
4739 - pool-conduit # failure in job https://hydra.nixos.org/build/233246643 at 2023-09-02
04740 - pop3-client # failure in job https://hydra.nixos.org/build/233251475 at 2023-09-02
4741 - popkey # failure in job https://hydra.nixos.org/build/233203892 at 2023-09-02
4742 - poppler # failure in job https://hydra.nixos.org/build/233196044 at 2023-09-02
···4976 - quickbooks # failure in job https://hydra.nixos.org/build/233227666 at 2023-09-02
4977 - quickcheck-arbitrary-template # failure in job https://hydra.nixos.org/build/233223045 at 2023-09-02
4978 - quickcheck-combinators # failure in job https://hydra.nixos.org/build/233209131 at 2023-09-02
04979 - quickcheck-property-comb # failure in job https://hydra.nixos.org/build/233204877 at 2023-09-02
4980 - quickcheck-property-monad # failure in job https://hydra.nixos.org/build/233228775 at 2023-09-02
4981 - quickcheck-rematch # failure in job https://hydra.nixos.org/build/233205449 at 2023-09-02
···5126 - regexqq # failure in job https://hydra.nixos.org/build/233233149 at 2023-09-02
5127 - regions # failure in job https://hydra.nixos.org/build/233196483 at 2023-09-02
5128 - register-machine-typelevel # failure in job https://hydra.nixos.org/build/233217514 at 2023-09-02
5129+ - registry-messagepack # failure in job https://hydra.nixos.org/build/303231364 at 2025-07-27
5130 - registry-options # failure in job https://hydra.nixos.org/build/295096594 at 2025-04-22
5131 - regress # failure in job https://hydra.nixos.org/build/233208901 at 2023-09-02
5132 - regular # failure in job https://hydra.nixos.org/build/233232656 at 2023-09-02
···5398 - servant-avro # failure in job https://hydra.nixos.org/build/233225632 at 2023-09-02
5399 - servant-benchmark # failure in job https://hydra.nixos.org/build/233203748 at 2023-09-02
5400 - servant-cassava # failure in job https://hydra.nixos.org/build/252730906 at 2024-03-16
05401 - servant-client-js # failure in job https://hydra.nixos.org/build/233194725 at 2023-09-02
5402 - servant-combinators # failure in job https://hydra.nixos.org/build/233249924 at 2023-09-02
5403 - servant-db # failure in job https://hydra.nixos.org/build/233234946 at 2023-09-02
···5405 - servant-docs-simple # failure in job https://hydra.nixos.org/build/233237374 at 2023-09-02
5406 - servant-ekg # failure in job https://hydra.nixos.org/build/295096851 at 2025-04-22
5407 - servant-errors # failure in job https://hydra.nixos.org/build/233239712 at 2023-09-02
5408+ - servant-event-stream # failure in job https://hydra.nixos.org/build/302806100 at 2025-07-27
5409 - servant-gdp # failure in job https://hydra.nixos.org/build/233191664 at 2023-09-02
5410 - servant-generate # failure in job https://hydra.nixos.org/build/233199452 at 2023-09-02
5411 - servant-generic # failure in job https://hydra.nixos.org/build/233211338 at 2023-09-02
···5440 - servant-to-elm # failure in job https://hydra.nixos.org/build/253681347 at 2024-03-31
5441 - servant-tracing # failure in job https://hydra.nixos.org/build/233229308 at 2023-09-02
5442 - servant-typed-error # failure in job https://hydra.nixos.org/build/252727241 at 2024-03-16
05443 - servant-util # failure in job https://hydra.nixos.org/build/252729690 at 2024-03-16
5444 - servant-wasm # failure in job https://hydra.nixos.org/build/233191644 at 2023-09-02
5445 - servant-xml-conduit # failure in job https://hydra.nixos.org/build/243828707 at 2024-01-01
···5588 - skemmtun # failure in job https://hydra.nixos.org/build/233223893 at 2023-09-02
5589 - sketch-frp-copilot # copilot >=4.3 && <4.4,
5590 - skew-list # failure in job https://hydra.nixos.org/build/295097034 at 2025-04-22
5591+ - skews # time out in job https://hydra.nixos.org/build/302806286 at 2025-07-27
5592 - skopedate # failure in job https://hydra.nixos.org/build/233220634 at 2023-09-02
5593 - skulk # failure in job https://hydra.nixos.org/build/233258672 at 2023-09-02
5594 - skylighting-extensions # failure in job https://hydra.nixos.org/build/233221387 at 2023-09-02
···5680 - socketed # failure in job https://hydra.nixos.org/build/233210087 at 2023-09-02
5681 - socketio # failure in job https://hydra.nixos.org/build/233214659 at 2023-09-02
5682 - sockets # failure in job https://hydra.nixos.org/build/295097095 at 2025-04-22
5683+ - socks5 # failure in job https://hydra.nixos.org/build/302806344 at 2025-07-27
5684 - sodium # failure in job https://hydra.nixos.org/build/233213989 at 2023-09-02
5685 - soegtk # failure in job https://hydra.nixos.org/build/233198991 at 2023-09-02
5686 - softfloat-hs # failure in job https://hydra.nixos.org/build/233205242 at 2023-09-02
···5690 - sonic-visualiser # failure in job https://hydra.nixos.org/build/233257956 at 2023-09-02
5691 - Sonnex # failure in job https://hydra.nixos.org/build/233229367 at 2023-09-02
5692 - SoOSiM # failure in job https://hydra.nixos.org/build/233224114 at 2023-09-02
5693+ - sop-satisfier # failure in job https://hydra.nixos.org/build/302806351 at 2025-07-27
5694 - sorted # failure in job https://hydra.nixos.org/build/233222633 at 2023-09-02
5695 - sorting # failure in job https://hydra.nixos.org/build/233214204 at 2023-09-02
5696 - sorty # failure in job https://hydra.nixos.org/build/233211118 at 2023-09-02
···5978 - system-test # failure in job https://hydra.nixos.org/build/233240318 at 2023-09-02
5979 - systemd-ntfy # failure in job https://hydra.nixos.org/build/236686880 at 2023-10-04
5980 - systemd-socket-activation # failure in job https://hydra.nixos.org/build/295097415 at 2025-04-22
05981 - t-regex # failure in job https://hydra.nixos.org/build/233254486 at 2023-09-02
5982 - t3-server # failure in job https://hydra.nixos.org/build/233220511 at 2023-09-02
5983 - table # failure in job https://hydra.nixos.org/build/233223186 at 2023-09-02
···6022 - tasty-grading-system # failure in job https://hydra.nixos.org/build/236673021 at 2023-10-04
6023 - tasty-hedgehog-coverage # failure in job https://hydra.nixos.org/build/233231332 at 2023-09-02
6024 - tasty-mgolden # failure in job https://hydra.nixos.org/build/233248196 at 2023-09-02
6025+ - tasty-papi # failure in job https://hydra.nixos.org/build/302806735, https://github.com/Shimuuar/tasty-papi/issues/4#issuecomment-3123432375 at 2025-07-27
6026 - tasty-process # failure in job https://hydra.nixos.org/build/253680638 at 2024-03-31
6027 - tasty-stats # failure in job https://hydra.nixos.org/build/233228752 at 2023-09-02
6028 - tasty-test-reporter # failure in job https://hydra.nixos.org/build/233208181 at 2023-09-02
···6184 - tiger # failure in job https://hydra.nixos.org/build/233249333 at 2023-09-02
6185 - TigerHash # failure in job https://hydra.nixos.org/build/233208162 at 2023-09-02
6186 - tightrope # failure in job https://hydra.nixos.org/build/233215237 at 2023-09-02
06187 - tikzsd # failure in job https://hydra.nixos.org/build/233224431 at 2023-09-02
6188 - time-extras # failure in job https://hydra.nixos.org/build/233204030 at 2023-09-02
6189 - time-parsers # failure in job https://hydra.nixos.org/build/295097665 at 2025-04-22
···6327 - turing-music # failure in job https://hydra.nixos.org/build/233203435 at 2023-09-02
6328 - turtle-options # failure in job https://hydra.nixos.org/build/233255831 at 2023-09-02
6329 - tweak # failure in job https://hydra.nixos.org/build/233211020 at 2023-09-02
6330+ - twee # failure in job https://hydra.nixos.org/build/302807024 at 2025-07-27
6331 - twentefp-websockets # failure in job https://hydra.nixos.org/build/233207022 at 2023-09-02
6332 - twhs # failure in job https://hydra.nixos.org/build/233201182 at 2023-09-02
6333 - twilio # failure in job https://hydra.nixos.org/build/233199959 at 2023-09-02
···6383 - typed-wire # failure in job https://hydra.nixos.org/build/233237626 at 2023-09-02
6384 - typedquery # failure in job https://hydra.nixos.org/build/233215307 at 2023-09-02
6385 - typehash # failure in job https://hydra.nixos.org/build/233207184 at 2023-09-02
6386+ - typelet # failure in job https://hydra.nixos.org/build/302807072 at 2025-07-27
6387 - typelevel-rewrite-rules # failure in job https://hydra.nixos.org/build/233243365 at 2023-09-02
6388 - typelevel-tensor # failure in job https://hydra.nixos.org/build/233190827 at 2023-09-02
6389 - typeparams # failure in job https://hydra.nixos.org/build/233192078 at 2023-09-02
···6764 - X11-xfixes # failure in job https://hydra.nixos.org/build/233256494 at 2023-09-02
6765 - x86-64bit # failure in job https://hydra.nixos.org/build/252737465 at 2024-03-16
6766 - xcffib # failure in job https://hydra.nixos.org/build/295098351 at 2025-04-22
6767+ - xcframework # failure in job https://hydra.nixos.org/build/302807506 at 2025-07-27
6768 - xchat-plugin # failure in job https://hydra.nixos.org/build/233238679 at 2023-09-02
6769 - xcp # failure in job https://hydra.nixos.org/build/233208926 at 2023-09-02
6770 - Xec # failure in job https://hydra.nixos.org/build/233191564 at 2023-09-02
···6791 - xml-extractors # failure in job https://hydra.nixos.org/build/252718569 at 2024-03-16
6792 - xml-html-conduit-lens # failure in job https://hydra.nixos.org/build/233238471 at 2023-09-02
6793 - xml-indexed-cursor # failure in job https://hydra.nixos.org/build/295098303 at 2025-04-22
6794+ - xml-isogen # failure in job https://hydra.nixos.org/build/303231372 at 2025-07-27
6795 - xml-parsec # failure in job https://hydra.nixos.org/build/233208461 at 2023-09-02
6796 - xml-parser # failure in job https://hydra.nixos.org/build/252721082 at 2024-03-16
6797 - xml-prettify # failure in job https://hydra.nixos.org/build/233225974 at 2023-09-02
···6811 - xmonad-vanessa # failure in job https://hydra.nixos.org/build/233214303 at 2023-09-02
6812 - xmonad-wallpaper # failure in job https://hydra.nixos.org/build/233217165 at 2023-09-02
6813 - xmonad-windownames # failure in job https://hydra.nixos.org/build/233258043 at 2023-09-02
6814+ - xnobar # failure in job https://hydra.nixos.org/build/302807518 at 2025-07-27
6815 - xorshift-plus # failure in job https://hydra.nixos.org/build/233255176 at 2023-09-02
6816 - Xorshift128Plus # failure in job https://hydra.nixos.org/build/233225679 at 2023-09-02
6817 - xsact # failure in job https://hydra.nixos.org/build/233221821 at 2023-09-02
···88 enableSharedLibraries ?
89 !stdenv.hostPlatform.isStatic
90 && (ghc.enableShared or false)
91- && !stdenv.hostPlatform.useAndroidPrebuilt,
92 enableDeadCodeElimination ? (!stdenv.hostPlatform.isDarwin), # TODO: use -dead_strip for darwin
93 # Disabling this for ghcjs prevents this crash: https://gitlab.haskell.org/ghc/ghc/-/issues/23235
94 enableStaticLibraries ?
···88 enableSharedLibraries ?
89 !stdenv.hostPlatform.isStatic
90 && (ghc.enableShared or false)
91+ && !stdenv.hostPlatform.useAndroidPrebuilt, # TODO: figure out why /build leaks into RPATH
92 enableDeadCodeElimination ? (!stdenv.hostPlatform.isDarwin), # TODO: use -dead_strip for darwin
93 # Disabling this for ghcjs prevents this crash: https://gitlab.haskell.org/ghc/ghc/-/issues/23235
94 enableStaticLibraries ?
···24 # version update of the stdlib, so we get rid of the version constraint
25 # altogether.
26 sed -Ei 's/standard-library-[0-9.]+/standard-library/' agda-categories.agda-lib
27-28- # The Makefile of agda-categories uses git(1) instead of find(1) to
29- # determine the list of source files. We cannot use git, as $PWD will not
30- # be a valid Git working directory.
31- find src -name '*.agda' | sed -e 's|^src/[/]*|import |' -e 's|/|.|g' -e 's/.agda//' -e '/import Everything/d' | LC_COLLATE='C' sort > Everything.agda
32 '';
3334 buildInputs = [ standard-library ];
···24 # version update of the stdlib, so we get rid of the version constraint
25 # altogether.
26 sed -Ei 's/standard-library-[0-9.]+/standard-library/' agda-categories.agda-lib
0000027 '';
2829 buildInputs = [ standard-library ];