From fca85a013c9f0d209a4b524f1eaef3f36e7029e3 Mon Sep 17 00:00:00 2001 From: schererleander Date: Tue, 3 Feb 2026 17:54:20 +0100 Subject: chore: fix deprecation warnings --- overlays/nixcord-fix.nix | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 overlays/nixcord-fix.nix (limited to 'overlays/nixcord-fix.nix') diff --git a/overlays/nixcord-fix.nix b/overlays/nixcord-fix.nix deleted file mode 100644 index e35b7b6..0000000 --- a/overlays/nixcord-fix.nix +++ /dev/null @@ -1,21 +0,0 @@ -self: super: { - vencord = super.vencord.overrideAttrs (old: rec { - pname = "vencord"; - version = "1.12.7"; - - src = super.fetchFromGitHub { - owner = "Vencord"; - repo = "Vencord"; - rev = "v${version}"; - sha256 = "sha256-NEW_HASH_FROM_BUILD"; - }; - - pnpmDeps = super.fetchPnpmDeps { - inherit src; - lockfile = "${src}/pnpm-lock.yaml"; - sha256 = "sha256-QiD4qTRtz5vz0EEc6Q08ej6dbVGMlPLU2v0GVKNBQyc="; # ← from error message - }; - - nativeBuildInputs = old.nativeBuildInputs ++ [ super.nodejs ]; - }); -} -- cgit v1.3.1