Unverified Commit 9a44a719 authored by Jon Seager's avatar Jon Seager Committed by GitHub
Browse files

prisma_7, prisma-engines_7: 7.0.1 -> 7.2.0 (#476000)

parents ebd1082b 4c1d99b9
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -10,14 +10,14 @@
# Updating this package will force an update for prisma. The
# version of prisma-engines and prisma must be the same for them to
# function correctly.
rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage (finalAttrs: {
  pname = "prisma-engines_6";
  version = "6.19.1";

  src = fetchFromGitHub {
    owner = "prisma";
    repo = "prisma-engines";
    tag = version;
    tag = finalAttrs.version;
    hash = "sha256-z3GdnrLEMJIGPKXXbz2wrbiGpuNlgYxqg3iYINYTnPI=";
  };

@@ -70,7 +70,7 @@ rustPlatform.buildRustPackage rec {
      aqrln
    ];
  };
}
})

### Troubleshooting
# Here's an example application using Prisma with Nix: https://github.com/pimeys/nix-prisma-example
+6 −6
Original line number Diff line number Diff line
@@ -9,18 +9,18 @@
# Updating this package will force an update for prisma. The
# version of prisma-engines and prisma must be the same for them to
# function correctly.
rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage (finalAttrs: {
  pname = "prisma-engines_7";
  version = "7.0.1";
  version = "7.2.0";

  src = fetchFromGitHub {
    owner = "prisma";
    repo = "prisma-engines";
    tag = version;
    hash = "sha256-+8k+M2+WySR2CeywYlhU/jd3av/4UeUoEOlO/qHUk5o=";
    tag = finalAttrs.version;
    hash = "sha256-1CwpUtNuqxGNjBmmmo/Aet8XrmnCQfDToI7vZaNupDI=";
  };

  cargoHash = "sha256-n83hJfSlvuaoBb3w9Rk8+q2emjGCoPDHhFdoVzhf4sM=";
  cargoHash = "sha256-U5d/HkuWnD/XSrAJr5AYh+WPVGDOcK/e4sC0udPZoyU=";

  # Use system openssl.
  OPENSSL_NO_VENDOR = 1;
@@ -59,7 +59,7 @@ rustPlatform.buildRustPackage rec {
      aqrln
    ];
  };
}
})

### Troubleshooting
# Here's an example application using Prisma with Nix: https://github.com/pimeys/nix-prisma-example
+4 −4
Original line number Diff line number Diff line
@@ -15,13 +15,13 @@

stdenv.mkDerivation (finalAttrs: {
  pname = "prisma_7";
  version = "7.0.1";
  version = "7.2.0";

  src = fetchFromGitHub {
    owner = "prisma";
    repo = "prisma";
    tag = finalAttrs.version;
    hash = "sha256-bmmthEFMBMJAracWUCU/6Nyic05JglP5t1VAWPVKFnU=";
    hash = "sha256-oDfb/RwSa63ErWHF86q5xPPUUsRUV2DwNHARTV5gxyk=";
  };

  nativeBuildInputs = [
@@ -36,8 +36,8 @@ stdenv.mkDerivation (finalAttrs: {
  pnpmDeps = fetchPnpmDeps {
    inherit (finalAttrs) pname version src;
    pnpm = pnpm_10;
    fetcherVersion = 1;
    hash = "sha256-sJmlMF8nay4/3LTHEWzBWaS8Xq91JRZlzKBfeMnJEMM=";
    fetcherVersion = 3;
    hash = "sha256-HZsrHYUh4nxUgwVbmJ+fV4/OZvEWDKkD4CT8hIt1SRY=";
  };

  patchPhase = ''