prisma-engines: 4.8.0 -> 4.9.0

This commit is contained in:
Tom Houlé 2023-01-18 16:00:07 +01:00
parent 0971b6483e
commit 8521af8e97

View File

@ -2,6 +2,7 @@
, lib
, Security
, openssl
, git
, pkg-config
, protobuf
, rustPlatform
@ -13,21 +14,21 @@
# function correctly.
rustPlatform.buildRustPackage rec {
pname = "prisma-engines";
version = "4.8.0";
version = "4.9.0";
src = fetchFromGitHub {
owner = "prisma";
repo = "prisma-engines";
rev = version;
sha256 = "sha256-+L8w7FG74V6z9IUfkQHo2B7/vjLhdVHeoVBttgqoUNc=";
sha256 = "sha256-Nxpv3ibhHTFiO0hqSrT1hqTK9Vb0P8Svu5riufCChwI=";
};
# Use system openssl.
OPENSSL_NO_VENDOR = 1;
cargoSha256 = "sha256-CQFTO43/b0ymYtnAtvySrp8cOF7rRdzY8mvcYTiiUp0=";
cargoSha256 = "sha256-PiDW7+LrCDfRpQirJlgaYDnGenowbsCmwQz1mbgA08E=";
nativeBuildInputs = [ pkg-config ];
nativeBuildInputs = [ pkg-config git ];
buildInputs = [
openssl