2015-04-08 08:45:41 -07:00
|
|
|
{ stdenv, fetchurl, openconnect, intltool, pkgconfig, networkmanager, libsecret
|
2016-04-22 00:40:57 -07:00
|
|
|
, withGnome ? true, gnome3, procps, kmod }:
|
2013-07-10 07:18:18 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-06-21 18:09:21 -07:00
|
|
|
name = "${pname}${if withGnome then "-gnome" else ""}-${version}";
|
|
|
|
pname = "NetworkManager-openconnect";
|
|
|
|
version = networkmanager.version;
|
2013-07-10 07:18:18 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-06-21 18:09:21 -07:00
|
|
|
url = "mirror://gnome/sources/${pname}/${networkmanager.major}/${pname}-${version}.tar.xz";
|
|
|
|
sha256 = "522979593e21b4e884112816708db9eb66148b3491580dacfad53472b94aafec";
|
2013-07-10 07:18:18 -07:00
|
|
|
};
|
|
|
|
|
2015-04-08 08:45:41 -07:00
|
|
|
buildInputs = [ openconnect networkmanager libsecret ]
|
2014-05-20 11:30:44 -07:00
|
|
|
++ stdenv.lib.optionals withGnome [ gnome3.gtk gnome3.libgnome_keyring gnome3.gconf ];
|
2013-07-10 07:18:18 -07:00
|
|
|
|
|
|
|
nativeBuildInputs = [ intltool pkgconfig ];
|
|
|
|
|
|
|
|
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-openconnect-service.c" \
|
2016-08-14 02:57:45 -07:00
|
|
|
--replace "/usr/sbin/openconnect" "${openconnect}/bin/openconnect" \
|
|
|
|
--replace "/sbin/modprobe" "${kmod}/bin/modprobe"
|
2013-07-10 07:18:18 -07:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2013-07-10 23:49:31 -07:00
|
|
|
description = "NetworkManager's OpenConnect plugin";
|
2013-07-10 07:18:18 -07:00
|
|
|
inherit (networkmanager.meta) maintainers platforms;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|