2015-04-08 15:45:41 +00:00
|
|
|
{ stdenv, fetchurl, openvpn, intltool, pkgconfig, networkmanager, libsecret
|
2016-04-22 07:40:57 +00:00
|
|
|
, withGnome ? true, gnome3, procps, kmod }:
|
2013-04-02 23:08:48 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-06-22 01:07:07 +00:00
|
|
|
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 {
|
2016-06-22 01:07:07 +00:00
|
|
|
url = "mirror://gnome/sources/${pname}/${networkmanager.major}/${pname}-${version}.tar.xz";
|
|
|
|
sha256 = "47a6d219a781eff8491c7876b7fb95b12dcfb8f8a05f916f95afc65c7babddef";
|
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 = [
|
2014-05-20 18:30:44 +00:00
|
|
|
"${if withGnome then "--with-gnome --with-gtkver=3" else "--without-gnome"}"
|
2013-05-10 20:28:31 +00:00
|
|
|
"--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
|
|
|
];
|
|
|
|
|
2013-05-10 20:28:31 +00:00
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace "configure" \
|
|
|
|
--replace "/sbin/sysctl" "${procps}/sbin/sysctl"
|
|
|
|
substituteInPlace "src/nm-openvpn-service.c" \
|
|
|
|
--replace "/sbin/openvpn" "${openvpn}/sbin/openvpn" \
|
2016-04-22 07:40:57 +00:00
|
|
|
--replace "/sbin/modprobe" "${kmod}/sbin/modprobe"
|
2013-05-10 20:28:31 +00:00
|
|
|
substituteInPlace "properties/auth-helpers.c" \
|
|
|
|
--replace "/sbin/openvpn" "${openvpn}/sbin/openvpn"
|
2013-04-02 23:08:48 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2013-07-11 06:49:31 +00:00
|
|
|
description = "NetworkManager's OpenVPN plugin";
|
2013-04-02 23:08:48 +00:00
|
|
|
inherit (networkmanager.meta) maintainers platforms;
|
|
|
|
};
|
|
|
|
}
|