summaryrefslogtreecommitdiffstats
path: root/flake.nix
diff options
context:
space:
mode:
authorTristan Ross <tristan.ross@midstall.com>2024-06-17 16:35:20 -0700
committerTristan Ross <tristan.ross@midstall.com>2024-06-17 16:40:39 -0700
commit4bf6540ad360be112b33c06502f06ef061a26a00 (patch)
treebe99f804efca9bd08a862c81dba4b659925fc4b6 /flake.nix
parentecf68270492148d085169a1f1e86b4e8a7ace7f9 (diff)
flake.nix: remove power64 from from nixos check due to broken package
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 8df05dc91263..b22cf56a9b5f 100644
--- a/flake.nix
+++ b/flake.nix
@@ -46,7 +46,8 @@
checks = forAllSystems (system: {
tarball = jobs.${system}.tarball;
- } // lib.optionalAttrs (self.legacyPackages.${system}.stdenv.isLinux) {
+ # Exclude power64 due to "libressl is not available on the requested hostPlatform" with hostPlatform being power64
+ } // lib.optionalAttrs (self.legacyPackages.${system}.stdenv.isLinux && !self.legacyPackages.${system}.targetPlatform.isPower64) {
# Test that ensures that the nixosSystem function can accept a lib argument
# Note: prefer not to extend or modify `lib`, especially if you want to share reusable modules
# alternatives include: `import` a file, or put a custom library in an option or in `_module.args.<libname>`