configuration.nix/fmt.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
192 B
Nix

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