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 {
|
|
|
|
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";
|
2015-09-28 11:22:02 +00:00
|
|
|
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 = [
|
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
|
|
|
'';
|
|
|
|
|
2013-05-10 20:28:31 +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 = {
|
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;
|
|
|
|
};
|
|
|
|
}
|