Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

Commit

Permalink
Remove the x86_64-darwin check
Browse files Browse the repository at this point in the history
  • Loading branch information
JosephLucas committed Aug 16, 2021
1 parent 0b09ae6 commit cae9fd3
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 @@ -18,7 +18,8 @@
overlay = final: prev: { pgp-milter = (import ./default.nix { pkgs = final; }); };
packages = forAllSystems (system: { inherit (nixpkgsFor.${system}) pgp-milter; });
defaultPackage = forAllSystems (system: self.packages.${system}.pgp-milter);
checks = forAllSystems (system: { inherit (self.packages.${system}) pgp-milter; });
# FIXME: check also for x86_64-darwin as soon as Hydra will check darwin derivations
checks.x86_64-linux.pgp-milter = self.packages.x86_64-linux.pgp-milter;
devShell = forAllSystems (system: self.packages.${system}.pgp-milter.override { inShell = true; });
};
}

0 comments on commit cae9fd3

Please sign in to comment.