configuration.nix/typos.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
178 B
Nix

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