# Install Sandboxie-Plus { pkgs, makeFilesISO, ... }: let installer = pkgs.fetchurl { url = "https://github.com/sandboxie-plus/Sandboxie/releases/download/v1.15.6/Sandboxie-Plus-x64-v1.15.6.exe"; hash = "sha256-0VQXy9rFCJCfVyHLJYXe/s6imcwEZugsNOKMhUoLUVM="; }; in { name = "sandboxie"; cdroms = [ (makeFilesISO { name = "sandboxie"; files = [ installer ]; }) ]; auditScript = '' @echo off echo Installing Sandboxie-Plus... start /wait D:\Sandboxie-Plus-x64-v1.15.6.exe /VERYSILENT /SUPPRESSMSGBOXES /NORESTART /MERGETASKS="!desktopicon" ''; }