Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

legendary-gl: 0.20.1 -> 0.20.6 #110823

Merged
merged 3 commits into from Jan 31, 2021
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 7 additions & 3 deletions pkgs/games/legendary-gl/default.nix
Expand Up @@ -7,23 +7,27 @@

buildPythonApplication rec {
pname = "legendary-gl"; # Name in pypi
version = "0.20.1";
version = "0.20.6";

src = fetchFromGitHub {
owner = "derrod";
repo = "legendary";
rev = version;
sha256 = "0kdrhdvh9gxq1zinh5w852f5fjls9902pcrkhkhm2c0vvq7jfass";
sha256 = "1v6jbnasz2ilcafs6qyl6na4a8cxy2lgwr0hqsja6d846rfqa8ad";
};

propagatedBuildInputs = [ requests ];

disabled = pythonOlder "3.8";

doCheck = false;
SuperSandro2000 marked this conversation as resolved.
Show resolved Hide resolved
SuperSandro2000 marked this conversation as resolved.
Show resolved Hide resolved
SuperSandro2000 marked this conversation as resolved.
Show resolved Hide resolved
SuperSandro2000 marked this conversation as resolved.
Show resolved Hide resolved

pythonImportsCheck = [ "legendary" ];

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 ];
maintainers = with maintainers; [ wchresta equirosa ];
};
}