From bddf3c477ddc339bb05e65d6abc9be8c9b1e4a5b Mon Sep 17 00:00:00 2001 From: ash Date: Tue, 14 Mar 2023 17:38:01 +0000 Subject: [PATCH] xivlauncher: add explicit dependency on aria2 --- pkgs/games/xivlauncher/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/games/xivlauncher/default.nix b/pkgs/games/xivlauncher/default.nix index 888a8fe53f5b..3bb6ba67d03c 100644 --- a/pkgs/games/xivlauncher/default.nix +++ b/pkgs/games/xivlauncher/default.nix @@ -44,6 +44,9 @@ in --replace 'exec' 'exec ${steam-run}/bin/steam-run' '' + '' wrapProgram $out/bin/XIVLauncher.Core --prefix GST_PLUGIN_SYSTEM_PATH_1_0 ":" "$GST_PLUGIN_SYSTEM_PATH_1_0" + # the reference to aria2 gets mangled as UTF-16LE and isn't detectable by nix: https://github.com/NixOS/nixpkgs/issues/220065 + mkdir -p $out/nix-support + echo ${aria2} >> $out/nix-support/depends ''; executables = [ "XIVLauncher.Core" ];