configuration.nix/lint.nix
Jalil David Salamé Messina 693eeee537
All checks were successful
/ check (push) Successful in 26s
/ build (vm) (push) Successful in 2s
[feat] ci: add forgejo actions
2024-06-08 22:34:45 +02:00

12 lines
185 B
Nix

{
lib,
stdenvNoCC,
statix,
src,
}:
stdenvNoCC.mkDerivation {
name = "lint-src";
inherit src;
buildPhase = "${lib.getExe statix} check .";
installPhase = "mkdir $out";
}