From 36351ac94e9c6608bb95f6946f2ec01dee45f65b Mon Sep 17 00:00:00 2001 From: Anderson Torres Date: Fri, 21 Apr 2023 17:30:04 -0300 Subject: [PATCH] calibre: add meta.changelog --- pkgs/applications/misc/calibre/default.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/misc/calibre/default.nix b/pkgs/applications/misc/calibre/default.nix index 9ab0a49d7f97..ee038f605ed7 100644 --- a/pkgs/applications/misc/calibre/default.nix +++ b/pkgs/applications/misc/calibre/default.nix @@ -191,7 +191,7 @@ stdenv.mkDerivation rec { disallowedReferences = [ podofo.dev ]; - meta = with lib; { + meta = { homepage = "https://calibre-ebook.com"; description = "Comprehensive e-book software"; longDescription = '' @@ -200,8 +200,12 @@ stdenv.mkDerivation rec { it takes things a step beyond normal e-book software. It’s also completely free and open source and great for both casual users and computer experts. ''; - license = with licenses; if unrarSupport then unfreeRedistributable else gpl3Plus; - maintainers = with maintainers; [ pSub AndersonTorres ]; - platforms = platforms.linux; + changelog = "https://github.com/kovidgoyal/calibre/releases/tag/v${version}"; + license = if unrarSupport + then lib.licenses.unfreeRedistributable + else lib.licenses.gpl3Plus; + maintainers = with lib.maintainers; [ pSub AndersonTorres ]; + platforms = lib.platforms.unix; + broken = stdenv.isDarwin; }; }