Skip to content

Commit

Permalink
flake.nix: remove power64 from from nixos check due to broken package
Browse files Browse the repository at this point in the history
(cherry picked from commit 4bf6540)
  • Loading branch information
RossComputerGuy authored and cole-h committed Jul 10, 2024
1 parent fb343de commit e9e6878
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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>`
Expand Down

0 comments on commit e9e6878

Please sign in to comment.