nixpkgs/pkgs/games/legendary-gl/default.nix

30 lines
648 B
Nix
Raw Normal View History

{ lib
, fetchFromGitHub
, buildPythonApplication
, pythonOlder
, requests
}:
buildPythonApplication rec {
pname = "legendary-gl"; # Name in pypi
2020-10-19 05:10:02 +00:00
version = "0.20.1";
src = fetchFromGitHub {
owner = "derrod";
repo = "legendary";
rev = version;
2020-10-19 05:10:02 +00:00
sha256 = "0kdrhdvh9gxq1zinh5w852f5fjls9902pcrkhkhm2c0vvq7jfass";
};
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 ];
};
}