mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
35 lines
702 B
Nix
35 lines
702 B
Nix
{ 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
|
|
];
|
|
|
|
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; [ ];
|
|
};
|
|
}
|