a9e995d679
Code using deprecated APIs has been removed See comment by @dkosovic on the matter: https://github.com/xelerance/xl2tpd/issues/108#issuecomment-227621314
39 lines
1.2 KiB
Nix
39 lines
1.2 KiB
Nix
{ stdenv, fetchurl, vpnc, intltool, pkgconfig, networkmanager, libsecret
|
|
, withGnome ? true, gnome3, procps, kmod }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "${pname}${if withGnome then "-gnome" else ""}-${version}";
|
|
pname = "NetworkManager-vpnc";
|
|
version = networkmanager.version;
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${networkmanager.major}/${pname}-${version}.tar.xz";
|
|
sha256 = "e900f6500026f8c3ee4feb92e1d0a0c0abbee9ba507dad915b47a8ab7df9e1f3";
|
|
};
|
|
|
|
buildInputs = [ vpnc 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"
|
|
];
|
|
|
|
preConfigure = ''
|
|
substituteInPlace "configure" \
|
|
--replace "/sbin/sysctl" "${procps}/sbin/sysctl"
|
|
substituteInPlace "src/nm-vpnc-service.c" \
|
|
--replace "/sbin/vpnc" "${vpnc}/sbin/vpnc" \
|
|
--replace "/sbin/modprobe" "${kmod}/sbin/modprobe"
|
|
'';
|
|
|
|
meta = {
|
|
description = "NetworkManager's VPNC plugin";
|
|
inherit (networkmanager.meta) maintainers platforms;
|
|
};
|
|
}
|
|
|