Files
postgrest/shell.nix
T
2023-06-26 17:51:21 -05:00

23 lines
276 B
Nix

let
docs =
import ./default.nix;
pkgs =
docs.pkgs;
in
pkgs.mkShell {
name = "postgrest-docs";
buildInputs = [
docs.build
docs.serve
docs.spellcheck
docs.dictcheck
docs.linkcheck
];
shellHook = ''
export HISTFILE=.history
'';
}