From 520a1df208e8292ce0dcb8cb12f454413ff88b0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophane=20Hufschmitt?= Date: Thu, 7 Mar 2024 10:40:53 +0100 Subject: [PATCH] flake: Disable the perl bindings on i686-linux Some perl dependencies are failing: https://hydra.nixos.org/build/252347639/nixlog/1 Since the support is only best-effort there, disable the perl bindings --- flake.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 42aaace67..15100f772 100644 --- a/flake.nix +++ b/flake.nix @@ -341,7 +341,6 @@ checks = forAllSystems (system: { binaryTarball = self.hydraJobs.binaryTarball.${system}; - perlBindings = self.hydraJobs.perlBindings.${system}; installTests = self.hydraJobs.installTests.${system}; nixpkgsLibTests = self.hydraJobs.tests.nixpkgsLibTests.${system}; rl-next = @@ -351,6 +350,11 @@ ''; } // (lib.optionalAttrs (builtins.elem system linux64BitSystems)) { dockerImage = self.hydraJobs.dockerImage.${system}; + } // (lib.optionalAttrs (!(builtins.elem system linux32BitSystems))) { + # Some perl dependencies are broken on i686-linux. + # Since the support is only best-effort there, disable the perl + # bindings + perlBindings = self.hydraJobs.perlBindings.${system}; }); packages = forAllSystems (system: rec {