15 stdenv.mkDerivation rec {
16 pname = "eternal-terminal";
19 src = fetchFromGitHub {
21 repo = "EternalTerminal";
22 tag = "et-v${version}";
23 hash = "sha256-vukh3a6SxHaVCT4hmoVt4hEGB8Sqylu53Nz8fgBWkTM";
39 mkdir -p ../external_imported/Catch2/single_include/catch2
40 cp ${catch2}/include/catch2/catch.hpp ../external_imported/Catch2/single_include/catch2/catch.hpp
44 "-DDISABLE_VCPKG=TRUE"
45 "-DDISABLE_SENTRY=TRUE"
46 "-DDISABLE_CRASH_LOG=TRUE"
49 CXXFLAGS = lib.optionals stdenv.cc.isClang [
56 description = "Remote shell that automatically reconnects without interrupting the session";
57 homepage = "https://eternalterminal.dev/";
58 changelog = "https://github.com/MisterTea/EternalTerminal/releases/tag/et-v${version}";
59 license = licenses.asl20;
60 maintainers = with maintainers; [
64 platforms = platforms.linux ++ platforms.darwin;