2015-04-08 16:45:41 +01:00
|
|
|
{ stdenv, fetchurl, openconnect, intltool, pkgconfig, networkmanager, libsecret
|
2016-04-22 08:40:57 +01:00
|
|
|
, withGnome ? true, gnome3, procps, kmod }:
|
2013-07-10 15:18:18 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-06-22 02:09:21 +01:00
|
|
|
name = "${pname}${if withGnome then "-gnome" else ""}-${version}";
|
|
|
|
pname = "NetworkManager-openconnect";
|
|
|
|
version = networkmanager.version;
|
2013-07-10 15:18:18 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-06-22 02:09:21 +01:00
|
|
|
url = "mirror://gnome/sources/${pname}/${networkmanager.major}/${pname}-${version}.tar.xz";
|
|
|
|
sha256 = "522979593e21b4e884112816708db9eb66148b3491580dacfad53472b94aafec";
|
2013-07-10 15:18:18 +01:00
|
|
|
};
|
|
|
|
|
2015-04-08 16:45:41 +01:00
|
|
|
buildInputs = [ openconnect networkmanager libsecret ]
|
2014-05-20 19:30:44 +01:00
|
|
|
++ stdenv.lib.optionals withGnome [ gnome3.gtk gnome3.libgnome_keyring gnome3.gconf ];
|
2013-07-10 15:18:18 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [ intltool pkgconfig ];
|
|
|
|
|
|
|
|
configureFlags = [
|
2014-05-20 19:30:44 +01:00
|
|
|
"${if withGnome then "--with-gnome --with-gtkver=3" else "--without-gnome"}"
|
2013-07-10 15:18:18 +01:00
|
|
|
"--disable-static"
|
|
|
|
];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace "configure" \
|
|
|
|
--replace "/sbin/sysctl" "${procps}/sbin/sysctl"
|
|
|
|
substituteInPlace "src/nm-openconnect-service.c" \
|
2014-01-25 12:30:56 +00:00
|
|
|
--replace "/usr/sbin/openconnect" "${openconnect}/sbin/openconnect" \
|
2016-04-22 08:40:57 +01:00
|
|
|
--replace "/sbin/modprobe" "${kmod}/sbin/modprobe"
|
2013-07-10 15:18:18 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
2013-07-11 07:49:31 +01:00
|
|
|
description = "NetworkManager's OpenConnect plugin";
|
2013-07-10 15:18:18 +01:00
|
|
|
inherit (networkmanager.meta) maintainers platforms;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|