Unverified Commit e3927347 authored by TomaSajt's avatar TomaSajt
Browse files

heroic-unwrapped.legendary: 0.20.37 -> 0.20.39

parent beb8df36
Loading
Loading
Loading
Loading
+9 −10
Original line number Diff line number Diff line
@@ -4,19 +4,17 @@
  fetchFromGitHub,
  python3Packages,
}:
let
  version = "0.20.37";
in
python3Packages.buildPythonApplication {

python3Packages.buildPythonApplication (finalAttrs: {
  pname = "legendary-heroic";
  inherit version;
  version = "0.20.39";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "Heroic-Games-Launcher";
    repo = "legendary";
    rev = version;
    sha256 = "sha256-mOys7lOPrrzBUBMIM/JvKygFQ/qIGD68BDNigk5BCIo=";
    tag = finalAttrs.version;
    hash = "sha256-2+9MRbwugBlBdZQQo6BUcLmwCqVdTAv9CZ+sPu5VAxY=";
  };

  build-system = with python3Packages; [
@@ -25,11 +23,14 @@ python3Packages.buildPythonApplication {

  dependencies = with python3Packages; [
    requests
    requests-futures
    filelock
  ];

  pythonImportsCheck = [ "legendary" ];

  passthru.updateScript = gitUpdater { };

  meta = {
    description = "Free and open-source Epic Games Launcher alternative";
    longDescription = ''
@@ -40,6 +41,4 @@ python3Packages.buildPythonApplication {
    maintainers = [ ];
    mainProgram = "legendary";
  };

  passthru.updateScript = gitUpdater { };
}
})