iscc: Fix running windows installers (#422488)

Artturin a54c5b72 089d6296

Changed files
+4
pkgs
by-name
is
+4
pkgs/by-name/is/iscc/package.nix
···
runHook postInstall
'';
+
# Stripping causes `$out/bin/Setup.e32` to lose something important and causes the built windows installers to not run on windows "This app can't run on your PC".
+
# They worked in wine but not on real windows.
+
dontStrip = 1;
+
meta = with lib; {
description = "Compiler for Inno Setup, a tool for creating Windows installers";
homepage = "https://jrsoftware.org/isinfo.php";