Calibre: 2.42.0 -> 2.43.0

This commit is contained in:
AndersonTorres 2015-11-06 07:40:05 -02:00
parent 5a162cd068
commit c38e130062

View file

@ -5,12 +5,11 @@
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "calibre-${version}"; name = "calibre-${meta.version}";
version = "2.42.0";
src = fetchurl { src = fetchurl {
url = "https://github.com/kovidgoyal/calibre/releases/download/v${version}/${name}.tar.xz"; url = "https://github.com/kovidgoyal/calibre/releases/download/v${meta.version}/${name}.tar.xz";
sha256 = "0inmhkrc6jmpa97wjwai9ny8vmwy9z0fbiw8w43s37ad1w9x5sn1"; sha256 = "0h8c8w7f63pl1rarr3v6gi82dcsabb3216g7scmjfj50na5cfmhi";
}; };
inherit python; inherit python;
@ -59,10 +58,11 @@ stdenv.mkDerivation rec {
''; '';
meta = with stdenv.lib; { meta = with stdenv.lib; {
version = "2.43.0";
description = "Comprehensive e-book software"; description = "Comprehensive e-book software";
homepage = http://calibre-ebook.com; homepage = http://calibre-ebook.com;
license = licenses.gpl3; license = licenses.gpl3;
maintainers = with maintainers; [ viric iElectric pSub ]; maintainers = with maintainers; [ viric iElectric pSub AndersonTorres ];
platforms = platforms.linux; platforms = platforms.linux;
}; };
} }