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

22 lines
275 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
];
shellHook = ''
export HISTFILE=.history
'';
}