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