87f9c27ba9
GitOrigin-RevId: fe2ecaf706a5907b5e54d979fbde4924d84b65fc
92 lines
3.2 KiB
Nix
92 lines
3.2 KiB
Nix
{ fetchFromGitHub
|
|
, lib
|
|
, Security
|
|
, openssl
|
|
, git
|
|
, pkg-config
|
|
, protobuf
|
|
, rustPlatform
|
|
, stdenv
|
|
}:
|
|
|
|
# Updating this package will force an update for nodePackages.prisma. The
|
|
# version of prisma-engines and nodePackages.prisma must be the same for them to
|
|
# function correctly.
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "prisma-engines";
|
|
version = "4.12.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "prisma";
|
|
repo = "prisma-engines";
|
|
rev = version;
|
|
sha256 = "sha256-bSyAWJ4ukiXVyKI1iGvCs2cMgW1jdYRs5cgTdOCXvrQ=";
|
|
};
|
|
|
|
# Use system openssl.
|
|
OPENSSL_NO_VENDOR = 1;
|
|
|
|
cargoLock = {
|
|
lockFile = ./Cargo.lock;
|
|
outputHashes = {
|
|
"barrel-0.6.6-alpha.0" = "sha256-USh0lQ1z+3Spgc69bRFySUzhuY79qprLlEExTmYWFN8=";
|
|
"graphql-parser-0.3.0" = "sha256-0ZAsj2mW6fCLhwTETucjbu4rPNzfbNiHu2wVTBlTNe4=";
|
|
"mobc-0.7.3" = "sha256-Ts2VVAuZakS+Sy/rEUrCe7RJX5MWs/TTO60c7mH+5sU=";
|
|
"mysql_async-0.31.3" = "sha256-hvuZTJ8W6L2s2gYAGJXBezkeAHTu06zIvJGQjoYX+7Q=";
|
|
"postgres-native-tls-0.5.0" = "sha256-6aDlwv9+Tt9ncOPRnhKNAgafcPhqM1V31Ix+fplwdUc=";
|
|
"quaint-0.2.0-alpha.13" = "sha256-UI1B/BylEQQko48D+sQzUhD7qIK2Z84115bu7NkDSFw=";
|
|
};
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config git ];
|
|
|
|
buildInputs = [
|
|
openssl
|
|
protobuf
|
|
] ++ lib.optionals stdenv.isDarwin [ Security ];
|
|
|
|
preBuild = ''
|
|
export OPENSSL_DIR=${lib.getDev openssl}
|
|
export OPENSSL_LIB_DIR=${lib.getLib openssl}/lib
|
|
|
|
export PROTOC=${protobuf}/bin/protoc
|
|
export PROTOC_INCLUDE="${protobuf}/include";
|
|
|
|
export SQLITE_MAX_VARIABLE_NUMBER=250000
|
|
export SQLITE_MAX_EXPR_DEPTH=10000
|
|
'';
|
|
|
|
cargoBuildFlags = [
|
|
"-p" "query-engine"
|
|
"-p" "query-engine-node-api"
|
|
"-p" "migration-engine-cli"
|
|
"-p" "prisma-fmt"
|
|
];
|
|
|
|
postInstall = ''
|
|
mv $out/lib/libquery_engine${stdenv.hostPlatform.extensions.sharedLibrary} $out/lib/libquery_engine.node
|
|
'';
|
|
|
|
# Tests are long to compile
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "A collection of engines that power the core stack for Prisma";
|
|
homepage = "https://www.prisma.io/";
|
|
license = licenses.asl20;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ pimeys tomhoule ivan ];
|
|
};
|
|
}
|
|
|
|
### Troubleshooting
|
|
# Here's an example application using Prisma with Nix: https://github.com/pimeys/nix-prisma-example
|
|
# At example's `flake.nix` shellHook, notice the requirement of defining environment variables for prisma, it's values will show on `prisma --version`.
|
|
# Read the example's README: https://github.com/pimeys/nix-prisma-example/blob/main/README.md
|
|
# Prisma requires 2 packages, `prisma-engines` and `nodePackages.prisma`, to be at *exact* same versions.
|
|
# Certify at `package.json` that dependencies "@prisma/client" and "prisma" are equal, meaning no caret (`^`) in version.
|
|
# Configure NPM to use exact version: `npm config set save-exact=true`
|
|
# Delete `package-lock.json`, delete `node_modules` directory and run `npm install`.
|
|
# Run prisma client from `node_modules/.bin/prisma`.
|
|
# Run `./node_modules/.bin/prisma --version` and check if both prisma packages versions are equal, current platform is `linux-nixos`, and other keys equal to the prisma environment variables you defined for prisma.
|
|
# Test prisma with `generate`, `db push`, etc. It should work. If not, open an issue.
|