tvl-depot/web/panettone/shell.nix
Griffin Smith 6ae0f53a40 fix(web/panettone): Fix shell.nix for new third_party format
Change-Id: I16dfe9295866afdd62802b6c35be66646f3f26c8
Reviewed-on: https://cl.tvl.fyi/c/depot/+/5446
Autosubmit: grfn <grfn@gws.fyi>
Tested-by: BuildkiteCI
Reviewed-by: tazjin <tazjin@tvl.su>
2022-04-14 14:26:50 +00:00

15 lines
237 B
Nix

{ depot ? import ../.. { } }:
with depot.third_party.nixpkgs;
mkShell {
buildInputs = [
docker-compose
postgresql
];
PGPASSWORD = "password";
PGHOST = "localhost";
PGUSER = "panettone";
PGDATABASE = "panettone";
}