about summary refs log tree commit diff
path: root/pkgs/development/tools/database
diff options
context:
space:
mode:
authorAlexey Orlenko <alex@aqrln.net>2023-02-12 17:24:08 +0100
committerBobby Rong <rjl931189261@126.com>2023-02-22 17:52:31 +0800
commit83a2bd87eaacff5355ae69d25cdf2384bec87b94 (patch)
tree1461aecc426b856a4bb6c5a323f2ea2d012b7d84 /pkgs/development/tools/database
parentdd73b3e57b46282b0d220fefa6c3970dcbaceb69 (diff)
prisma-engines: 4.9.0 -> 4.10.1
Diffstat (limited to 'pkgs/development/tools/database')
-rw-r--r--pkgs/development/tools/database/prisma-engines/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/database/prisma-engines/default.nix b/pkgs/development/tools/database/prisma-engines/default.nix
index e42c42e14960c..591059676e1c0 100644
--- a/pkgs/development/tools/database/prisma-engines/default.nix
+++ b/pkgs/development/tools/database/prisma-engines/default.nix
@@ -14,19 +14,19 @@
 # function correctly.
 rustPlatform.buildRustPackage rec {
   pname = "prisma-engines";
-  version = "4.9.0";
+  version = "4.10.1";
 
   src = fetchFromGitHub {
     owner = "prisma";
     repo = "prisma-engines";
     rev = version;
-    sha256 = "sha256-Nxpv3ibhHTFiO0hqSrT1hqTK9Vb0P8Svu5riufCChwI=";
+    sha256 = "sha256-TFLwpKh+FsstcpvBfTw7CNcQOGGSNI9qf8WJ6v75uL8=";
   };
 
   # Use system openssl.
   OPENSSL_NO_VENDOR = 1;
 
-  cargoSha256 = "sha256-PiDW7+LrCDfRpQirJlgaYDnGenowbsCmwQz1mbgA08E=";
+  cargoSha256 = "sha256-EPym9MLwTMGBbJkVMKD/NEc6Vfm7nI4FaDkqy/0B14Q=";
 
   nativeBuildInputs = [ pkg-config git ];