Add prismlauncher patch

This commit is contained in:
jopejoe1 2023-05-19 22:27:09 +02:00
parent ecb59d2219
commit 05cf0317fd
2 changed files with 26 additions and 4 deletions

View file

@ -14,7 +14,11 @@
};
nixos-hardware.url = github:NixOS/nixos-hardware;
tela-icon-theme = {
url = "github:vinceliuice/Tela-icon-theme";
url = github:vinceliuice/Tela-icon-theme;
flake = false;
};
prism-patch = {
url = "https://patch-diff.githubusercontent.com/raw/PrismLauncher/PrismLauncher/pull/907.patch";
flake = false;
};
};
@ -60,6 +64,11 @@
tela-icon-theme = super.tela-icon-theme.overrideAttrs (old: {
src = inputs.tela-icon-theme;
});
prismlauncher = super.prismlauncher.overrideAttrs (old: {
patches = (old.patches or []) ++ [
inputs.prism-patch
];
});
})
];
};