Add a shell.nix to noauthd
This commit is contained in:
parent
3eeba056c0
commit
b47e024ecd
13
shell.nix
Normal file
13
shell.nix
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
{ pkgs ? import <nixpkgs> {} }:
|
||||||
|
pkgs.mkShell {
|
||||||
|
buildInputs = with pkgs; [
|
||||||
|
nodejs_18
|
||||||
|
nodePackages_latest.prisma
|
||||||
|
openssl
|
||||||
|
];
|
||||||
|
env = {
|
||||||
|
PRISMA_QUERY_ENGINE_LIBRARY = "${pkgs.prisma-engines}/lib/libquery_engine.node";
|
||||||
|
PRISMA_QUERY_ENGINE_BINARY = "${pkgs.prisma-engines}/bin/query-engine";
|
||||||
|
PRISMA_SCHEMA_ENGINE_BINARY = "${pkgs.prisma-engines}/bin/schema-engine";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user