heroic: 1.10.3 -> 2.0.2
This commit is contained in:
parent
a5ccf0b064
commit
c2fc2a373d
1 changed files with 9 additions and 4 deletions
|
@ -1,16 +1,17 @@
|
|||
{ lib, fetchurl, appimageTools, python }:
|
||||
{ lib, fetchurl, appimageTools, python, gsettings-desktop-schemas, gtk3 }:
|
||||
|
||||
let
|
||||
pname = "heroic";
|
||||
version = "1.10.3";
|
||||
version = "2.0.2";
|
||||
name = "${pname}-${version}";
|
||||
src = fetchurl {
|
||||
url = "https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher/releases/download/v${version}/Heroic-${version}.AppImage";
|
||||
sha256 = "sha256-0VQ5rSGGsEAsOLB4H/Hn2w7wCOrCSoVFzCBqNV5NyVE=";
|
||||
sha256 = "sha256-4gq0ZCcPIx/CkFNZTM5Atkd/GP6v1t3MO2tibrKkcZQ=";
|
||||
};
|
||||
appimageContents = appimageTools.extractType2 { inherit name src; };
|
||||
|
||||
in appimageTools.wrapType2 {
|
||||
in
|
||||
appimageTools.wrapType2 {
|
||||
inherit name src;
|
||||
|
||||
extraInstallCommands = ''
|
||||
|
@ -28,6 +29,10 @@ in appimageTools.wrapType2 {
|
|||
--replace 'Exec=AppRun' 'Exec=heroic'
|
||||
'';
|
||||
|
||||
profile = ''
|
||||
export XDG_DATA_DIRS=${gsettings-desktop-schemas}/share/gsettings-schemas/${gsettings-desktop-schemas.name}:${gtk3}/share/gsettings-schemas/${gtk3.name}:$XDG_DATA_DIRS
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A Native GUI Epic Games Launcher for Linux, Windows and Mac";
|
||||
homepage = "https://github.com/Heroic-Games-Launcher/HeroicGamesLauncher";
|
||||
|
|
Loading…
Reference in a new issue