eternal-terminal: 6.1.9 -> 6.1.11

This commit is contained in:
Fabian Affolter 2022-01-14 22:58:41 +01:00
parent 031b296055
commit 48b494e35f

View File

@ -1,4 +1,5 @@
{ lib, stdenv
{ lib
, stdenv
, fetchFromGitHub
, cmake
, gflags
@ -10,32 +11,46 @@
stdenv.mkDerivation rec {
pname = "eternal-terminal";
version = "6.1.9";
version = "6.1.11";
src = fetchFromGitHub {
owner = "MisterTea";
repo = "EternalTerminal";
rev = "et-v${version}";
sha256 = "0kpabxpy779ppkaqaigq0x34ymz1jcwpsa78rm6nr55mdap2xxv6";
hash = "sha256-cCZbG0CD5V/FTj1BuVr083EJ+BCgIcKHomNtpJb3lOo=";
};
cmakeFlags= [
nativeBuildInputs = [
cmake
];
buildInputs = [
gflags
libsodium
openssl
protobuf
zlib
];
cmakeFlags = [
"-DDISABLE_VCPKG=TRUE"
"-DDISABLE_SENTRY=TRUE"
"-DDISABLE_CRASH_LOG=TRUE"
];
CXXFLAGS = lib.optional stdenv.cc.isClang "-std=c++17";
LDFLAGS = lib.optional stdenv.cc.isClang "-lc++fs";
CXXFLAGS = lib.optional stdenv.cc.isClang [
"-std=c++17"
];
nativeBuildInputs = [ cmake ];
buildInputs = [ gflags openssl zlib libsodium protobuf ];
LDFLAGS = lib.optional stdenv.cc.isClang [
"-lc++fs"
];
meta = with lib; {
description = "Remote shell that automatically reconnects without interrupting the session";
license = licenses.asl20;
homepage = "https://eternalterminal.dev/";
platforms = platforms.linux ++ platforms.darwin;
license = licenses.asl20;
maintainers = with maintainers; [ dezgeg pingiun ];
platforms = platforms.linux ++ platforms.darwin;
};
}