diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2016-12-11 21:55:07 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2016-12-12 16:14:29 +0200 |
commit | c5ea912016fdba6a1debe6eef7fbd51e59efb9a5 (patch) | |
tree | e08750a565f70281b250b570a3452ffac092a5c6 /gnu/packages/ebook.scm | |
parent | e9adcd81b1f709b3770050d21617a04afa53c25c (diff) | |
download | gnu-guix-c5ea912016fdba6a1debe6eef7fbd51e59efb9a5.tar gnu-guix-c5ea912016fdba6a1debe6eef7fbd51e59efb9a5.tar.gz |
gnu: calibre: Update qt dependancies.
* gnu/packages/ebook.scm (calibre)[native-inputs]: Remove qt, add
qtbase.
[inputs]: Remove qt, replace python2-pyqt@5.5 with python2-pyqt.
Diffstat (limited to 'gnu/packages/ebook.scm')
-rw-r--r-- | gnu/packages/ebook.scm | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnu/packages/ebook.scm b/gnu/packages/ebook.scm index 3843fb2092..c68e643cf0 100644 --- a/gnu/packages/ebook.scm +++ b/gnu/packages/ebook.scm @@ -83,7 +83,7 @@ (build-system python-build-system) (native-inputs `(("pkg-config" ,pkg-config) - ("qt" ,qt) ; for qmake + ("qtbase" ,qtbase) ; for qmake ;; xdg-utils is supposed to be used for desktop integration, but it ;; also creates lots of messages ;; mkdir: cannot create directory '/homeless-shelter': Permission denied @@ -118,9 +118,8 @@ ("python2-mechanize" ,python2-mechanize) ("python2-netifaces" ,python2-netifaces) ("python2-pillow" ,python2-pillow) - ("python2-pyqt" ,python2-pyqt-5.5) + ("python2-pyqt" ,python2-pyqt) ("python2-sip" ,python2-sip) - ("qt" ,qt) ("sqlite" ,sqlite))) (arguments `(#:python ,python-2 |