Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions pkgs/by-name/he/heroic-unwrapped/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
python3,
makeWrapper,
# Electron updates frequently break Heroic, so pin same version as upstream, or newest non-EOL.
electron_36,
electron_37,
vulkan-helper,
gogdl,
nile,
Expand All @@ -21,7 +21,7 @@ let
legendary = callPackage ./legendary.nix { };
epic-integration = callPackage ./epic-integration.nix { };
comet-gog = comet-gog_heroic;
electron = electron_36;
electron = electron_37;
in
stdenv.mkDerivation (finalAttrs: {
pname = "heroic-unwrapped";
Expand Down Expand Up @@ -119,12 +119,12 @@ stdenv.mkDerivation (finalAttrs: {
inherit epic-integration legendary;
};

meta = with lib; {
meta = {
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; [ iedame ];
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ iedame ];
# 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
Expand Down
Loading