summary refs log tree commit diff
path: root/pkgs/development/libraries/bulletml
diff options
context:
space:
mode:
authorFrancesco Gazzetta <fgaz@users.noreply.github.com>2018-06-02 10:45:02 +0200
committerxeji <36407913+xeji@users.noreply.github.com>2018-06-02 10:45:02 +0200
commit799a461b9ea5175e859613667a803f46b52ba494 (patch)
treec9628f12a77fd2a212d6c3f9a18121b72616d4c9 /pkgs/development/libraries/bulletml
parent9290905b3abb975323017a748b9dbae8f56f3e0d (diff)
downloadnixpkgs-799a461b9ea5175e859613667a803f46b52ba494.tar
nixpkgs-799a461b9ea5175e859613667a803f46b52ba494.tar.gz
nixpkgs-799a461b9ea5175e859613667a803f46b52ba494.tar.bz2
nixpkgs-799a461b9ea5175e859613667a803f46b52ba494.tar.lz
nixpkgs-799a461b9ea5175e859613667a803f46b52ba494.tar.xz
nixpkgs-799a461b9ea5175e859613667a803f46b52ba494.tar.zst
nixpkgs-799a461b9ea5175e859613667a803f46b52ba494.zip
bulletml: fix build failure due to -Wformat-security (#41387)
Some files are built with -Wno-format, which is not compatible with the
default hardening setting of -Wformat-security in Nixpkgs.
Diffstat (limited to 'pkgs/development/libraries/bulletml')
-rw-r--r--pkgs/development/libraries/bulletml/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/libraries/bulletml/default.nix b/pkgs/development/libraries/bulletml/default.nix
index 240cc057a82..b61ac1dcb09 100644
--- a/pkgs/development/libraries/bulletml/default.nix
+++ b/pkgs/development/libraries/bulletml/default.nix
@@ -38,6 +38,7 @@ in stdenv.mkDerivation {
     "-C src"
   ];
   nativeBuildInputs = [ bison perl ];
+  hardeningDisable = [ "format" ];
 
   installPhase = ''
     install -D -m 644 src/bulletml.d "$out"/include/d/bulletml.d