haskellPackages: small formatting fix to versionedCompilerJobs in release-haskell.nix
This commit is contained in:
parent
f430566c57
commit
0d364a0117
1 changed files with 7 additions and 7 deletions
|
@ -128,13 +128,13 @@ let
|
|||
# ```
|
||||
versionedCompilerJobs = config: mapTestOn {
|
||||
haskell.packages =
|
||||
(lib.mapAttrs (
|
||||
ghc: jobs:
|
||||
lib.filterAttrs (
|
||||
jobName: platforms:
|
||||
lib.elem ghc (config."${jobName}" or [])
|
||||
) jobs
|
||||
) compilerPlatforms);
|
||||
lib.mapAttrs
|
||||
(ghc: jobs:
|
||||
lib.filterAttrs
|
||||
(jobName: platforms: lib.elem ghc (config."${jobName}" or []))
|
||||
jobs
|
||||
)
|
||||
compilerPlatforms;
|
||||
};
|
||||
|
||||
# hydra jobs for `pkgs` of which we import a subset of
|
||||
|
|
Loading…
Reference in a new issue