crane/checks/nixpkgs-fmt.nix
2021-12-26 11:47:59 -08:00

17 lines
269 B
Nix

{ lib
, nixpkgs-fmt
, runCommand
}:
let
cleaned = lib.cleanSource ./..;
nixOnly = lib.sourceFilesBySuffices cleaned [ ".nix" ];
in
runCommand "nixpkgs-fmt"
{
nativeBuildInputs = [ nixpkgs-fmt ];
} ''
nixpkgs-fmt --check ${nixOnly}
touch $out # it worked!
''