47 lines
1.4 KiB
Nix
47 lines
1.4 KiB
Nix
{ stdenv, fetchurl, vpnc, intltool, pkgconfig, networkmanager
|
|
, withGnome ? true, gtk2, libgnome_keyring, procps, module_init_tools }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "${pname}${if withGnome then "-gnome" else ""}-${version}";
|
|
pname = "NetworkManager-vpnc";
|
|
version = networkmanager.version;
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/0.9/${pname}-${version}.tar.xz";
|
|
sha256 = "1hdigqfvsjlr1zr23lwmcsvcv1x74cqhfpwrd0j0zhhmjdb4ql74";
|
|
};
|
|
|
|
buildInputs = [ vpnc networkmanager ]
|
|
++ stdenv.lib.optionals withGnome [ gtk2 libgnome_keyring ];
|
|
|
|
nativeBuildInputs = [ intltool pkgconfig ];
|
|
|
|
configureFlags = [
|
|
"${if withGnome then "--with-gnome --with-gtkver=2" 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" "${module_init_tools}/sbin/modprobe"
|
|
'';
|
|
|
|
postConfigure = ''
|
|
substituteInPlace "./auth-dialog/Makefile" \
|
|
--replace "-Wstrict-prototypes" "" \
|
|
--replace "-Werror" ""
|
|
substituteInPlace "properties/Makefile" \
|
|
--replace "-Wstrict-prototypes" "" \
|
|
--replace "-Werror" ""
|
|
'';
|
|
|
|
meta = {
|
|
description = "NetworkManager's VPNC plugin";
|
|
inherit (networkmanager.meta) maintainers platforms;
|
|
};
|
|
}
|
|
|