Merge pull request #89142 from wchresta/legendary-gl
legendary-gl: init at 0.0.14
This commit is contained in:
commit
2710fed815
30
pkgs/games/legendary-gl/default.nix
Normal file
30
pkgs/games/legendary-gl/default.nix
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{ lib
|
||||||
|
, fetchFromGitHub
|
||||||
|
, buildPythonApplication
|
||||||
|
, pythonOlder
|
||||||
|
, requests
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonApplication rec {
|
||||||
|
pname = "legendary-gl"; # Name in pypi
|
||||||
|
version = "0.0.14";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "derrod";
|
||||||
|
repo = "legendary";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "05r88qi8mmbj07wxcpb3fhbl40qscbq1aqb0mnj9bpmi9gf5zll5";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ requests ];
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.8";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A free and open-source Epic Games Launcher alternative";
|
||||||
|
homepage = "https://github.com/derrod/legendary";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = with maintainers; [ wchresta ];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -24552,6 +24552,8 @@ in
|
|||||||
|
|
||||||
leela-zero = libsForQt5.callPackage ../games/leela-zero { };
|
leela-zero = libsForQt5.callPackage ../games/leela-zero { };
|
||||||
|
|
||||||
|
legendary-gl = python38Packages.callPackage ../games/legendary-gl { };
|
||||||
|
|
||||||
lgogdownloader = callPackage ../games/lgogdownloader { };
|
lgogdownloader = callPackage ../games/lgogdownloader { };
|
||||||
|
|
||||||
liberal-crime-squad = callPackage ../games/liberal-crime-squad { };
|
liberal-crime-squad = callPackage ../games/liberal-crime-squad { };
|
||||||
|
Loading…
Reference in New Issue
Block a user