1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 11:40:45 +00:00
nixpkgs/pkgs/games/legendary-gl/default.nix

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

43 lines
872 B
Nix
Raw Normal View History

{ lib
2022-12-28 20:22:02 +00:00
, gitUpdater
, fetchFromGitHub
, buildPythonApplication
, pythonOlder
, requests
2023-07-31 03:45:35 +01:00
, filelock
}:
buildPythonApplication rec {
pname = "legendary-gl"; # Name in pypi
version = "0.20.34";
src = fetchFromGitHub {
owner = "derrod";
repo = "legendary";
rev = "56d439ed2d3d9f34e2b08fa23e627c23a487b8d6";
sha256 = "sha256-yCHeeEGw+9gtRMGyIhbStxJhmSM/1Fqly7HSRDkZILQ=";
};
2023-07-31 03:45:35 +01:00
propagatedBuildInputs = [
requests
filelock
];
disabled = pythonOlder "3.8";
# no tests
doCheck = false;
pythonImportsCheck = [ "legendary" ];
meta = with lib; {
description = "Free and open-source Epic Games Launcher alternative";
homepage = "https://github.com/derrod/legendary";
license = licenses.gpl3;
maintainers = with maintainers; [ equirosa ];
2024-01-18 00:31:05 +00:00
mainProgram = "legendary";
};
2022-12-28 20:21:51 +00:00
2022-12-28 20:22:02 +00:00
passthru.updateScript = gitUpdater { };
}