Unverified Commit e39d1aa7 authored by Sefa Eyeoglu's avatar Sefa Eyeoglu Committed by GitHub
Browse files

vencord: 1.13.1 -> 1.13.3 (#450960)

parents 0e764501 57484114
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 2ba2d317..9758074b 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -162,7 +162,7 @@ importers:
         specifier: ^22.13.4
         version: 22.13.13
       '@types/react':
-        specifier: 18.3.1
+        specifier: 19.0.12
         version: 19.0.12
       '@types/react-dom':
         specifier: 18.3.1
+17 −7
Original line number Diff line number Diff line
@@ -18,20 +18,29 @@

stdenv.mkDerivation (finalAttrs: {
  pname = "vencord";
  version = "1.13.1";
  version = "1.13.3";

  src = fetchFromGitHub {
    owner = "Vendicated";
    repo = "Vencord";
    tag = "v${finalAttrs.version}";
    hash = "sha256-FqRRpsS1NPpxJr6iaDvQJ3fuX07oo08lZ6f+oEQb3MM=";
    hash = "sha256-wKLI2YE1rEzkRjDeM85XAx2DIrWYGoZrQT8OHtsNJ7E=";
  };

  pnpmDeps = pnpm_10.fetchDeps {
  patches = [ ./fix-deps.patch ];

  postPatch = ''
    substituteInPlace packages/vencord-types/package.json \
      --replace-fail '"@types/react": "18.3.1"' '"@types/react": "19.0.12"'
  '';

  pnpmDeps =
    (pnpm_10.fetchDeps {
      inherit (finalAttrs) pname src;
      fetcherVersion = 2;
    hash = "sha256-JP9HOaP3DG+2F89tC77JZFD0ls35u/MzxNmvMCbBo9Y=";
  };
      hash = "sha256-5MjxEs+jbowJJbJ9+Z+vppFImpB+PZzEhntwRAgv+xM=";
    }).overrideAttrs
      { inherit (finalAttrs) patches postPatch; };

  nativeBuildInputs = [
    git
@@ -96,6 +105,7 @@ stdenv.mkDerivation (finalAttrs: {
      Gliczy
      NotAShelf
      Scrumplex
      ryand56
    ];
  };
})