Merge pull request #5653 from edolstra/fix-flake-checks

flake.nix: Only have checks.*.dockerImage on supported systems
This commit is contained in:
Eelco Dolstra 2021-11-25 15:59:42 +01:00 committed by GitHub
commit ca82967ee3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -524,8 +524,9 @@
binaryTarball = self.hydraJobs.binaryTarball.${system};
perlBindings = self.hydraJobs.perlBindings.${system};
installTests = self.hydraJobs.installTests.${system};
} // (if system == "x86_64-linux" then {
dockerImage = self.hydraJobs.dockerImage.${system};
});
} else {}));
packages = forAllSystems (system: {
inherit (nixpkgsFor.${system}) nix;