lol

Merge pull request #172342 from pimeys/prisma-3.14.0

nodePackages.prisma: 3.13.0 -> 3.14.0

authored by

Artturi and committed by
GitHub
ff93190f b6625b11

+4 -14
+1 -1
pkgs/development/node-packages/default.nix
··· 329 329 330 330 src = fetchurl { 331 331 url = "https://registry.npmjs.org/prisma/-/prisma-${version}.tgz"; 332 - sha512 = "sha512-oO1auBnBtieGdiN+57IgsA9Vr7Sy4HkILi1KSaUG4mpKfEbnkTGnLOxAqjLed+K2nsG/GtE1tJBtB7JxN1a78Q=="; 332 + sha512 = "sha512-l9MOgNCn/paDE+i1K2fp9NZ+Du4trzPTJsGkaQHVBufTGqzoYHuNk8JfzXuIn0Gte6/ZjyKj652Jq/Lc1tp2yw=="; 333 333 }; 334 334 postInstall = with pkgs; '' 335 335 wrapProgram "$out/bin/prisma" \
-10
pkgs/development/node-packages/node-packages.nix
··· 67102 67102 sha512 = "hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg=="; 67103 67103 }; 67104 67104 }; 67105 - "ts-pattern-4.0.2" = { 67106 - name = "ts-pattern"; 67107 - packageName = "ts-pattern"; 67108 - version = "4.0.2"; 67109 - src = fetchurl { 67110 - url = "https://registry.npmjs.org/ts-pattern/-/ts-pattern-4.0.2.tgz"; 67111 - sha512 = "eHqR/7A6fcw05vCOfnL6RwgGJbVi9G/YHTdYdjYmElhDdJ1SMn7pWs+6+YuxygaFwQS/g+cIDlu+UD8IVpur1A=="; 67112 - }; 67113 - }; 67114 67105 "ts-pnp-1.2.0" = { 67115 67106 name = "ts-pnp"; 67116 67107 packageName = "ts-pnp"; ··· 118740 118731 }; 118741 118732 dependencies = [ 118742 118733 sources."@prisma/engines-3.13.0-17.efdf9b1183dddfd4258cd181a72125755215ab7b" 118743 - sources."ts-pattern-4.0.2" 118744 118734 ]; 118745 118735 buildInputs = globalBuildInputs; 118746 118736 meta = {
+3 -3
pkgs/development/tools/database/prisma-engines/default.nix
··· 13 13 # function correctly. 14 14 rustPlatform.buildRustPackage rec { 15 15 pname = "prisma-engines"; 16 - version = "3.13.0"; 16 + version = "3.14.0"; 17 17 18 18 src = fetchFromGitHub { 19 19 owner = "prisma"; 20 20 repo = "prisma-engines"; 21 21 rev = version; 22 - sha256 = "sha256-+Ug4tOaqUaqcEoMv20CKE8JrjIdW34VSn20gXZYX92k="; 22 + sha256 = "sha256-UawQbVbafRpxkYFGW+y+HkkYME8qziG7tmsIjbqwHq0="; 23 23 }; 24 24 25 25 # Use system openssl. 26 26 OPENSSL_NO_VENDOR = 1; 27 27 28 - cargoSha256 = "sha256-V2G++BYLRGVM4leB2jkM+HcFiCIdf2wA3dfYdtlq7XI="; 28 + cargoSha256 = "sha256-1kR70t7vWzvV3DOrkVP6ktzKK5tB9KjJyAMpKO6gtYA="; 29 29 30 30 nativeBuildInputs = [ pkg-config ]; 31 31