2013-04-03 01:08:48 +02:00
|
|
|
{ stdenv, fetchurl, openvpn, intltool, pkgconfig, networkmanager
|
2013-05-10 22:28:31 +02:00
|
|
|
, withGnome ? true, gtk2, libgnome_keyring, procps, module_init_tools }:
|
2013-04-03 01:08:48 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "${pname}${if withGnome then "-gnome" else ""}-${version}";
|
|
|
|
pname = "NetworkManager-openvpn";
|
2014-01-03 13:39:27 +01:00
|
|
|
version = "0.9.8.4";
|
2013-04-03 01:08:48 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnome/sources/${pname}/0.9/${pname}-${version}.tar.xz";
|
2013-09-29 17:00:41 +02:00
|
|
|
sha256 = "11v63s1f3bsa7pmkvr7x65rsigh48wfqzsnixrwc3wqslsv5535g";
|
2013-04-03 01:08:48 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ openvpn networkmanager ]
|
|
|
|
++ stdenv.lib.optionals withGnome [ gtk2 libgnome_keyring ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ intltool pkgconfig ];
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"${if withGnome then "--with-gnome --with-gtkver=2" else "--without-gnome"}"
|
2013-05-10 22:28:31 +02:00
|
|
|
"--disable-static"
|
2013-04-03 01:08:48 +02:00
|
|
|
];
|
|
|
|
|
2013-05-10 22:28:31 +02: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-03 01:08:48 +02:00
|
|
|
'';
|
|
|
|
|
2013-05-10 22:28:31 +02:00
|
|
|
postConfigure = ''
|
|
|
|
substituteInPlace "./auth-dialog/Makefile" \
|
|
|
|
--replace "-Wstrict-prototypes" "" \
|
|
|
|
--replace "-Werror" ""
|
|
|
|
substituteInPlace "properties/Makefile" \
|
|
|
|
--replace "-Wstrict-prototypes" "" \
|
|
|
|
--replace "-Werror" ""
|
2013-04-03 01:08:48 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2013-07-11 08:49:31 +02:00
|
|
|
description = "NetworkManager's OpenVPN plugin";
|
2013-04-03 01:08:48 +02:00
|
|
|
inherit (networkmanager.meta) maintainers platforms;
|
|
|
|
};
|
|
|
|
}
|