2019-08-07 13:39:27 +00:00
|
|
|
{ stdenv, fetchurl, substituteAll, openconnect, intltool, pkgconfig, autoreconfHook, networkmanager, gcr, libsecret, file
|
2019-02-13 21:47:50 +00:00
|
|
|
, gtk3, withGnome ? true, gnome3, kmod }:
|
2013-07-10 14:18:18 +00:00
|
|
|
|
2018-03-07 05:10:26 +00:00
|
|
|
let
|
2016-06-22 01:09:21 +00:00
|
|
|
pname = "NetworkManager-openconnect";
|
2019-08-07 13:39:27 +00:00
|
|
|
version = "1.2.6";
|
2019-08-13 21:52:01 +00:00
|
|
|
in stdenv.mkDerivation {
|
2018-03-07 05:10:26 +00:00
|
|
|
name = "${pname}${if withGnome then "-gnome" else ""}-${version}";
|
2013-07-10 14:18:18 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-03-07 05:10:26 +00:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-08-07 13:39:27 +00:00
|
|
|
sha256 = "0nlp290nkawc4wqm978n4vhzg3xdqi8kpjjx19l855vab41rh44m";
|
2013-07-10 14:18:18 +00:00
|
|
|
};
|
|
|
|
|
2018-08-09 15:09:11 +00:00
|
|
|
patches = [
|
|
|
|
(substituteAll {
|
|
|
|
src = ./fix-paths.patch;
|
|
|
|
inherit kmod openconnect;
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [ openconnect networkmanager ]
|
2019-08-07 13:39:27 +00:00
|
|
|
++ stdenv.lib.optionals withGnome [ gtk3 gcr libsecret ];
|
2013-07-10 14:18:18 +00:00
|
|
|
|
2019-08-07 13:39:27 +00:00
|
|
|
nativeBuildInputs = [ intltool pkgconfig file ];
|
2013-07-10 14:18:18 +00:00
|
|
|
|
|
|
|
configureFlags = [
|
2018-08-09 15:09:11 +00:00
|
|
|
"--with-gnome=${if withGnome then "yes" else "no"}"
|
2018-09-23 10:53:46 +00:00
|
|
|
"--enable-absolute-paths"
|
2019-08-07 13:39:27 +00:00
|
|
|
"--without-libnm-glib"
|
2013-07-10 14:18:18 +00:00
|
|
|
];
|
|
|
|
|
2018-03-07 05:10:26 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
attrPath = "networkmanager-openconnect";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-08-09 15:09:11 +00:00
|
|
|
meta = with stdenv.lib; {
|
2013-07-11 06:49:31 +00:00
|
|
|
description = "NetworkManager's OpenConnect plugin";
|
2013-07-10 14:18:18 +00:00
|
|
|
inherit (networkmanager.meta) maintainers platforms;
|
2018-08-09 15:09:11 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2013-07-10 14:18:18 +00:00
|
|
|
};
|
|
|
|
}
|