depot/pkgs/applications/misc/minigalaxy/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

82 lines
1.6 KiB
Nix

{ lib
, fetchFromGitHub
, glibcLocales
, glib-networking
, gobject-introspection
, gtk3
, libnotify
, python3Packages
, steam-run
, substituteAll
, unzip
, webkitgtk_4_0
, wrapGAppsHook3
}:
python3Packages.buildPythonApplication rec {
pname = "minigalaxy";
version = "1.3.0";
src = fetchFromGitHub {
owner = "sharkwouter";
repo = "minigalaxy";
rev = "refs/tags/${version}";
hash = "sha256-CMPBKnNrcjHVpsbBjY97FiygEJNG9jKHR/LoVMfuxG4=";
};
patches = [
(substituteAll {
src = ./inject-launcher-steam-run.diff;
steamrun = lib.getExe steam-run;
})
];
postPatch = ''
substituteInPlace minigalaxy/installer.py \
--replace-fail '"unzip"' "\"${lib.getExe unzip}\"" \
--replace-fail "'unzip'" "\"${lib.getExe unzip}\""
'';
nativeBuildInputs = [
wrapGAppsHook3
gobject-introspection
];
buildInputs = [
glib-networking
gtk3
libnotify
];
nativeCheckInputs = with python3Packages; [
glibcLocales
pytestCheckHook
simplejson
];
preCheck = ''
export HOME=$(mktemp -d)
'';
pythonPath = [
python3Packages.pygobject3
python3Packages.requests
webkitgtk_4_0
];
dontWrapGApps = true;
preFixup = ''
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
'';
meta = with lib; {
homepage = "https://sharkwouter.github.io/minigalaxy/";
changelog = "https://github.com/sharkwouter/minigalaxy/blob/${version}/CHANGELOG.md";
downloadPage = "https://github.com/sharkwouter/minigalaxy/releases";
description = "Simple GOG client for Linux";
license = licenses.gpl3;
maintainers = [ ];
platforms = platforms.linux;
};
}