Skip to content
Open
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
11 changes: 7 additions & 4 deletions pkgs/by-name/ca/calibre-web/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@
}:
python3Packages.buildPythonApplication rec {
pname = "calibre-web";
version = "0.6.25";
version = "0.6.27-unstable-2026-02-22";
pyproject = true;

src = fetchFromGitHub {
owner = "janeczku";
repo = "calibre-web";
tag = version;
hash = "sha256-tmSp6ABQ4KnNdUHYZPnXGfhhyhM6aczEUPd57APZnLA=";
# remember changing this back (and changelog below) to tag after new release come out
rev = "5e48a64b1517574c31cf667be8c45bcd05cd0904";
hash = "sha256-OgaU+Kj24AzalMM8dhelJz1L8akadJoJApQw3q8wbCc=";
};

patches = [
Expand Down Expand Up @@ -148,7 +149,9 @@ python3Packages.buildPythonApplication rec {
meta = {
description = "Web app for browsing, reading and downloading eBooks stored in a Calibre database";
homepage = "https://github.com/janeczku/calibre-web";
changelog = "https://github.com/janeczku/calibre-web/releases/tag/${src.tag}";
# revert back to tag based changelog
# changelog = "https://github.com/janeczku/calibre-web/releases/tag/${src.tag}";
changelog = "https://github.com/janeczku/calibre-web/compare/0.6.26...${src.rev}";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ pborzenkov ];
mainProgram = "calibre-web";
Expand Down
Loading