Co-authored-by: Wolfgang Walther <walther@technowledgy.de> Co-authored-by: piegames <git@piegames.de>
16 lines
397 B
Nix
16 lines
397 B
Nix
_: {
|
|
perSystem =
|
|
{ pkgs, ... }:
|
|
{
|
|
checks = {
|
|
parseNix = pkgs.callPackage ../../ci/parse.nix {
|
|
nix = pkgs.nixVersions.latest;
|
|
pipeOperatorFlag = "pipe-operators";
|
|
};
|
|
parseLix = pkgs.callPackage ../../ci/parse.nix {
|
|
nix = pkgs.lixPackageSets.latest.lix;
|
|
pipeOperatorFlag = "pipe-operator";
|
|
};
|
|
};
|
|
};
|
|
}
|