mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
34 lines
702 B
Nix
34 lines
702 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 = with maintainers; [ ];
|
|
};
|
|
}
|