|
| 1 | +{ |
| 2 | + lib, |
| 3 | + stdenvNoCC, |
| 4 | + fetchurl, |
| 5 | + wrapGAppsHook3, |
| 6 | + autoPatchelfHook, |
| 7 | + alsa-lib, |
| 8 | + wayland, |
| 9 | + libxkbcommon, |
| 10 | + vulkan-loader, |
| 11 | + xorg, |
| 12 | + nix-update-script, |
| 13 | + xorgSupport ? stdenvNoCC.hostPlatform.isLinux, |
| 14 | +}: |
| 15 | +let |
| 16 | + pname = "ruffle-bin"; |
| 17 | + version = "nightly-2025-01-13"; |
| 18 | + passthru.updateScript = nix-update-script { extraArgs = [ "--version=unstable" ]; }; |
| 19 | + |
| 20 | + x86_64-linux = stdenvNoCC.mkDerivation (finalAttrs: { |
| 21 | + inherit |
| 22 | + pname |
| 23 | + version |
| 24 | + passthru |
| 25 | + meta |
| 26 | + ; |
| 27 | + |
| 28 | + src = fetchurl { |
| 29 | + url = "https://github.com/ruffle-rs/ruffle/releases/download/${finalAttrs.version}/ruffle-nightly-${ |
| 30 | + builtins.replaceStrings [ "-" ] [ "_" ] (lib.strings.removePrefix "nightly-" finalAttrs.version) |
| 31 | + }-linux-x86_64.tar.gz"; |
| 32 | + hash = "sha256-pn+3cWgMnH06VCBgRxVGB9Dx9Kxq5IAm6ytLa744OOY="; |
| 33 | + }; |
| 34 | + |
| 35 | + nativeBuildInputs = [ |
| 36 | + wrapGAppsHook3 |
| 37 | + autoPatchelfHook |
| 38 | + ]; |
| 39 | + |
| 40 | + buildInputs = [ |
| 41 | + alsa-lib # libasound.so.2 |
| 42 | + ]; |
| 43 | + |
| 44 | + runtimeDependencies = |
| 45 | + [ |
| 46 | + wayland |
| 47 | + libxkbcommon |
| 48 | + vulkan-loader |
| 49 | + ] |
| 50 | + ++ lib.optionals xorgSupport [ |
| 51 | + xorg.libX11 |
| 52 | + xorg.libXcursor |
| 53 | + xorg.libXi |
| 54 | + xorg.libxcb |
| 55 | + xorg.libXrender |
| 56 | + ]; |
| 57 | + |
| 58 | + sourceRoot = "."; |
| 59 | + |
| 60 | + installPhase = '' |
| 61 | + runHook preInstall |
| 62 | +
|
| 63 | + install -Dm755 -t $out/bin/ ruffle |
| 64 | + install -Dm644 -t $out/share/icons/hicolor/scalable/apps/ extras/rs.ruffle.Ruffle.svg |
| 65 | + install -Dm644 -t $out/share/applications/ extras/rs.ruffle.Ruffle.desktop |
| 66 | + install -Dm644 -t $out/share/metainfo/ extras/rs.ruffle.Ruffle.metainfo.xml |
| 67 | + install -Dm644 -t $out/share/doc/ruffle LICENSE.md |
| 68 | + install -Dm644 -t $out/share/doc/ruffle README.md |
| 69 | +
|
| 70 | + runHook postInstall |
| 71 | + ''; |
| 72 | + }); |
| 73 | + |
| 74 | + # TODO: Add Darwin support. |
| 75 | + darwin = null; |
| 76 | + |
| 77 | + meta = { |
| 78 | + description = "Nightly pre-built binary release of ruffle, the Adobe Flash Player emulator"; |
| 79 | + homepage = "https://ruffle.rs/"; |
| 80 | + license = [ |
| 81 | + lib.licenses.mit |
| 82 | + lib.licenses.asl20 |
| 83 | + ]; |
| 84 | + downloadPage = "https://ruffle.rs/downloads"; |
| 85 | + changelog = "https://github.com/ruffle-rs/ruffle/releases/tag/nightly-${version}"; |
| 86 | + maintainers = [ ]; |
| 87 | + platforms = lib.platforms.darwin ++ [ "x86_64-linux" ]; |
| 88 | + sourceProvenance = [ lib.sourceTypes.binaryNativeCode ]; |
| 89 | + mainProgram = "ruffle"; |
| 90 | + }; |
| 91 | +in |
| 92 | +if stdenvNoCC.hostPlatform.isDarwin then darwin else x86_64-linux |
0 commit comments