nixpkgs/pkgs/games/rare/default.nix

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

52 lines
1.2 KiB
Nix
Raw Normal View History

2022-06-29 22:46:50 +00:00
{ lib, fetchFromGitHub, buildPythonApplication, qt5
2022-09-20 19:21:28 +00:00
, legendary-gl, pypresence, pyqt5, python, qtawesome, requests, typing-extensions }:
2022-03-19 04:03:14 +00:00
buildPythonApplication rec {
pname = "rare";
2022-11-04 21:35:32 +00:00
version = "1.9.3";
2022-03-19 04:03:14 +00:00
2022-06-29 22:46:50 +00:00
src = fetchFromGitHub {
owner = "Dummerle";
repo = "Rare";
rev = version;
2022-11-04 21:35:32 +00:00
sha256 = "sha256-M+OMsyamh4WHIx7Pv2sLylOrnSmYrv1aEm3atqXrDaw=";
2022-03-19 04:03:14 +00:00
};
nativeBuildInputs = [
qt5.wrapQtAppsHook
];
propagatedBuildInputs = [
2022-09-20 19:21:28 +00:00
legendary-gl
2022-03-19 04:03:14 +00:00
pypresence
pyqt5
qtawesome
requests
2022-09-20 19:21:28 +00:00
typing-extensions
2022-03-19 04:03:14 +00:00
];
2022-09-20 19:21:28 +00:00
patches = [ ./fix-instance.patch ];
2022-03-19 04:03:14 +00:00
2022-09-20 19:21:28 +00:00
dontWrapQtApps = true;
2022-03-19 04:03:14 +00:00
postInstall = ''
2022-06-29 22:46:50 +00:00
install -Dm644 misc/rare.desktop -t $out/share/applications/
install -Dm644 $out/${python.sitePackages}/rare/resources/images/Rare.png $out/share/pixmaps/rare.png
2022-03-19 04:03:14 +00:00
'';
preFixup = ''
makeWrapperArgs+=("''${qtWrapperArgs[@]}")
'';
# Project has no tests
doCheck = false;
meta = with lib; {
description = "GUI for Legendary, an Epic Games Launcher open source alternative";
homepage = "https://github.com/Dummerle/Rare";
maintainers = with maintainers; [ wolfangaukang ];
license = licenses.gpl3Only;
platforms = platforms.linux;
};
}