1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-19 20:36:27 +00:00
nixpkgs/pkgs/tools/networking/network-manager/openvpn.nix

49 lines
1.6 KiB
Nix
Raw Normal View History

2015-04-08 16:45:41 +01:00
{ stdenv, fetchurl, openvpn, intltool, pkgconfig, networkmanager, libsecret
, withGnome ? true, gnome3, procps, kmod }:
2013-04-03 00:08:48 +01:00
let
pname = "NetworkManager-openvpn";
version = "1.8.0";
in stdenv.mkDerivation rec {
name = "${pname}${if withGnome then "-gnome" else ""}-${version}";
2013-04-03 00:08:48 +01:00
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2017-09-22 11:30:06 +01:00
sha256 = "1973n89g66a3jfx8r45a811fga4kadh6r1w35cb25cz1mlii2vhn";
2013-04-03 00:08:48 +01:00
};
2015-04-08 16:45:41 +01:00
buildInputs = [ openvpn networkmanager libsecret ]
++ stdenv.lib.optionals withGnome [ gnome3.gtk gnome3.libgnome-keyring
2015-04-08 16:45:41 +01:00
gnome3.networkmanagerapplet ];
2013-04-03 00:08:48 +01:00
nativeBuildInputs = [ intltool pkgconfig ];
configureFlags = [
"${if withGnome then "--with-gnome --with-gtkver=3" else "--without-gnome"}"
"--disable-static"
2015-04-08 16:45:41 +01:00
"--localstatedir=/" # needed for the management socket under /run/NetworkManager
2013-04-03 00:08:48 +01:00
];
preConfigure = ''
substituteInPlace "configure" \
--replace "/sbin/sysctl" "${procps}/sbin/sysctl"
substituteInPlace "src/nm-openvpn-service.c" \
--replace "/sbin/openvpn" "${openvpn}/bin/openvpn" \
--replace "/sbin/modprobe" "${kmod}/bin/modprobe"
substituteInPlace "properties/auth-helpers.c" \
--replace "/sbin/openvpn" "${openvpn}/bin/openvpn"
2013-04-03 00:08:48 +01:00
'';
passthru = {
updateScript = gnome3.updateScript {
packageName = pname;
attrPath = "networkmanager-openvpn";
};
};
2013-04-03 00:08:48 +01:00
meta = {
description = "NetworkManager's OpenVPN plugin";
2013-04-03 00:08:48 +01:00
inherit (networkmanager.meta) maintainers platforms;
};
}