2015-04-08 08:45:41 -07:00
|
|
|
{ stdenv, fetchurl, vpnc, intltool, pkgconfig, networkmanager, libsecret
|
2018-07-23 13:43:07 -07:00
|
|
|
, withGnome ? true, gnome3, procps, kmod, file }:
|
2018-03-06 21:10:57 -08:00
|
|
|
let
|
2016-06-21 18:11:50 -07:00
|
|
|
pname = "NetworkManager-vpnc";
|
2018-07-23 13:43:07 -07:00
|
|
|
version = "1.2.6";
|
2018-03-06 21:10:57 -08:00
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
name = "${pname}${if withGnome then "-gnome" else ""}-${version}";
|
2013-07-10 07:18:18 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-03-06 21:10:57 -08:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2018-07-23 13:43:07 -07:00
|
|
|
sha256 = "1js5lwcsqws4klgypfxl4ikmakv7v7xgddij1fj6b0y0qicx0kyy";
|
2013-07-10 07:18:18 -07:00
|
|
|
};
|
|
|
|
|
2015-04-08 08:45:41 -07:00
|
|
|
buildInputs = [ vpnc networkmanager libsecret ]
|
2018-02-24 18:23:58 -08:00
|
|
|
++ stdenv.lib.optionals withGnome [ gnome3.gtk gnome3.libgnome-keyring
|
2015-04-08 08:45:41 -07:00
|
|
|
gnome3.networkmanagerapplet ];
|
2013-07-10 07:18:18 -07:00
|
|
|
|
2018-07-23 13:43:07 -07:00
|
|
|
nativeBuildInputs = [ intltool pkgconfig file ];
|
2013-07-10 07:18:18 -07:00
|
|
|
|
|
|
|
configureFlags = [
|
2014-05-20 11:30:44 -07:00
|
|
|
"${if withGnome then "--with-gnome --with-gtkver=3" else "--without-gnome"}"
|
2013-07-10 07:18:18 -07:00
|
|
|
"--disable-static"
|
|
|
|
];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace "configure" \
|
2016-08-14 02:57:45 -07:00
|
|
|
--replace "/sbin/sysctl" "${procps}/bin/sysctl"
|
2013-07-10 07:18:18 -07:00
|
|
|
substituteInPlace "src/nm-vpnc-service.c" \
|
2016-08-14 02:57:45 -07:00
|
|
|
--replace "/sbin/vpnc" "${vpnc}/bin/vpnc" \
|
|
|
|
--replace "/sbin/modprobe" "${kmod}/bin/modprobe"
|
2013-07-10 07:18:18 -07:00
|
|
|
'';
|
|
|
|
|
2018-03-06 21:10:57 -08:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
attrPath = "networkmanager-vpnc";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2013-07-10 07:18:18 -07:00
|
|
|
meta = {
|
2013-07-10 23:49:31 -07:00
|
|
|
description = "NetworkManager's VPNC plugin";
|
2013-07-10 07:18:18 -07:00
|
|
|
inherit (networkmanager.meta) maintainers platforms;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|