Files
postgrest/docs/shell.nix
T
Wolfgang Walther a14559647b chore: Run postgrest-style on docs files
This prevents CI from failing after the merge.
2024-02-17 13:43:27 +01:00

18 lines
222 B
Nix

let
docs =
import ./default.nix;
inherit (docs) pkgs;
in
pkgs.mkShell {
name = "postgrest-docs";
buildInputs = [
docs.build
docs.serve
docs.spellcheck
docs.dictcheck
docs.linkcheck
];
}