tvl-depot/web/panettone/shell.nix

16 lines
237 B
Nix
Raw Normal View History

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