Skip to content

Commit

Permalink
Merge pull request #222015 from lasers/mymcplus
Browse files Browse the repository at this point in the history
mymcplus: init at 3.0.5
  • Loading branch information
kira-bruneau committed Jun 14, 2023
2 parents 6fe245d + 2683d63 commit b80586e
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
33 changes: 33 additions & 0 deletions pkgs/tools/games/mymcplus/default.nix
Original file line number Diff line number Diff line change
@@ -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; [ ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1691,6 +1691,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;
};
Expand Down

0 comments on commit b80586e

Please sign in to comment.