configuration.nix/lint.nix
Jalil David Salamé Messina bb9e7b1139
All checks were successful
/ check (push) Successful in 20s
/ build (vm) (push) Successful in 1s
[feat] ci: add forgejo actions
2024-06-08 22:41:09 +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";
}