mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
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.
This commit is contained in:
parent
9290905b3a
commit
799a461b9e
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user