vrcx: 2025-01-27T00.10-0ee8137 -> 2025.01.31 (#379068)

authored by scrumplex.net and committed by GitHub 89317eb2 e640dcc3

+7 -5
+7 -5
pkgs/by-name/vr/vrcx/package.nix
··· 6 6 }: 7 7 let 8 8 pname = "vrcx"; 9 - version = "2025-01-27T00.10-0ee8137"; 9 + version = "2025.01.31"; 10 + filename = builtins.replaceStrings [ "." ] [ "" ] version; 10 11 src = fetchurl { 11 - url = "https://github.com/Natsumi-sama/VRCX/releases/download/${version}/VRCX_${version}.AppImage"; 12 - hash = "sha256-kaQOME3jBLr7QJjc7rubNqFu3z+LmiP+UHe2EWYC7ek="; 12 + hash = "sha256-hrAsy/yv8GW0mIDA5PJLUs4EYNufPiOplLlmb9pFwX4="; 13 + url = "https://github.com/vrcx-team/VRCX/releases/download/v${version}/VRCX_${filename}.AppImage"; 13 14 }; 14 15 appimageContents = appimageTools.extract { 15 16 inherit pname src version; ··· 19 20 inherit pname version src; 20 21 extraPkgs = pkgs: [ dotnet-runtime ]; 21 22 extraInstallCommands = '' 22 - install -m 444 -D ${appimageContents}/vrcx.desktop $out/share/applications/vrcx.desktop 23 + install -m 444 -D ${appimageContents}/vrcx.desktop \ 24 + $out/share/applications/vrcx.desktop 23 25 install -m 444 -D ${appimageContents}/usr/share/icons/hicolor/256x256/apps/vrcx.png \ 24 26 $out/share/icons/hicolor/256x256/apps/vrcx.png 27 + 25 28 substituteInPlace $out/share/applications/vrcx.desktop \ 26 29 --replace-fail 'Exec=AppRun' 'Exec=${pname}' 27 - # Fix icon path 28 30 substituteInPlace $out/share/applications/vrcx.desktop \ 29 31 --replace-fail 'Icon=VRCX' "Icon=$out/share/icons/hicolor/256x256/apps/vrcx.png" 30 32 '';