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

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