connman: remove unneeded deps

This commit is contained in:
Doron Behar 2020-02-22 18:59:17 +02:00
parent 7cdd874589
commit bc4d2abac8

View file

@ -3,7 +3,6 @@
, pkgconfig , pkgconfig
, openconnect , openconnect
, file , file
, gawk,
openvpn openvpn
, vpnc , vpnc
, glib , glib
@ -11,7 +10,6 @@
, iptables , iptables
, gnutls , gnutls
, polkit, , polkit,
wpa_supplicant
, readline6 , readline6
, pptp , pptp
, ppp , ppp
@ -34,7 +32,6 @@ stdenv.mkDerivation rec {
dbus dbus
iptables iptables
gnutls gnutls
wpa_supplicant
readline6 readline6
pptp pptp
ppp ppp
@ -43,13 +40,10 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ nativeBuildInputs = [
pkgconfig pkgconfig
file file
gawk
]; ];
preConfigure = '' preConfigure = ''
export WPASUPPLICANT=${wpa_supplicant}/sbin/wpa_supplicant
export PPPD=${ppp}/sbin/pppd export PPPD=${ppp}/sbin/pppd
export AWK=${gawk}/bin/gawk
sed -i "s/\/usr\/bin\/file/file/g" ./configure sed -i "s/\/usr\/bin\/file/file/g" ./configure
''; '';