feature: Adds hello world for gui.
This commit is contained in:
parent
07dad7c9eb
commit
871fd4c2c5
4 changed files with 41 additions and 1 deletions
13
shell.nix
13
shell.nix
|
@ -1,7 +1,18 @@
|
|||
{
|
||||
pkgs ? import <nixpkgs> { },
|
||||
}: pkgs.mkShell {
|
||||
buildInputs = [ pkgs.nodejs pkgs.openssl pkgs.postgresql pkgs.lsof ];
|
||||
buildInputs = with pkgs; [
|
||||
# gui/
|
||||
cargo
|
||||
rustc
|
||||
|
||||
# api/
|
||||
nodejs
|
||||
openssl
|
||||
postgresql
|
||||
lsof
|
||||
];
|
||||
|
||||
shellHook = ''
|
||||
export PRISMA_QUERY_ENGINE_BINARY=${pkgs.prisma-engines}/bin/query-engine
|
||||
export PRISMA_QUERY_ENGINE_LIBRARY=${pkgs.prisma-engines}/lib/libquery_engine.node
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue