flake.nix: remove ${system} from hydraJobs schema
This commit is contained in:
parent
38ecd78db1
commit
29a34b4759
1 changed files with 3 additions and 3 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue