Skip to content

Commit 6885774

Browse files
authored
komga: 1.15.0 -> 1.15.1 (#367281)
2 parents a98f7fa + 98891a2 commit 6885774

File tree

2 files changed

+16
-7
lines changed

2 files changed

+16
-7
lines changed

maintainers/maintainer-list.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22306,6 +22306,12 @@
2230622306
github = "teatwig";
2230722307
githubId = 18734648;
2230822308
};
22309+
tebriel = {
22310+
email = "[email protected]";
22311+
name = "tebriel";
22312+
github = "tebriel";
22313+
githubId = 821688;
22314+
};
2230922315
techknowlogick = {
2231022316
email = "[email protected]";
2231122317
github = "techknowlogick";

pkgs/by-name/ko/komga/package.nix

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,25 +3,25 @@
33
stdenvNoCC,
44
fetchurl,
55
makeWrapper,
6-
jdk17_headless,
6+
jdk23_headless,
77
nixosTests,
88
}:
99

1010
stdenvNoCC.mkDerivation rec {
1111
pname = "komga";
12-
version = "1.15.0";
12+
version = "1.15.1";
1313

1414
src = fetchurl {
1515
url = "https://github.com/gotson/${pname}/releases/download/${version}/${pname}-${version}.jar";
16-
sha256 = "sha256-mgPGhBdZ7FyxkVNPJkfFjQ6mJDbQ049PKzacTN6cajk=";
16+
sha256 = "sha256-Gv0AaW3aTjLjNAzC5FJMVfvZyIN23ezPpRk15OYyKKs=";
1717
};
1818

1919
nativeBuildInputs = [
2020
makeWrapper
2121
];
2222

2323
buildCommand = ''
24-
makeWrapper ${jdk17_headless}/bin/java $out/bin/komga --add-flags "-jar $src"
24+
makeWrapper ${jdk23_headless}/bin/java $out/bin/komga --add-flags "-jar $src"
2525
'';
2626

2727
passthru.tests = {
@@ -32,9 +32,12 @@ stdenvNoCC.mkDerivation rec {
3232
description = "Free and open source comics/mangas server";
3333
homepage = "https://komga.org/";
3434
license = lib.licenses.mit;
35-
platforms = jdk17_headless.meta.platforms;
36-
maintainers = with lib.maintainers; [ govanify ];
35+
platforms = jdk23_headless.meta.platforms;
36+
maintainers = with lib.maintainers; [
37+
tebriel
38+
govanify
39+
];
3740
mainProgram = "komga";
41+
sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
3842
};
39-
4043
}

0 commit comments

Comments
 (0)