* gnu/packages/cups.scm (hplip): Add gui. [arguments](configure-flags): Add "--enable-gui-build", "--disable-qt3", "--disable-qt4", "--enable-qt5", "--enable-dbus-build". [inputs]: Add python-pyqt, python-pygobject and python-sip. --- gnu/packages/cups.scm | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/cups.scm b/gnu/packages/cups.scm index baa77f7aa..7069d6b66 100644 --- a/gnu/packages/cups.scm +++ b/gnu/packages/cups.scm @@ -3,6 +3,7 @@ ;;; Copyright © 2015, 2016 Ludovic Courtès <l...@gnu.org> ;;; Copyright © 2015, 2016 Efraim Flashner <efr...@flashner.co.il> ;;; Copyright © 2016 Danny Milosavljevic <dan...@scratchpost.org> +;;; Copyright © 2016 ng0 <n...@libertad.pw> ;;; ;;; This file is part of GNU Guix. ;;; @@ -38,7 +39,8 @@ #:use-module (gnu packages glib) #:use-module (gnu packages pdf) #:use-module (gnu packages pkg-config) - #:use-module (gnu packages tls)) + #:use-module (gnu packages tls) + #:use-module (gnu packages qt)) ;; Delay to avoid module circularity problems. (define ghostscript/cups @@ -346,6 +348,11 @@ device-specific programs to convert and print many types of files.") "--enable-new-hpcups" "--enable-cups_ppd_install" "--enable-cups_drv_install" + "--enable-gui-build" + "--disable-qt3" + "--disable-qt4" + "--enable-qt5" + "--enable-dbus-build" ;; TODO add foomatic drv install eventually. ;; TODO --enable-policykit eventually. ,(string-append "--with-cupsfilterdir=" @@ -420,6 +427,9 @@ device-specific programs to convert and print many types of files.") ("dbus" ,dbus) ("python-wrapper" ,python-wrapper) ("python" ,python) + ("python-pyqt" ,python-pyqt) + ("python-pygobject" ,python-pygobject) + ("python-sip" ,python-sip) ;; TODO: Make hp-setup find python-dbus. ("python-dbus" ,python-dbus))) (native-inputs `(("pkg-config" ,pkg-config))))) -- 2.11.0