summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2016-08-29 17:00:34 +0000
committerRobin Gloster <mail@glob.in>2016-08-29 17:00:34 +0000
commit6541dfe5543bdd51e8c746681fcbf221affb7670 (patch)
tree8f7efd7cf3806a5d14d851dfe02c2e1ef55248b1
parent6a04de991c3a5bf76caaa19f34adb77f6b072c51 (diff)
downloadnixpkgs-6541dfe5543bdd51e8c746681fcbf221affb7670.tar
nixpkgs-6541dfe5543bdd51e8c746681fcbf221affb7670.tar.gz
nixpkgs-6541dfe5543bdd51e8c746681fcbf221affb7670.tar.bz2
nixpkgs-6541dfe5543bdd51e8c746681fcbf221affb7670.tar.lz
nixpkgs-6541dfe5543bdd51e8c746681fcbf221affb7670.tar.xz
nixpkgs-6541dfe5543bdd51e8c746681fcbf221affb7670.tar.zst
nixpkgs-6541dfe5543bdd51e8c746681fcbf221affb7670.zip
wxGTK: disable format hardening
-rw-r--r--pkgs/development/libraries/wxGTK-2.8/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/libraries/wxGTK-2.8/default.nix b/pkgs/development/libraries/wxGTK-2.8/default.nix
index e023665f070..7396b700955 100644
--- a/pkgs/development/libraries/wxGTK-2.8/default.nix
+++ b/pkgs/development/libraries/wxGTK-2.8/default.nix
@@ -21,6 +21,8 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ pkgconfig ];
 
+  hardeningDisable = [ "format" ];
+
   configureFlags = [
     "--enable-gtk2"
     (if compat24 then "--enable-compat24" else "--disable-compat24")