Revert "Roles/gaming: fix emulator build issues"

This reverts commit 65eb518651.
This commit is contained in:
Toast 2025-11-01 18:43:19 +01:00
parent d3a3617e29
commit 03b73e7090
4 changed files with 13 additions and 110 deletions

View file

@ -1,19 +1,17 @@
{pkgs, ...}: {
nixpkgs.overlays = [
(
final: prev: {
azahar = prev.azahar.overrideAttrs (old: {
patches = old.patches ++ [(
final.fetchpatch {
name = "fix-build-qt-6.10.patch";
url = "https://github.com/azahar-emu/azahar/pull/1441.patch";
hash = "sha256-PTnhFpuGoF6qPIwupdcRo6s+Tzhj0JR0QwoCgxgGxAw=";
}
)];
});
}
)
];
# nixpkgs.overlays = [
# (
# final: prev: {
# azahar = prev.azahar.overrideAttrs (old: {
# version = "2120.3";
# src = final.fetchzip {
# url = "https://github.com/azahar-emu/azahar/releases/download/2120.3/azahar-unified-source-20250414-00e3bbb.tar.xz";
# hash = "sha256-3QKicmpmWDM7x9GDJ8sxm2Xu+0Yfho4LkSWMp+ixzRk=";
# };
# });
# }
# )
# ];
home-manager.users.toast = {
home.packages = [pkgs.azahar];
};