Skip to content

Commit cee5e73

Browse files
committed
komga: 1.15.0 -> 1.15.1
1 parent df9822a commit cee5e73

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 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,9 @@ 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;
35+
platforms = jdk23_headless.meta.platforms;
3636
maintainers = with lib.maintainers; [ govanify ];
3737
mainProgram = "komga";
38+
sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
3839
};
39-
4040
}

0 commit comments

Comments
 (0)