eternal-terminal: fix build w/glibc-2.34

Failing Hydra build: https://hydra.nixos.org/build/154077447

+7
+7
pkgs/tools/networking/eternal-terminal/default.nix
··· 7 7 , openssl 8 8 , protobuf 9 9 , zlib 10 + , catch2 10 11 }: 11 12 12 13 stdenv.mkDerivation rec { ··· 19 20 rev = "et-v${version}"; 20 21 hash = "sha256-cCZbG0CD5V/FTj1BuVr083EJ+BCgIcKHomNtpJb3lOo="; 21 22 }; 23 + 24 + preBuild = '' 25 + cp ${catch2}/include/catch2/catch.hpp ../external_imported/Catch2/single_include/catch2/catch.hpp 26 + ''; 22 27 23 28 nativeBuildInputs = [ 24 29 cmake ··· 41 46 CXXFLAGS = lib.optional stdenv.cc.isClang [ 42 47 "-std=c++17" 43 48 ]; 49 + 50 + doCheck = true; 44 51 45 52 meta = with lib; { 46 53 description = "Remote shell that automatically reconnects without interrupting the session";