nsis: don't disable stripping

This commit is contained in:
Dmitry Kalinkin 2019-03-14 12:56:03 -04:00
parent dc04edc6ae
commit f929120b1b
No known key found for this signature in database
GPG Key ID: 06AF1D3C38F04E0E

View File

@ -35,7 +35,6 @@ in stdenv.mkDerivation rec {
"APPEND_CPPPATH=${ZLIB_HOME}/include" "APPEND_CPPPATH=${ZLIB_HOME}/include"
"APPEND_LIBPATH=${ZLIB_HOME}/lib" "APPEND_LIBPATH=${ZLIB_HOME}/lib"
"NSIS_CONFIG_CONST_DATA=no" "NSIS_CONFIG_CONST_DATA=no"
"STRIP=no"
]; ];
preBuild = '' preBuild = ''
@ -45,8 +44,6 @@ in stdenv.mkDerivation rec {
prefixKey = "PREFIX="; prefixKey = "PREFIX=";
installTargets = "install-compiler"; installTargets = "install-compiler";
dontStrip = true;
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "NSIS is a free scriptable win32 installer/uninstaller system that doesn't suck and isn't huge"; description = "NSIS is a free scriptable win32 installer/uninstaller system that doesn't suck and isn't huge";
homepage = https://nsis.sourceforge.io/; homepage = https://nsis.sourceforge.io/;