Merge pull request #308918 from jshort/6.2.8

eternal-terminal: 6.2.4 -> 6.2.8
This commit is contained in:
Peder Bergebakken Sundt 2024-05-16 00:11:22 +02:00 committed by GitHub
commit 264fca5f0a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 3 deletions

View File

@ -10052,6 +10052,11 @@
githubId = 107689;
name = "Josh Holland";
};
jshort = {
github = "jshort";
githubId = 1186444;
name = "James Short";
};
jsierles = {
email = "joshua@hey.com";
matrix = "@jsierles:matrix.org";

View File

@ -12,13 +12,13 @@
stdenv.mkDerivation rec {
pname = "eternal-terminal";
version = "6.2.4";
version = "6.2.8";
src = fetchFromGitHub {
owner = "MisterTea";
repo = "EternalTerminal";
rev = "refs/tags/et-v${version}";
hash = "sha256-9W9Pz0VrFU+HNpf98I3CLrn8+kpjjNLOUK8gGcDJcI8=";
hash = "sha256-7LhCP7zARpigsDJmA7y/ZIgN06l8aCszXryzPoa4aL0=";
};
nativeBuildInputs = [
@ -34,6 +34,7 @@ stdenv.mkDerivation rec {
];
preBuild = ''
mkdir -p ../external_imported/Catch2/single_include/catch2
cp ${catch2}/include/catch2/catch.hpp ../external_imported/Catch2/single_include/catch2/catch.hpp
'';
@ -54,7 +55,7 @@ stdenv.mkDerivation rec {
homepage = "https://eternalterminal.dev/";
changelog = "https://github.com/MisterTea/EternalTerminal/releases/tag/et-v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ dezgeg ];
maintainers = with maintainers; [ dezgeg jshort ];
platforms = platforms.linux ++ platforms.darwin;
};
}