universedesktop: Remove WiiU/Switch Emulators

This commit is contained in:
2024-02-21 19:08:22 -05:00
parent c0c31dd8c5
commit 960edd01a9
2 changed files with 1 additions and 62 deletions

View File

@@ -1,51 +1,4 @@
{ lib, config, pkgs, ... }: let { lib, config, pkgs, ... }: {
wiiUDownloader = pkgs.stdenv.mkDerivation rec {
pname = "WiiUDownloader";
version = "1.32";
src = pkgs.fetchFromGitHub {
owner = "Xpl0itU";
repo = "WiiUDownloader";
rev = "v${version}";
fetchSubmodules = true;
hash = "sha256-R3FiNiK27Q2x5HbHmWw3F4LPJNKz5BAoOyl4fYAEQlc=";
};
preConfigure = ''
cp ${./gtitles.c} src/gtitles.c
'';
nativeBuildInputs = with pkgs; [
cmake
pkg-config
wrapGAppsHook
];
buildInputs = with pkgs; [
curl
mbedtls
gtkmm3
pcre2
pcre-cpp
util-linux
libselinux
libsepol
libthai
libdatrie
xorg.libXdmcp
libxkbcommon
libepoxy
xorg.libXtst
];
propagatedBuildInputs = with pkgs; [
gsettings-desktop-schemas
];
installPhase = ''
runHook preInstall
mkdir -p $out/bin
mv * $out/bin
runHook postInstall
'';
};
in {
# For steam # For steam
services.flatpak.enable = true; services.flatpak.enable = true;
# Game compat # Game compat
@@ -61,11 +14,5 @@ in {
# PS2 Games # PS2 Games
pcsx2 pcsx2
# Switch / WiiU Games
cemu
wiiUDownloader
yuzu-early-access
ukmm
]; ];
} }

File diff suppressed because one or more lines are too long