Merge pull request #35333 from mdorman/connman-fix
connman: fix build with upstream patch
This commit is contained in:
commit
d16274da1d
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchurl, pkgconfig, openconnect, file, gawk,
|
{ stdenv, fetchurl, fetchpatch, pkgconfig, openconnect, file, gawk,
|
||||||
openvpn, vpnc, glib, dbus, iptables, gnutls, polkit,
|
openvpn, vpnc, glib, dbus, iptables, gnutls, polkit,
|
||||||
wpa_supplicant, readline6, pptp, ppp }:
|
wpa_supplicant, readline6, pptp, ppp }:
|
||||||
|
|
||||||
|
@ -16,6 +16,14 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig file gawk ];
|
nativeBuildInputs = [ pkgconfig file gawk ];
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
(fetchpatch {
|
||||||
|
name = "header-include.patch";
|
||||||
|
url = "https://git.kernel.org/pub/scm/network/connman/connman.git/patch/?id=bdfb3526466f8fb8f13d9259037d8f42c782ce24";
|
||||||
|
sha256 = "0q6ysy2xvvcmkcbw1y29x90g7g7kih7v95k1xbxdcxkras5yl8nf";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
export WPASUPPLICANT=${wpa_supplicant}/sbin/wpa_supplicant
|
export WPASUPPLICANT=${wpa_supplicant}/sbin/wpa_supplicant
|
||||||
export PPPD=${ppp}/sbin/pppd
|
export PPPD=${ppp}/sbin/pppd
|
||||||
|
|
Loading…
Reference in New Issue