libevdevc: disable fortify3 hardening flag

This commit is contained in:
Robert Scott 2023-07-09 17:27:23 +01:00
parent 7d687c1d64
commit c3217f1f80

View File

@ -19,6 +19,9 @@ stdenv.mkDerivation rec {
makeFlags = [ "DESTDIR=$(out)" "LIBDIR=/lib" ];
# causes redefinition of _FORTIFY_SOURCE
hardeningDisable = [ "fortify3" ];
meta = with lib; {
description = "ChromiumOS libevdev. Renamed to avoid conflicts with the standard libevdev found in Linux distros";
license = licenses.bsd3;