diff options
author | Lukas Gradl <lgradl@posteo.net> | 2025-02-26 12:25:55 +0000 |
---|---|---|
committer | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-03-30 23:20:34 +0200 |
commit | 8f6056faf5bc4e637883e08d43722f4b8bfd949d (patch) | |
tree | 3b987fc57f4e6f224acc342958e106c222bbf3c1 | |
parent | a15e3f02e81a6b725beb4b35b952d9666ba25439 (diff) |
gnu: hplip: Enable networking.
* gnu/packages/cups.scm (hplip): Enable networking.
[arguments] <#:configure-flags>: Remove flag "--disable-network-build".
[inputs]: Add net-snmp, openssl, and avahi.
Change-Id: Ibd95a9786c7bea5b45d0fcfa6ab81eca47ca82a0
Signed-off-by: Danny Milosavljevic <dannym@friendly-machines.com>
-rw-r--r-- | gnu/packages/cups.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/cups.scm b/gnu/packages/cups.scm index 09881fc1b8..b318915065 100644 --- a/gnu/packages/cups.scm +++ b/gnu/packages/cups.scm @@ -9,6 +9,7 @@ ;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com> ;;; Copyright © 2021, 2023, 2024 Maxim Cournoyer <maxim.cournoyer@gmail.com> ;;; Copyright © 2023 Zheng Junjie <873216071@qq.com> +;;; Copyright © 2025 Lukas Gradl <lgradl@posteo.net> ;;; ;;; This file is part of GNU Guix. ;;; @@ -42,6 +43,7 @@ #:use-module (gnu packages image) #:use-module (gnu packages libusb) #:use-module (gnu packages linux) + #:use-module (gnu packages networking) #:use-module (gnu packages pdf) #:use-module (gnu packages perl) #:use-module (gnu packages photo) @@ -579,7 +581,6 @@ should only be used as part of the Guix cups-pk-helper service.") ((guix build python-build-system) #:prefix python:)) #:configure-flags #~(list "--disable-imageProcessor-build" - "--disable-network-build" (string-append "--prefix=" #$output) (string-append "--sysconfdir=" #$output "/etc") (string-append "LDFLAGS=-Wl,-rpath=" #$output "/lib") @@ -690,6 +691,9 @@ should only be used as part of the Guix cups-pk-helper service.") python-pyqt python-wrapper sane-backends-minimal + net-snmp + openssl + avahi zlib)) (home-page "https://developers.hp.com/hp-linux-imaging-and-printing") (synopsis "HP printer drivers") |