Merge pull request #308918 from jshort/6.2.8

eternal-terminal: 6.2.4 -> 6.2.8

authored by Peder Bergebakken Sundt and committed by GitHub 264fca5f bee44a8c

+9 -3
+5
maintainers/maintainer-list.nix
··· 10052 githubId = 107689; 10053 name = "Josh Holland"; 10054 }; 10055 jsierles = { 10056 email = "joshua@hey.com"; 10057 matrix = "@jsierles:matrix.org";
··· 10052 githubId = 107689; 10053 name = "Josh Holland"; 10054 }; 10055 + jshort = { 10056 + github = "jshort"; 10057 + githubId = 1186444; 10058 + name = "James Short"; 10059 + }; 10060 jsierles = { 10061 email = "joshua@hey.com"; 10062 matrix = "@jsierles:matrix.org";
+4 -3
pkgs/tools/networking/eternal-terminal/default.nix
··· 12 13 stdenv.mkDerivation rec { 14 pname = "eternal-terminal"; 15 - version = "6.2.4"; 16 17 src = fetchFromGitHub { 18 owner = "MisterTea"; 19 repo = "EternalTerminal"; 20 rev = "refs/tags/et-v${version}"; 21 - hash = "sha256-9W9Pz0VrFU+HNpf98I3CLrn8+kpjjNLOUK8gGcDJcI8="; 22 }; 23 24 nativeBuildInputs = [ ··· 34 ]; 35 36 preBuild = '' 37 cp ${catch2}/include/catch2/catch.hpp ../external_imported/Catch2/single_include/catch2/catch.hpp 38 ''; 39 ··· 54 homepage = "https://eternalterminal.dev/"; 55 changelog = "https://github.com/MisterTea/EternalTerminal/releases/tag/et-v${version}"; 56 license = licenses.asl20; 57 - maintainers = with maintainers; [ dezgeg ]; 58 platforms = platforms.linux ++ platforms.darwin; 59 }; 60 }
··· 12 13 stdenv.mkDerivation rec { 14 pname = "eternal-terminal"; 15 + version = "6.2.8"; 16 17 src = fetchFromGitHub { 18 owner = "MisterTea"; 19 repo = "EternalTerminal"; 20 rev = "refs/tags/et-v${version}"; 21 + hash = "sha256-7LhCP7zARpigsDJmA7y/ZIgN06l8aCszXryzPoa4aL0="; 22 }; 23 24 nativeBuildInputs = [ ··· 34 ]; 35 36 preBuild = '' 37 + mkdir -p ../external_imported/Catch2/single_include/catch2 38 cp ${catch2}/include/catch2/catch.hpp ../external_imported/Catch2/single_include/catch2/catch.hpp 39 ''; 40 ··· 55 homepage = "https://eternalterminal.dev/"; 56 changelog = "https://github.com/MisterTea/EternalTerminal/releases/tag/et-v${version}"; 57 license = licenses.asl20; 58 + maintainers = with maintainers; [ dezgeg jshort ]; 59 platforms = platforms.linux ++ platforms.darwin; 60 }; 61 }