thunderbird: disable PaX mprotect() hardening

Otherwise, thunderbird crashes at startup due to a PaX mprotect()
violation.

Fixes https://github.com/NixOS/nixpkgs/issues/19403
This commit is contained in:
Joachim Fasting 2016-10-13 14:26:29 +02:00
parent c719a4c434
commit 16a917d5e2
No known key found for this signature in database
GPG key ID: 7544761007FE4E08

View file

@ -113,6 +113,11 @@ stdenv.mkDerivation rec {
EOF
'';
postFixup =
''
paxmark m $out/lib/thunderbird-${version}/thunderbird
'';
meta = with stdenv.lib; {
description = "A full-featured e-mail client";
homepage = http://www.mozilla.org/thunderbird/;