lol

zkfuse: add a -std=c++14 workaround for gcc-11

Otherwise the build fails as:

zkadapter.h:616:33: error: ISO C++17 does not allow dynamic exception specifications

+4
+4
pkgs/tools/filesystems/zkfuse/default.nix
··· 25 25 -e 's,"zookeeper\.h",<zookeeper/zookeeper.h>,' 26 26 ''; 27 27 28 + # c++17 (gcc-11's default) breaks the build as: 29 + # zkadapter.h:616:33: error: ISO C++17 does not allow dynamic exception specifications 30 + NIX_CFLAGS_COMPILE = [ "-std=c++14" ]; 31 + 28 32 installPhase = '' 29 33 mkdir -p $out/bin 30 34 cp -v src/zkfuse $out/bin