diff options
author | Profpatsch <mail@profpatsch.de> | 2023-06-19T13·56+0200 |
---|---|---|
committer | Profpatsch <mail@profpatsch.de> | 2023-07-14T08·03+0000 |
commit | 07b976ccd89cc8a4b5d0624ee2223d64add4615d (patch) | |
tree | 559db5d16d23cbb7f576448fccccb9a5f84e85e7 /users/Profpatsch/shell.nix | |
parent | 5daa31db3ba0a7dbe2a5f8ef01b024deb61fcc3e (diff) |
feat(users/Profpatsch): init whatcd-resolver r/6413
Change-Id: Ieb377fb8caa60e716703153dfeca5173f9a6779d Reviewed-on: https://cl.tvl.fyi/c/depot/+/8830 Reviewed-by: Profpatsch <mail@profpatsch.de> Tested-by: BuildkiteCI
Diffstat (limited to 'users/Profpatsch/shell.nix')
-rw-r--r-- | users/Profpatsch/shell.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/users/Profpatsch/shell.nix b/users/Profpatsch/shell.nix index 4f7ff53c3b2e..ea88c423cb0f 100644 --- a/users/Profpatsch/shell.nix +++ b/users/Profpatsch/shell.nix @@ -18,6 +18,8 @@ pkgs.mkShell { h.monad-logger h.pa-field-parser h.pa-label + h.pa-json + h.pa-pretty h.ihp-hsx h.PyF h.foldl @@ -46,13 +48,23 @@ pkgs.mkShell { h.nicify-lib h.hspec h.hspec-expectations-pretty-diff + h.tmp-postgres + h.postgresql-simple + h.resource-pool ])) pkgs.rustup pkgs.pkg-config pkgs.fuse + pkgs.postgresql ]; + WHATCD_RESOLVER_TOOLS = pkgs.linkFarm "whatcd-resolver-tools" [ + { + name = "pg_format"; + path = "${pkgs.pgformatter}/bin/pg_format"; + } + ]; RUSTC_WRAPPER = let |