Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

komga: 1.15.0 -> 1.15.1 #367281

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;
};
Comment on lines +22184 to +22189
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please put this in a difference commit: maintainers: add tebriel.

techknowlogick = {
email = "[email protected]";
github = "techknowlogick";
Expand Down
15 changes: 9 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,11 @@ 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
];
Comment on lines +36 to +39
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IMO, this would be a third commit: komga: add tebriel to maintainers but it's probably fine as-is.

mainProgram = "komga";
};

Expand Down
Loading