mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
fix openvpn making it find ifonfig
svn path=/nixpkgs/trunk/; revision=15380
This commit is contained in:
parent
955b111f9a
commit
48216ba01a
|
@ -7,7 +7,13 @@ stdenv.mkDerivation {
|
|||
sha256 = "198k5lbw0bnx67hgflzlzncmdnww0wa7fll0kkirmckav93y7kv6";
|
||||
};
|
||||
|
||||
buildInputs = [ iproute lzo openssl];
|
||||
buildInputs = [ iproute lzo openssl ];
|
||||
|
||||
configureFlags = ''
|
||||
--with-ifconfig-path=${nettools}/sbin/ifconfig
|
||||
--with-iproute-path=${iproute}/sbin/ip
|
||||
--with-route-path=${nettools}/sbin/route
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description="OpenVPN is a robust and highly flexible tunneling application compatible with many OSes.";
|
||||
|
|
|
@ -1047,7 +1047,7 @@ let
|
|||
};
|
||||
|
||||
openvpn = import ../tools/networking/openvpn {
|
||||
inherit fetchurl stdenv iproute lzo openssl;
|
||||
inherit fetchurl stdenv iproute lzo openssl nettools;
|
||||
};
|
||||
|
||||
p7zip = import ../tools/archivers/p7zip {
|
||||
|
|
Loading…
Reference in a new issue