diff options
| author | Cole Helbling <cole.e.helbling@outlook.com> | 2025-04-02 07:55:32 -0700 |
|---|---|---|
| committer | Cole Helbling <cole.e.helbling@outlook.com> | 2025-04-02 08:42:54 -0700 |
| commit | 082e8798ea8ab0832bf9c502361c7885f5769f96 (patch) | |
| tree | aba538334b4747387143140447a74546ec5b53c2 /flake.nix | |
| parent | gerrit: 3.11.1 -> 3.11.2 (#395201) (diff) | |
| download | nixpkgs-082e8798ea8ab0832bf9c502361c7885f5769f96.tar.gz | |
flake: fix `nix flake check --all-systems --no-build` again
This regressed in be4d27febe7776aac010f1ce11e1ff1f60f09bdd, because
sphinx-issues depends on pandoc at build-time (which depends on GHC).
Previously fixed in https://github.com/NixOS/nixpkgs/pull/349076.
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix index a82bb383c062..c594afafd5f7 100644 --- a/flake.nix +++ b/flake.nix @@ -107,6 +107,10 @@ self.legacyPackages.${system}.stdenv.hostPlatform.isLinux # Exclude power64 due to "libressl is not available on the requested hostPlatform" with hostPlatform being power64 && !self.legacyPackages.${system}.targetPlatform.isPower64 + # Exclude armv6l-linux because "cannot bootstrap GHC on this platform ('armv6l-linux' with libc 'defaultLibc')" + && system != "armv6l-linux" + # Exclude riscv64-linux because "cannot bootstrap GHC on this platform ('riscv64-linux' with libc 'defaultLibc')" + && system != "riscv64-linux" ) { # Test that ensures that the nixosSystem function can accept a lib argument |
