nixpkgs/pkgs/tools/networking/network-manager/openvpn.nix

50 lines
1.7 KiB
Nix
Raw Normal View History

2015-04-08 15:45:41 +00:00
{ stdenv, fetchurl, openvpn, intltool, pkgconfig, networkmanager, libsecret
, withGnome ? true, gnome3, procps, module_init_tools }:
2013-04-02 23:08:48 +00:00
stdenv.mkDerivation rec {
name = "${pname}${if withGnome then "-gnome" else ""}-${version}";
pname = "NetworkManager-openvpn";
2015-04-08 15:45:41 +00:00
version = networkmanager.version;
2013-04-02 23:08:48 +00:00
src = fetchurl {
2015-04-08 15:45:41 +00:00
url = "mirror://gnome/sources/${pname}/1.0/${pname}-${version}.tar.xz";
sha256 = "132xwkgyfnpma7m6b06jhrd1g9xk5dlpx8alnsf03ls3z92bd0n9";
2013-04-02 23:08:48 +00:00
};
2015-04-08 15:45:41 +00:00
buildInputs = [ openvpn networkmanager libsecret ]
++ stdenv.lib.optionals withGnome [ gnome3.gtk gnome3.libgnome_keyring
gnome3.networkmanagerapplet ];
2013-04-02 23:08:48 +00:00
nativeBuildInputs = [ intltool pkgconfig ];
configureFlags = [
"${if withGnome then "--with-gnome --with-gtkver=3" else "--without-gnome"}"
"--disable-static"
2015-04-08 15:45:41 +00:00
"--localstatedir=/" # needed for the management socket under /run/NetworkManager
2013-04-02 23:08:48 +00:00
];
preConfigure = ''
substituteInPlace "configure" \
--replace "/sbin/sysctl" "${procps}/sbin/sysctl"
substituteInPlace "src/nm-openvpn-service.c" \
--replace "/sbin/openvpn" "${openvpn}/sbin/openvpn" \
--replace "/sbin/modprobe" "${module_init_tools}/sbin/modprobe"
substituteInPlace "properties/auth-helpers.c" \
--replace "/sbin/openvpn" "${openvpn}/sbin/openvpn"
2013-04-02 23:08:48 +00:00
'';
postConfigure = ''
substituteInPlace "./auth-dialog/Makefile" \
--replace "-Wstrict-prototypes" "" \
--replace "-Werror" ""
substituteInPlace "properties/Makefile" \
--replace "-Wstrict-prototypes" "" \
--replace "-Werror" ""
2013-04-02 23:08:48 +00:00
'';
meta = {
description = "NetworkManager's OpenVPN plugin";
2013-04-02 23:08:48 +00:00
inherit (networkmanager.meta) maintainers platforms;
};
}