Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
136 lines
4.5 KiB
Nix
136 lines
4.5 KiB
Nix
{
|
|
lib,
|
|
callPackage,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
# Pinned, because our FODs are not guaranteed to be stable between major versions.
|
|
pnpm_10,
|
|
nodejs,
|
|
python3,
|
|
makeWrapper,
|
|
# Electron updates frequently break Heroic, so pin same version as upstream, or newest non-EOL.
|
|
electron_36,
|
|
vulkan-helper,
|
|
gogdl,
|
|
nile,
|
|
comet-gog_heroic,
|
|
umu-launcher,
|
|
}:
|
|
|
|
let
|
|
legendary = callPackage ./legendary.nix { };
|
|
epic-integration = callPackage ./epic-integration.nix { };
|
|
comet-gog = comet-gog_heroic;
|
|
electron = electron_36;
|
|
in
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "heroic-unwrapped";
|
|
version = "2.18.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Heroic-Games-Launcher";
|
|
repo = "HeroicGamesLauncher";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-x792VA4PZleqUUgarh59JxJVXrvT95/rINYk8t9i3X0=";
|
|
};
|
|
|
|
pnpmDeps = pnpm_10.fetchDeps {
|
|
inherit (finalAttrs) pname version src;
|
|
fetcherVersion = 1;
|
|
hash = "sha256-F8H0eYltIJ0S8AX+2S3cR+v8dvePw09VWToVOLM8qII=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
nodejs
|
|
pnpm_10.configHook
|
|
python3
|
|
makeWrapper
|
|
];
|
|
|
|
patches = [
|
|
# Make Heroic create Steam shortcuts (to non-steam games) with the correct path to heroic.
|
|
./fix-non-steam-shortcuts.patch
|
|
# Fixes incorrect path to GalaxyCommunication.exe
|
|
./pr-4885.patch
|
|
];
|
|
|
|
env.ELECTRON_SKIP_BINARY_DOWNLOAD = "1";
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
|
|
# set nodedir to prevent node-gyp from downloading headers
|
|
export npm_config_nodedir=${electron.headers}
|
|
|
|
pnpm --offline electron-vite build
|
|
pnpm --offline electron-builder \
|
|
--linux \
|
|
--dir \
|
|
-c.asarUnpack="**/*.node" \
|
|
-c.electronDist=${electron.dist} \
|
|
-c.electronVersion=${electron.version}
|
|
|
|
runHook postBuild
|
|
'';
|
|
|
|
# --disable-gpu-compositing is to work around upstream bug
|
|
# https://github.com/electron/electron/issues/32317
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p "$out/opt/heroic"
|
|
cp -r dist/linux-unpacked/resources "$out/opt/heroic"
|
|
|
|
cp -r public "$out/opt/heroic/resources/app.asar.unpacked/build"
|
|
rm -rf "$out/opt/heroic/resources/app.asar.unpacked/build/bin"
|
|
mkdir -p \
|
|
"$out/opt/heroic/resources/app.asar.unpacked/build/bin/x64/linux" \
|
|
"$out/opt/heroic/resources/app.asar.unpacked/build/bin/x64/win32"
|
|
ln -s \
|
|
"${lib.getExe gogdl}" \
|
|
"${lib.getExe legendary}" \
|
|
"${lib.getExe nile}" \
|
|
"${lib.getExe comet-gog}" \
|
|
"${lib.getExe vulkan-helper}" \
|
|
"$out/opt/heroic/resources/app.asar.unpacked/build/bin/x64/linux"
|
|
# Don't symlink these so we don't confuse Windows applications under Wine/Proton.
|
|
cp \
|
|
"${comet-gog.dummy-service}/GalaxyCommunication.exe" \
|
|
"${epic-integration}/EpicGamesLauncher.exe" \
|
|
"$out/opt/heroic/resources/app.asar.unpacked/build/bin/x64/win32"
|
|
|
|
makeWrapper "${electron}/bin/electron" "$out/bin/heroic" \
|
|
--inherit-argv0 \
|
|
--set ELECTRON_FORCE_IS_PACKAGED 1 \
|
|
--suffix PATH ":" "${umu-launcher}/bin" \
|
|
--add-flags --disable-gpu-compositing \
|
|
--add-flags $out/opt/heroic/resources/app.asar \
|
|
--add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations --enable-wayland-ime=true}}"
|
|
|
|
install -D "flatpak/com.heroicgameslauncher.hgl.desktop" "$out/share/applications/com.heroicgameslauncher.hgl.desktop"
|
|
install -D "src/frontend/assets/heroic-icon.svg" "$out/share/icons/hicolor/scalable/apps/com.heroicgameslauncher.hgl.svg"
|
|
substituteInPlace "$out/share/applications/com.heroicgameslauncher.hgl.desktop" \
|
|
--replace-fail "Exec=heroic-run --ozone-platform-hint=auto" "Exec=heroic"
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru = {
|
|
inherit epic-integration legendary;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Native GOG, Epic, and Amazon Games Launcher for Linux, Windows and Mac";
|
|
homepage = "https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher";
|
|
changelog = "https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher/releases/tag/v${finalAttrs.version}";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ aidalgol ];
|
|
# Heroic may work on nix-darwin, but it needs a dedicated maintainer for the platform.
|
|
# It may also work on other Linux targets, but all the game stores only
|
|
# support x86 Linux, so it would require extra hacking to run games via QEMU
|
|
# user emulation. Upstream provide Linux builds only for x86_64.
|
|
platforms = [ "x86_64-linux" ];
|
|
mainProgram = "heroic";
|
|
};
|
|
})
|