12.nixvim/flake/dev/parse.nix
Austin Horstman b95b90f8c9 ci: add nix and lix parse checks
Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
Co-authored-by: piegames <git@piegames.de>
2026-04-22 01:19:39 +00:00

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";
};
};
};
}