mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-29 00:04:14 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
112 lines
2.7 KiB
Nix
112 lines
2.7 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
writeText,
|
|
fetchurl,
|
|
upx,
|
|
libGL,
|
|
libGLU,
|
|
glib,
|
|
gtk2,
|
|
alsa-lib,
|
|
libSM,
|
|
libX11,
|
|
gdk-pixbuf,
|
|
pango,
|
|
libXinerama,
|
|
mpg123,
|
|
runtimeShell,
|
|
}:
|
|
|
|
let
|
|
libPath = lib.makeLibraryPath [
|
|
stdenv.cc.cc
|
|
libGL
|
|
libGLU
|
|
glib
|
|
gtk2
|
|
alsa-lib
|
|
libSM
|
|
libX11
|
|
gdk-pixbuf
|
|
pango
|
|
libXinerama
|
|
];
|
|
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "kega-fusion";
|
|
version = "3.63x";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.carpeludum.com/download/Fusion363x.tar.gz";
|
|
sha256 = "14s6czy20h5khyy7q95hd7k77v17ssafv9l6lafkiysvj2nmw94g";
|
|
};
|
|
|
|
plugins = fetchurl {
|
|
url = "http://www.carpeludum.com/download/PluginsLinux.tar.gz";
|
|
sha256 = "0d623cvh6n5ijj3wb64g93mxx2xbichsn7hj7brbb0ndw5cs70qj";
|
|
};
|
|
|
|
runner = writeText "kega-fusion" ''
|
|
#!${runtimeShell} -ex
|
|
|
|
kega_libdir="@out@/lib/kega-fusion"
|
|
kega_localdir="$HOME/.Kega Fusion"
|
|
|
|
# create local plugins directory if not present
|
|
mkdir -p "$kega_localdir/Plugins"
|
|
|
|
# create links for every included plugin
|
|
if [ $(ls -1A $kega_libdir/plugins | wc -l) -gt 0 ]; then
|
|
for i in $kega_libdir/plugins/*; do
|
|
if [ ! -e "$kega_localdir/Plugins/$(basename "$i")" ]; then
|
|
ln -sf "$i" "$kega_localdir/Plugins/"
|
|
fi
|
|
done
|
|
fi
|
|
|
|
# copy configuration file if not present
|
|
if ! [ -f "$kega_localdir/Fusion.ini" ]; then
|
|
cat > "$kega_localdir/Fusion.ini" <<EOF
|
|
ALSADeviceName=default
|
|
libmpg123path=${lib.getLib mpg123}/lib/libmpg123.so.0
|
|
EOF
|
|
else
|
|
sed -i 's,^\(libmpg123path=\).*,\1${lib.getLib mpg123}/lib/libmpg123.so.0,' "$kega_localdir/Fusion.ini"
|
|
fi
|
|
|
|
# here we go!
|
|
exec "$kega_libdir/Fusion" "$@"
|
|
'';
|
|
|
|
dontStrip = true;
|
|
dontPatchELF = true;
|
|
|
|
nativeBuildInputs = [ upx ];
|
|
|
|
installPhase = ''
|
|
upx -d Fusion
|
|
install -Dm755 Fusion "$out/lib/kega-fusion/Fusion"
|
|
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" --set-rpath "${libPath}" "$out/lib/kega-fusion/Fusion"
|
|
|
|
tar -xaf $plugins
|
|
mkdir -p "$out/lib/kega-fusion/plugins"
|
|
cp -r Plugins/*.rpi "$out/lib/kega-fusion/plugins"
|
|
|
|
mkdir -p "$out/bin"
|
|
substitute "$runner" "$out/bin/kega-fusion" --subst-var out
|
|
chmod +x "$out/bin/kega-fusion"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Sega SG1000, SC3000, SF7000, Master System, Game Gear, Genesis/Megadrive, SVP, Pico, SegaCD/MegaCD and 32X emulator";
|
|
homepage = "https://www.carpeludum.com/kega-fusion/";
|
|
maintainers = with maintainers; [ abbradar ];
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
license = licenses.unfreeRedistributable;
|
|
platforms = [ "i686-linux" ];
|
|
mainProgram = "kega-fusion";
|
|
};
|
|
}
|