haskellPackages: remove unnecessary hardening handling

This commit is contained in:
Robin Gloster 2016-02-21 11:41:04 +00:00
parent 1eed9435d5
commit 23b4e6e19d

View File

@ -45,7 +45,6 @@
, checkPhase ? "", preCheck ? "", postCheck ? ""
, preFixup ? "", postFixup ? ""
, shellHook ? ""
, hardening_fortify ? true
, coreSetup ? false # Use only core packages to build Setup.hs.
, useCpphs ? false
} @ args:
@ -320,6 +319,5 @@ stdenv.mkDerivation ({
// optionalAttrs (preFixup != "") { inherit preFixup; }
// optionalAttrs (postFixup != "") { inherit postFixup; }
// optionalAttrs (dontStrip) { inherit dontStrip; }
// optionalAttrs (!hardening_fortify) { inherit hardening_fortify; }
// optionalAttrs (stdenv.isLinux) { LOCALE_ARCHIVE = "${glibcLocales}/lib/locale/locale-archive"; }
)