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