From ad9376dc74e1e67a2391d1ba7afb23892906afde Mon Sep 17 00:00:00 2001 From: Robin Gloster Date: Tue, 5 Apr 2016 16:49:28 +0000 Subject: [PATCH] hunspell: disable format hardening --- pkgs/development/libraries/hunspell/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/libraries/hunspell/default.nix b/pkgs/development/libraries/hunspell/default.nix index 98f6511f3917..14d36ef53157 100644 --- a/pkgs/development/libraries/hunspell/default.nix +++ b/pkgs/development/libraries/hunspell/default.nix @@ -11,6 +11,8 @@ stdenv.mkDerivation rec { propagatedBuildInputs = [ ncurses readline ]; configureFlags = "--with-ui --with-readline"; + hardeningDisable = [ "format" ]; + meta = with stdenv.lib; { homepage = http://hunspell.sourceforge.net; description = "Spell checker";