diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2016-06-16 17:31:31 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2016-06-16 18:06:42 +0300 |
commit | 76806c54ed72f8f04079bbb187b186b833c103e1 (patch) | |
tree | 09c8a5f4064445d69ced0c07cda23ff4e1862307 /gnu/packages/ebook.scm | |
parent | 64e8be679cb757bab3955fbaa159c909d18100c7 (diff) | |
download | guix-76806c54ed72f8f04079bbb187b186b833c103e1.tar guix-76806c54ed72f8f04079bbb187b186b833c103e1.tar.gz |
gnu: calibre: Build with qtbase.
* gnu/packages/ebook.scm (calibre)[inputs]: Remove qt, add qtbase.
[native-inputs]: Remove qt, add qtbase.
Diffstat (limited to 'gnu/packages/ebook.scm')
-rw-r--r-- | gnu/packages/ebook.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/ebook.scm b/gnu/packages/ebook.scm index 2b450cabd6..f7e15584f3 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 @@ -121,7 +121,7 @@ ("python2-pillow" ,python2-pillow) ("python2-pyqt" ,python2-pyqt) ("python2-sip" ,python2-sip) - ("qt" ,qt) + ("qtbase" ,qtbase) ("sqlite" ,sqlite))) (arguments `(#:python ,python-2 |