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