lol

Merge pull request #155045 from fabaff/bump-eternal-terminal

eternal-terminal: 6.1.9 -> 6.1.11

authored by

Fabian Affolter and committed by
GitHub
5c48f3fd 38afc892

+25 -10
+25 -10
pkgs/tools/networking/eternal-terminal/default.nix
··· 1 - { lib, stdenv 2 , fetchFromGitHub 3 , cmake 4 , gflags ··· 10 11 stdenv.mkDerivation rec { 12 pname = "eternal-terminal"; 13 - version = "6.1.9"; 14 15 src = fetchFromGitHub { 16 owner = "MisterTea"; 17 repo = "EternalTerminal"; 18 rev = "et-v${version}"; 19 - sha256 = "0kpabxpy779ppkaqaigq0x34ymz1jcwpsa78rm6nr55mdap2xxv6"; 20 }; 21 22 - cmakeFlags= [ 23 "-DDISABLE_VCPKG=TRUE" 24 "-DDISABLE_SENTRY=TRUE" 25 "-DDISABLE_CRASH_LOG=TRUE" 26 ]; 27 28 - CXXFLAGS = lib.optional stdenv.cc.isClang "-std=c++17"; 29 - LDFLAGS = lib.optional stdenv.cc.isClang "-lc++fs"; 30 31 - nativeBuildInputs = [ cmake ]; 32 - buildInputs = [ gflags openssl zlib libsodium protobuf ]; 33 34 meta = with lib; { 35 description = "Remote shell that automatically reconnects without interrupting the session"; 36 - license = licenses.asl20; 37 homepage = "https://eternalterminal.dev/"; 38 - platforms = platforms.linux ++ platforms.darwin; 39 maintainers = with maintainers; [ dezgeg pingiun ]; 40 }; 41 }
··· 1 + { lib 2 + , stdenv 3 , fetchFromGitHub 4 , cmake 5 , gflags ··· 11 12 stdenv.mkDerivation rec { 13 pname = "eternal-terminal"; 14 + version = "6.1.11"; 15 16 src = fetchFromGitHub { 17 owner = "MisterTea"; 18 repo = "EternalTerminal"; 19 rev = "et-v${version}"; 20 + hash = "sha256-cCZbG0CD5V/FTj1BuVr083EJ+BCgIcKHomNtpJb3lOo="; 21 }; 22 23 + nativeBuildInputs = [ 24 + cmake 25 + ]; 26 + 27 + buildInputs = [ 28 + gflags 29 + libsodium 30 + openssl 31 + protobuf 32 + zlib 33 + ]; 34 + 35 + cmakeFlags = [ 36 "-DDISABLE_VCPKG=TRUE" 37 "-DDISABLE_SENTRY=TRUE" 38 "-DDISABLE_CRASH_LOG=TRUE" 39 ]; 40 41 + CXXFLAGS = lib.optional stdenv.cc.isClang [ 42 + "-std=c++17" 43 + ]; 44 45 + LDFLAGS = lib.optional stdenv.cc.isClang [ 46 + "-lc++fs" 47 + ]; 48 49 meta = with lib; { 50 description = "Remote shell that automatically reconnects without interrupting the session"; 51 homepage = "https://eternalterminal.dev/"; 52 + license = licenses.asl20; 53 maintainers = with maintainers; [ dezgeg pingiun ]; 54 + platforms = platforms.linux ++ platforms.darwin; 55 }; 56 }