about summary refs log tree commit diff
path: root/pkgs/tools/games
diff options
context:
space:
mode:
authorKira Bruneau <kira.bruneau@pm.me>2023-06-14 15:40:40 -0400
committerGitHub <noreply@github.com>2023-06-14 15:40:40 -0400
commitb80586e5cfa435e451c368aca4f9fbbaa4f2eaa9 (patch)
tree3036584e91df602bf16bb20619d5ead42366e407 /pkgs/tools/games
parent6fe245d92cd0b5cb1e3ddb3eced13d8a248e0ba5 (diff)
parent2683d63d7f62971a69c60b5c6e46e1b391d3bbb4 (diff)
downloadnixlib-b80586e5cfa435e451c368aca4f9fbbaa4f2eaa9.tar
nixlib-b80586e5cfa435e451c368aca4f9fbbaa4f2eaa9.tar.gz
nixlib-b80586e5cfa435e451c368aca4f9fbbaa4f2eaa9.tar.bz2
nixlib-b80586e5cfa435e451c368aca4f9fbbaa4f2eaa9.tar.lz
nixlib-b80586e5cfa435e451c368aca4f9fbbaa4f2eaa9.tar.xz
nixlib-b80586e5cfa435e451c368aca4f9fbbaa4f2eaa9.tar.zst
nixlib-b80586e5cfa435e451c368aca4f9fbbaa4f2eaa9.zip
Merge pull request #222015 from lasers/mymcplus
mymcplus: init at 3.0.5
Diffstat (limited to 'pkgs/tools/games')
-rw-r--r--pkgs/tools/games/mymcplus/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/tools/games/mymcplus/default.nix b/pkgs/tools/games/mymcplus/default.nix
new file mode 100644
index 000000000000..38908c5dd6f8
--- /dev/null
+++ b/pkgs/tools/games/mymcplus/default.nix
@@ -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; [ ];
+  };
+}