mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
46 lines
1.4 KiB
Nix
46 lines
1.4 KiB
Nix
{ stdenv, fetchurl, vpnc, intltool, pkgconfig, networkmanager, libsecret
|
|
, withGnome ? true, gnome3, procps, kmod }:
|
|
let
|
|
pname = "NetworkManager-vpnc";
|
|
version = "1.2.4";
|
|
in stdenv.mkDerivation rec {
|
|
name = "${pname}${if withGnome then "-gnome" else ""}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "39c7516418e90208cb534c19628ce40fd50eba0a08b2ebaef8da85720b10fb05";
|
|
};
|
|
|
|
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}/bin/sysctl"
|
|
substituteInPlace "src/nm-vpnc-service.c" \
|
|
--replace "/sbin/vpnc" "${vpnc}/bin/vpnc" \
|
|
--replace "/sbin/modprobe" "${kmod}/bin/modprobe"
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript {
|
|
packageName = pname;
|
|
attrPath = "networkmanager-vpnc";
|
|
};
|
|
};
|
|
|
|
meta = {
|
|
description = "NetworkManager's VPNC plugin";
|
|
inherit (networkmanager.meta) maintainers platforms;
|
|
};
|
|
}
|
|
|