Skip to content

Commit 082e879

Browse files
committed
flake: fix nix flake check --all-systems --no-build again
This regressed in be4d27f, because sphinx-issues depends on pandoc at build-time (which depends on GHC). Previously fixed in NixOS#349076.
1 parent 6453fb2 commit 082e879

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

flake.nix

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,10 @@
107107
self.legacyPackages.${system}.stdenv.hostPlatform.isLinux
108108
# Exclude power64 due to "libressl is not available on the requested hostPlatform" with hostPlatform being power64
109109
&& !self.legacyPackages.${system}.targetPlatform.isPower64
110+
# Exclude armv6l-linux because "cannot bootstrap GHC on this platform ('armv6l-linux' with libc 'defaultLibc')"
111+
&& system != "armv6l-linux"
112+
# Exclude riscv64-linux because "cannot bootstrap GHC on this platform ('riscv64-linux' with libc 'defaultLibc')"
113+
&& system != "riscv64-linux"
110114
)
111115
{
112116
# Test that ensures that the nixosSystem function can accept a lib argument

0 commit comments

Comments
 (0)