eternal-terminal: fix build w/glibc-2.34

Failing Hydra build: https://hydra.nixos.org/build/154077447
main
Maximilian Bosch 3 years ago
parent c2050675d6
commit b770794ce3
No known key found for this signature in database
GPG Key ID: 091DBF4D1FC46B8E
  1. 7
      pkgs/tools/networking/eternal-terminal/default.nix

@ -7,6 +7,7 @@
, openssl
, protobuf
, zlib
, catch2
}:
stdenv.mkDerivation rec {
@ -20,6 +21,10 @@ stdenv.mkDerivation rec {
hash = "sha256-cCZbG0CD5V/FTj1BuVr083EJ+BCgIcKHomNtpJb3lOo=";
};
preBuild = ''
cp ${catch2}/include/catch2/catch.hpp ../external_imported/Catch2/single_include/catch2/catch.hpp
'';
nativeBuildInputs = [
cmake
];
@ -42,6 +47,8 @@ stdenv.mkDerivation rec {
"-std=c++17"
];
doCheck = true;
meta = with lib; {
description = "Remote shell that automatically reconnects without interrupting the session";
homepage = "https://eternalterminal.dev/";

Loading…
Cancel
Save