Skip to content

Commit

Permalink
komga: 1.15.0 -> 1.15.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tebriel committed Dec 22, 2024
1 parent 9563848 commit 57982a0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions maintainers/maintainer-list.nix
Original file line number Diff line number Diff line change
Expand Up @@ -22181,6 +22181,12 @@
github = "teatwig";
githubId = 18734648;
};
tebriel = {
email = "[email protected]";
name = "tebriel";
github = "tebriel";
githubId = 821688;
};
techknowlogick = {
email = "[email protected]";
github = "techknowlogick";
Expand Down
12 changes: 6 additions & 6 deletions pkgs/by-name/ko/komga/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,25 @@
stdenvNoCC,
fetchurl,
makeWrapper,
jdk17_headless,
jdk23_headless,
nixosTests,
}:

stdenvNoCC.mkDerivation rec {
pname = "komga";
version = "1.15.0";
version = "1.15.1";

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

nativeBuildInputs = [
makeWrapper
];

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

passthru.tests = {
Expand All @@ -32,8 +32,8 @@ stdenvNoCC.mkDerivation rec {
description = "Free and open source comics/mangas server";
homepage = "https://komga.org/";
license = lib.licenses.mit;
platforms = jdk17_headless.meta.platforms;
maintainers = with lib.maintainers; [ govanify ];
platforms = jdk23_headless.meta.platforms;
maintainers = with lib.maintainers; [ govanify tebriel ];
mainProgram = "komga";
};

Expand Down

0 comments on commit 57982a0

Please sign in to comment.