about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@protonmail.ch>2020-04-18 20:51:33 -0400
committerGitHub <noreply@github.com>2020-04-18 20:51:33 -0400
commitddbc83263785aabcbf15cb21257cc830e1e6f74a (patch)
tree5af0e24ed27caad90355a1c37ba3376284455520 /pkgs
parent8804e2f53ff6ac4d4a1951d09d04c5e9890afff8 (diff)
downloadnixlib-ddbc83263785aabcbf15cb21257cc830e1e6f74a.tar
nixlib-ddbc83263785aabcbf15cb21257cc830e1e6f74a.tar.gz
nixlib-ddbc83263785aabcbf15cb21257cc830e1e6f74a.tar.bz2
nixlib-ddbc83263785aabcbf15cb21257cc830e1e6f74a.tar.lz
nixlib-ddbc83263785aabcbf15cb21257cc830e1e6f74a.tar.xz
nixlib-ddbc83263785aabcbf15cb21257cc830e1e6f74a.tar.zst
nixlib-ddbc83263785aabcbf15cb21257cc830e1e6f74a.zip
Revert "calibre: 4.12.0 -> 4.13.0"
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/misc/calibre/default.nix12
1 files changed, 7 insertions, 5 deletions
diff --git a/pkgs/applications/misc/calibre/default.nix b/pkgs/applications/misc/calibre/default.nix
index 81fcc64de72e..afd602f60884 100644
--- a/pkgs/applications/misc/calibre/default.nix
+++ b/pkgs/applications/misc/calibre/default.nix
@@ -16,7 +16,7 @@
 , hyphen
 , unrarSupport ? false
 , chmlib
-, python3Packages
+, python2Packages
 , libusb1
 , libmtp
 , xdg_utils
@@ -25,15 +25,16 @@
 }:
 
 let
-  pypkgs = python3Packages;
+  pypkgs = python2Packages;
+
 in
 mkDerivation rec {
   pname = "calibre";
-  version = "4.13.0";
+  version = "4.12.0";
 
   src = fetchurl {
     url = "https://download.calibre-ebook.com/${version}/${pname}-${version}.tar.xz";
-    sha256 = "1xp1fvpdizk6g74diam4nd59s6fhcvp086y1brm6r9wy9zm7sn7r";
+    sha256 = "144vl5p0adcywcqaarrriq5zd8q5i934yfjg9himiq1vdp9vy4fi";
   };
 
   patches = [
@@ -170,7 +171,8 @@ mkDerivation rec {
     description = "Comprehensive e-book software";
     homepage = "https://calibre-ebook.com";
     license = with licenses; if unrarSupport then unfreeRedistributable else gpl3;
-    maintainers = with maintainers; [ domenkozar pSub ];
+    maintainers = with maintainers; [ domenkozar pSub AndersonTorres ];
     platforms = platforms.linux;
+    inherit version;
   };
 }