mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 04:05:40 +03:00
calibre-web: don't overuse with lib;
This commit is contained in:
parent
c303ae59c7
commit
4b3bacf9bd
1 changed files with 4 additions and 4 deletions
|
@ -144,13 +144,13 @@ python3Packages.buildPythonApplication rec {
|
||||||
updateScript = nix-update-script { };
|
updateScript = nix-update-script { };
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = {
|
||||||
description = "Web app for browsing, reading and downloading eBooks stored in a Calibre database";
|
description = "Web app for browsing, reading and downloading eBooks stored in a Calibre database";
|
||||||
homepage = "https://github.com/janeczku/calibre-web";
|
homepage = "https://github.com/janeczku/calibre-web";
|
||||||
changelog = "https://github.com/janeczku/calibre-web/releases/tag/${src.tag}";
|
changelog = "https://github.com/janeczku/calibre-web/releases/tag/${src.tag}";
|
||||||
license = licenses.gpl3Plus;
|
license = lib.licenses.gpl3Plus;
|
||||||
maintainers = with maintainers; [ pborzenkov ];
|
maintainers = with lib.maintainers; [ pborzenkov ];
|
||||||
mainProgram = "calibre-web";
|
mainProgram = "calibre-web";
|
||||||
platforms = platforms.all;
|
platforms = lib.platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue