nixpkgs/pkgs/tools/games/mymcplus/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

35 lines
684 B
Nix

{ 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 = "PlayStation 2 memory card manager";
mainProgram = "mymcplus";
license = licenses.gpl3Plus;
maintainers = [ ];
};
}