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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
795 B
Nix
Raw Normal View History

{ lib
2022-12-28 20:22:02 +00:00
, gitUpdater
, fetchFromGitHub
, buildPythonApplication
, pythonOlder
, requests
}:
buildPythonApplication rec {
pname = "legendary-gl"; # Name in pypi
2022-12-28 19:56:36 +00:00
version = "0.20.31";
src = fetchFromGitHub {
owner = "derrod";
repo = "legendary";
2022-06-02 06:14:49 +00:00
rev = "refs/tags/${version}";
2022-12-28 19:56:36 +00:00
sha256 = "sha256-XxCYL41xhtJ2z1Ps2ANTbzi4/PZu7lo78cRbr6R4iTM=";
};
propagatedBuildInputs = [ requests ];
disabled = pythonOlder "3.8";
# no tests
doCheck = false;
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; [ equirosa ];
};
2022-12-28 20:22:02 +00:00
passthru.updateScript = gitUpdater { };
}