mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
920add2760
Resolves #350756
63 lines
1.5 KiB
Nix
63 lines
1.5 KiB
Nix
{ lib
|
|
, fetchurl
|
|
, fsuae
|
|
, gettext
|
|
, python3Packages
|
|
, stdenv
|
|
, libsForQt5
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "fs-uae-launcher";
|
|
version = "3.1.70";
|
|
|
|
src = fetchurl {
|
|
url = "https://fs-uae.net/files/FS-UAE-Launcher/Stable/${finalAttrs.version}/fs-uae-launcher-${finalAttrs.version}.tar.xz";
|
|
hash = "sha256-yvJ8sa44V13SEUJ6C9SgS+N2ZFH5+20TTL2ICY9A36c=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
gettext
|
|
python3Packages.python
|
|
libsForQt5.wrapQtAppsHook
|
|
];
|
|
|
|
buildInputs = with python3Packages; [
|
|
pyqt5
|
|
requests
|
|
setuptools
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
makeFlags = [ "prefix=$(out)" ];
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py \
|
|
--replace-fail "distutils.core" "setuptools"
|
|
'';
|
|
|
|
preFixup = ''
|
|
wrapQtApp "$out/bin/fs-uae-launcher" \
|
|
--set PYTHONPATH "$PYTHONPATH"
|
|
|
|
# fs-uae-launcher search side by side for executables and shared files
|
|
# see $src/fsgs/plugins/pluginexecutablefinder.py#find_executable
|
|
ln -s ${fsuae}/bin/fs-uae $out/bin
|
|
ln -s ${fsuae}/bin/fs-uae-device-helper $out/bin
|
|
ln -s ${fsuae}/share/fs-uae $out/share/fs-uae
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://fs-uae.net";
|
|
description = "Graphical front-end for the FS-UAE emulator";
|
|
license = lib.licenses.gpl2Plus;
|
|
mainProgram = "fs-uae-launcher";
|
|
maintainers = with lib.maintainers; [ sander AndersonTorres ];
|
|
platforms = with lib.systems.inspect;
|
|
patternLogicalAnd patterns.isx86 patterns.isLinux;
|
|
};
|
|
})
|