strongswan: fix build with enableNetworkManager set to true
glib doesn't seem to be propagated, and strongswan with networkmanager fails to build because of that.
This commit is contained in:
parent
514f21a68d
commit
229dc6bd6c
|
@ -1,6 +1,6 @@
|
||||||
{ stdenv, fetchurl, fetchpatch
|
{ stdenv, fetchurl, fetchpatch
|
||||||
, pkgconfig, autoreconfHook
|
, pkgconfig, autoreconfHook
|
||||||
, gmp, python, iptables, ldns, unbound, openssl, pcsclite
|
, gmp, python, iptables, ldns, unbound, openssl, pcsclite, glib
|
||||||
, openresolv
|
, openresolv
|
||||||
, systemd, pam
|
, systemd, pam
|
||||||
, curl
|
, curl
|
||||||
|
@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
|
||||||
++ optionals enableTNC [ trousers sqlite libxml2 ]
|
++ optionals enableTNC [ trousers sqlite libxml2 ]
|
||||||
++ optionals stdenv.isLinux [ systemd.dev pam iptables ]
|
++ optionals stdenv.isLinux [ systemd.dev pam iptables ]
|
||||||
++ optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ SystemConfiguration ])
|
++ optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ SystemConfiguration ])
|
||||||
++ optionals enableNetworkManager [ networkmanager ];
|
++ optionals enableNetworkManager [ networkmanager glib ];
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
./ext_auth-path.patch
|
./ext_auth-path.patch
|
||||||
|
|
Loading…
Reference in New Issue