forked from mirrors/nixpkgs
eternal-terminal: fix build w/glibc-2.34
Failing Hydra build: https://hydra.nixos.org/build/154077447
This commit is contained in:
parent
c2050675d6
commit
b770794ce3
|
@ -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…
Reference in a new issue