mympd: disable fortify3 hardening flag
This commit is contained in:
parent
c3217f1f80
commit
8e6d31c9c9
1 changed files with 6 additions and 2 deletions
|
@ -51,8 +51,12 @@ stdenv.mkDerivation rec {
|
|||
# similarly here
|
||||
"-DCMAKE_INSTALL_LOCALSTATEDIR=/var/lib/mympd"
|
||||
];
|
||||
# See https://github.com/jcorporation/myMPD/issues/315
|
||||
hardeningDisable = [ "strictoverflow" ];
|
||||
hardeningDisable = [
|
||||
# See https://github.com/jcorporation/myMPD/issues/315
|
||||
"strictoverflow"
|
||||
# causes redefinition of _FORTIFY_SOURCE
|
||||
"fortify3"
|
||||
];
|
||||
|
||||
meta = {
|
||||
homepage = "https://jcorporation.github.io/myMPD";
|
||||
|
|
Loading…
Reference in a new issue