libevdevc: disable fortify3 hardening flag

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