flake.nix: remove ${system} from hydraJobs schema

This commit is contained in:
Astro 2021-03-12 02:24:30 +01:00
parent 38ecd78db1
commit 29a34b4759
1 changed files with 3 additions and 3 deletions

View File

@ -16,8 +16,9 @@
checks = packages;
hydraJobs = forSystems (system:
hydraJobs =
let
system = builtins.head systems;
pkgs = nixpkgs.legacyPackages.${system};
ghcVersions =
builtins.filter (p:
@ -31,8 +32,7 @@
checks // {
"${ghcVersion}".yammat = haskellPackages.callPackage ./pkg.nix {};
}
) {} ghcVersions
);
) {} ghcVersions;
devShell = forSystems (system:
import ./shell.nix {