>From 343a01ae846f02735b339fc0f09e1dbc9ee2c119 Mon Sep 17 00:00:00 2001 From: Florian Pelz Date: Thu, 4 Jul 2019 16:30:42 +0200 Subject: [PATCH] gnu: network-manager: Add ppp input and configure flag. * gnu/packages/gnome.scm (network-manager): Add them. --- gnu/packages/gnome.scm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 2820be0022..480547e6bc 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -5322,7 +5322,9 @@ users.") (let ((out (assoc-ref %outputs "out")) (doc (assoc-ref %outputs "doc")) (dhclient (string-append (assoc-ref %build-inputs "isc-dhcp") - "/sbin/dhclient"))) + "/sbin/dhclient")) + (pppd (string-append (assoc-ref %build-inputs "ppp") + "/sbin/pppd"))) (list "--with-systemd-logind=yes" ;In Guix System, this is provided by elogind. "--with-consolekit=no" "--with-crypto=gnutls" @@ -5335,7 +5337,8 @@ users.") out "/etc/dbus-1/system.d") (string-append "--with-html-dir=" doc "/share/gtk-doc/html") - (string-append "--with-dhclient=" dhclient))) + (string-append "--with-dhclient=" dhclient) + (string-append "--with-pppd=" pppd))) #:phases (modify-phases %standard-phases (add-before 'configure 'pre-configure @@ -5395,6 +5398,7 @@ users.") ("libxslt" ,libxslt) ("libxml2" ,libxml2) ("pkg-config" ,pkg-config) + ("ppp" ,ppp) ;; For testing. ("python" ,python-wrapper) ("python-dbus" ,python-dbus) -- 2.22.0