Skip to content

Commit ddbc832

Browse files
authoredApr 19, 2020
Revert "calibre: 4.12.0 -> 4.13.0"
1 parent 8804e2f commit ddbc832

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed
 

Diff for: ‎pkgs/applications/misc/calibre/default.nix

+7-5
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
, hyphen
1717
, unrarSupport ? false
1818
, chmlib
19-
, python3Packages
19+
, python2Packages
2020
, libusb1
2121
, libmtp
2222
, xdg_utils
@@ -25,15 +25,16 @@
2525
}:
2626

2727
let
28-
pypkgs = python3Packages;
28+
pypkgs = python2Packages;
29+
2930
in
3031
mkDerivation rec {
3132
pname = "calibre";
32-
version = "4.13.0";
33+
version = "4.12.0";
3334

3435
src = fetchurl {
3536
url = "https://download.calibre-ebook.com/${version}/${pname}-${version}.tar.xz";
36-
sha256 = "1xp1fvpdizk6g74diam4nd59s6fhcvp086y1brm6r9wy9zm7sn7r";
37+
sha256 = "144vl5p0adcywcqaarrriq5zd8q5i934yfjg9himiq1vdp9vy4fi";
3738
};
3839

3940
patches = [
@@ -170,7 +171,8 @@ mkDerivation rec {
170171
description = "Comprehensive e-book software";
171172
homepage = "https://calibre-ebook.com";
172173
license = with licenses; if unrarSupport then unfreeRedistributable else gpl3;
173-
maintainers = with maintainers; [ domenkozar pSub ];
174+
maintainers = with maintainers; [ domenkozar pSub AndersonTorres ];
174175
platforms = platforms.linux;
176+
inherit version;
175177
};
176178
}

0 commit comments

Comments
 (0)
Please sign in to comment.