blob: 7a3c49fac7506b46dbb2f4a817ad17a777f2207b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
{ lib
, fetchFromSourcehut
, pythonPackages
, wrapGAppsHook3
}:
pythonPackages.buildPythonApplication rec {
pname = "mymcplus";
version = "3.0.5";
src = fetchFromSourcehut {
owner = "~thestr4ng3r";
repo = pname;
rev = "v${version}";
sha256 = "sha256-GFReOgM8zi5oyePpJm5HxtizUVqqUUINTRwyG/LGWB8=";
};
nativeBuildInputs = [
wrapGAppsHook3
];
propagatedBuildInputs = with pythonPackages; [
pyopengl
wxpython
];
meta = with lib; {
homepage = "https://git.sr.ht/~thestr4ng3r/mymcplus";
description = "A PlayStation 2 memory card manager";
mainProgram = "mymcplus";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ ];
};
}
|