mymcplus: init at 3.0.5

This commit is contained in:
lasers 2023-03-19 07:43:19 -05:00
parent 8f50bc71bd
commit 2683d63d7f
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{ lib
, fetchFromSourcehut
, pythonPackages
, wrapGAppsHook
}:
pythonPackages.buildPythonApplication rec {
pname = "mymcplus";
version = "3.0.5";
src = fetchFromSourcehut {
owner = "~thestr4ng3r";
repo = pname;
rev = "v${version}";
sha256 = "sha256-GFReOgM8zi5oyePpJm5HxtizUVqqUUINTRwyG/LGWB8=";
};
nativeBuildInputs = [
wrapGAppsHook
];
propagatedBuildInputs = with pythonPackages; [
pyopengl
wxPython_4_2
];
meta = with lib; {
homepage = "https://git.sr.ht/~thestr4ng3r/mymcplus";
description = "A PlayStation 2 memory card manager";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ ];
};
}

View file

@ -1645,6 +1645,8 @@ with pkgs;
mpy-utils = python3Packages.callPackage ../tools/misc/mpy-utils { };
mymcplus = python3Packages.callPackage ../tools/games/mymcplus { };
networkd-notify = python3Packages.callPackage ../tools/networking/networkd-notify {
systemd = pkgs.systemd;
};