mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 00:53:12 +03:00
Merge pull request #222015 from lasers/mymcplus
mymcplus: init at 3.0.5
This commit is contained in:
commit
b80586e5cf
33
pkgs/tools/games/mymcplus/default.nix
Normal file
33
pkgs/tools/games/mymcplus/default.nix
Normal 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; [ ];
|
||||
};
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user