iscc: Fix running windows installers

Fix found by AleXoundOS

> I figured out what caused the problem! By default, mkDerivation uses strip operations for all binaries in $out/bin,
> what caused $out/bin/Setup.e32 file to become stripped and lose some crucial parts which must be copied to resulting installer executable.
> Adding dontStrip = 1 fixes the problem.

Co-authored-by: Alexander Tomokhov <alexoundos@gmail.com>

Artturin fb0ddcb0 d30c21d3

+4
+4
pkgs/by-name/is/iscc/package.nix
··· 53 53 runHook postInstall 54 54 ''; 55 55 56 + # 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". 57 + # They worked in wine but not on real windows. 58 + dontStrip = 1; 59 + 56 60 meta = with lib; { 57 61 description = "Compiler for Inno Setup, a tool for creating Windows installers"; 58 62 homepage = "https://jrsoftware.org/isinfo.php";