From a476012dc536c40a013ef73d4d965740c963370e Mon Sep 17 00:00:00 2001 From: jopejoe1 Date: Fri, 19 May 2023 22:47:42 +0200 Subject: [PATCH] Add Prismlauncher patch --- flake.nix | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index d065869..a2e0f2c 100644 --- a/flake.nix +++ b/flake.nix @@ -17,10 +17,16 @@ url = github:vinceliuice/Tela-icon-theme; flake = false; }; - prism-patch = { + + # PrismLauncher Patches + prism-game-options-patch = { url = "https://patch-diff.githubusercontent.com/raw/PrismLauncher/PrismLauncher/pull/907.patch"; flake = false; }; + prism-ftb-patch = { + url = "https://github.com/AdenMck/PrismLauncher/commit/36df231f7ad5f8d54d08c4d2c5f99f6d000fc507.patch"; + flake = false; + }; }; outputs = inputs@{ @@ -66,7 +72,8 @@ }); prismlauncher = super.prismlauncher.overrideAttrs (old: { patches = (old.patches or []) ++ [ - inputs.prism-patch + inputs.prism-game-options-patch + inputs.prism-ftb-patch ]; }); })