50 lines
1.7 KiB
Nix
50 lines
1.7 KiB
Nix
{ stdenv, fetchurl, openvpn, intltool, pkgconfig, networkmanager, libsecret
|
|
, withGnome ? true, gnome3, procps, module_init_tools }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "${pname}${if withGnome then "-gnome" else ""}-${version}";
|
|
pname = "NetworkManager-openvpn";
|
|
version = networkmanager.version;
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/1.0/${pname}-${version}.tar.xz";
|
|
sha256 = "1c2b74xhkjifc3g6n53gr2aj4s98qf0vydmqvbhl5azxqx5q4hqn";
|
|
};
|
|
|
|
buildInputs = [ openvpn networkmanager libsecret ]
|
|
++ stdenv.lib.optionals withGnome [ gnome3.gtk gnome3.libgnome_keyring
|
|
gnome3.networkmanagerapplet ];
|
|
|
|
nativeBuildInputs = [ intltool pkgconfig ];
|
|
|
|
configureFlags = [
|
|
"${if withGnome then "--with-gnome --with-gtkver=3" else "--without-gnome"}"
|
|
"--disable-static"
|
|
"--localstatedir=/" # needed for the management socket under /run/NetworkManager
|
|
];
|
|
|
|
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"
|
|
'';
|
|
|
|
postConfigure = ''
|
|
substituteInPlace "./auth-dialog/Makefile" \
|
|
--replace "-Wstrict-prototypes" "" \
|
|
--replace "-Werror" ""
|
|
substituteInPlace "properties/Makefile" \
|
|
--replace "-Wstrict-prototypes" "" \
|
|
--replace "-Werror" ""
|
|
'';
|
|
|
|
meta = {
|
|
description = "NetworkManager's OpenVPN plugin";
|
|
inherit (networkmanager.meta) maintainers platforms;
|
|
};
|
|
}
|