libevdevc: disable fortify3 hardening flag

+3
+3
pkgs/os-specific/linux/libevdevc/default.nix
··· 19 20 makeFlags = [ "DESTDIR=$(out)" "LIBDIR=/lib" ]; 21 22 meta = with lib; { 23 description = "ChromiumOS libevdev. Renamed to avoid conflicts with the standard libevdev found in Linux distros"; 24 license = licenses.bsd3;
··· 19 20 makeFlags = [ "DESTDIR=$(out)" "LIBDIR=/lib" ]; 21 22 + # causes redefinition of _FORTIFY_SOURCE 23 + hardeningDisable = [ "fortify3" ]; 24 + 25 meta = with lib; { 26 description = "ChromiumOS libevdev. Renamed to avoid conflicts with the standard libevdev found in Linux distros"; 27 license = licenses.bsd3;