nixpkgs/pkgs/games/rare/default.nix

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

66 lines
1.3 KiB
Nix
Raw Normal View History

{ lib
, fetchFromGitHub
, buildPythonApplication
, qt5
, legendary-gl
, pypresence
, pyqt5
, python
, qtawesome
, requests
, typing-extensions
}:
2022-03-19 04:03:14 +00:00
buildPythonApplication rec {
pname = "rare";
2022-12-29 09:28:34 +00:00
version = "1.9.4";
2022-03-19 04:03:14 +00:00
2022-06-29 22:46:50 +00:00
src = fetchFromGitHub {
owner = "Dummerle";
repo = "Rare";
2022-12-29 09:28:34 +00:00
rev = "refs/tags/${version}";
sha256 = "sha256-+STwVsDdvjP7HaqmaQVug+6h0n0rw/j4LGQQSNdLVQQ=";
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
];
patches = [
./fix-instance.patch
# Not able to run pythonRelaxDepsHook because of https://github.com/NixOS/nixpkgs/issues/198342
./legendary-gl-version.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;
};
}