2022-05-19 14:39:52 +00:00
|
|
|
{ depot ? import ../.. { } }:
|
2020-09-30 03:42:59 +00:00
|
|
|
|
2022-05-19 14:39:52 +00:00
|
|
|
with depot.third_party.nixpkgs;
|
2020-09-30 03:42:59 +00:00
|
|
|
|
|
|
|
mkShell {
|
|
|
|
buildInputs = [
|
|
|
|
docker-compose
|
|
|
|
postgresql
|
|
|
|
];
|
|
|
|
|
|
|
|
PGPASSWORD = "password";
|
|
|
|
PGHOST = "localhost";
|
|
|
|
PGUSER = "panettone";
|
|
|
|
PGDATABASE = "panettone";
|
|
|
|
}
|