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;
|
checks = packages;
|
||||||
|
|
||||||
hydraJobs = forSystems (system:
|
hydraJobs =
|
||||||
let
|
let
|
||||||
|
system = builtins.head systems;
|
||||||
pkgs = nixpkgs.legacyPackages.${system};
|
pkgs = nixpkgs.legacyPackages.${system};
|
||||||
ghcVersions =
|
ghcVersions =
|
||||||
builtins.filter (p:
|
builtins.filter (p:
|
||||||
|
@ -31,8 +32,7 @@
|
||||||
checks // {
|
checks // {
|
||||||
"${ghcVersion}".yammat = haskellPackages.callPackage ./pkg.nix {};
|
"${ghcVersion}".yammat = haskellPackages.callPackage ./pkg.nix {};
|
||||||
}
|
}
|
||||||
) {} ghcVersions
|
) {} ghcVersions;
|
||||||
);
|
|
||||||
|
|
||||||
devShell = forSystems (system:
|
devShell = forSystems (system:
|
||||||
import ./shell.nix {
|
import ./shell.nix {
|
||||||
|
|
Loading…
Reference in a new issue