Add Prismlauncher patch

This commit is contained in:
Johannes Jöns 2023-05-19 22:47:42 +02:00
parent 05cf0317fd
commit a476012dc5

View file

@ -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
];
});
})