2015-04-08 08:45:41 -07:00
|
|
|
{ stdenv, fetchurl, openconnect, intltool, pkgconfig, networkmanager, libsecret
|
2018-03-26 16:42:46 -07:00
|
|
|
, withGnome ? true, gnome3, sysctl, kmod }:
|
2013-07-10 07:18:18 -07:00
|
|
|
|
2018-03-06 21:10:26 -08:00
|
|
|
let
|
2016-06-21 18:09:21 -07:00
|
|
|
pname = "NetworkManager-openconnect";
|
2018-03-06 21:10:26 -08:00
|
|
|
version = "1.2.4";
|
|
|
|
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:26 -08:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2017-02-07 07:10:50 -08:00
|
|
|
sha256 = "15j98wwspv6mcmy91w30as5qc1bzsnhlk060xhjy4qrvd37y0xx1";
|
2013-07-10 07:18:18 -07:00
|
|
|
};
|
|
|
|
|
2015-04-08 08:45:41 -07:00
|
|
|
buildInputs = [ openconnect networkmanager libsecret ]
|
2018-02-24 18:23:58 -08: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" \
|
2018-03-26 16:42:46 -07:00
|
|
|
--replace "/sbin/sysctl" "${sysctl}/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
|
|
|
'';
|
|
|
|
|
2018-03-06 21:10:26 -08:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
attrPath = "networkmanager-openconnect";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|