9 lines
183 B
Nix
9 lines
183 B
Nix
{ pkgs, formatter }:
|
|
{
|
|
format = pkgs.runCommand
|
|
"check-format"
|
|
{
|
|
buildInputs = [ formatter ];
|
|
}
|
|
"${formatter}/bin/nixpkgs-fmt --check ${./.} && touch $out";
|
|
}
|