about summary refs log tree commit diff
path: root/users/grfn/bbbg/shell.nix
blob: 195562519ed48186290f658117c0857d43e0afed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
let
 depot = import ../../.. {};
in
with depot.third_party.nixpkgs;

mkShell {
  buildInputs = [
    arion
    depot.third_party.clj2nix
    clojure
    openjdk11_headless
    postgresql_12
    nix-prefetch-git
  ];

  PGHOST = "localhost";
  PGUSER = "bbbg";
  PGDATABASE = "bbbg";
  PGPASSWORD = "password";
}