2019-11-10 01:09:20 +00:00
|
|
|
|
{ stdenv
|
|
|
|
|
, fetchurl
|
|
|
|
|
, substituteAll
|
2019-11-10 01:13:54 +00:00
|
|
|
|
, glib
|
|
|
|
|
, libxml2
|
2019-11-10 01:09:20 +00:00
|
|
|
|
, openconnect
|
|
|
|
|
, intltool
|
|
|
|
|
, pkgconfig
|
|
|
|
|
, autoreconfHook
|
|
|
|
|
, networkmanager
|
|
|
|
|
, gcr
|
|
|
|
|
, libsecret
|
|
|
|
|
, file
|
|
|
|
|
, gtk3
|
|
|
|
|
, withGnome ? true
|
|
|
|
|
, gnome3
|
|
|
|
|
, kmod
|
|
|
|
|
, fetchpatch
|
|
|
|
|
}:
|
2013-07-10 15:18:18 +01:00
|
|
|
|
|
2018-03-07 05:10:26 +00:00
|
|
|
|
let
|
2019-11-10 01:09:20 +00:00
|
|
|
|
pname = "NetworkManager-openconnect";
|
2019-08-07 14:39:27 +01:00
|
|
|
|
version = "1.2.6";
|
2019-08-13 22:52:01 +01:00
|
|
|
|
in stdenv.mkDerivation {
|
2019-11-10 01:09:20 +00:00
|
|
|
|
name = "${pname}${if withGnome then "-gnome" else ""}-${version}";
|
2013-07-10 15:18:18 +01:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-11-10 01:09:20 +00:00
|
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-08-07 14:39:27 +01:00
|
|
|
|
sha256 = "0nlp290nkawc4wqm978n4vhzg3xdqi8kpjjx19l855vab41rh44m";
|
2013-07-10 15:18:18 +01:00
|
|
|
|
};
|
|
|
|
|
|
2018-08-09 16:09:11 +01:00
|
|
|
|
patches = [
|
|
|
|
|
(substituteAll {
|
|
|
|
|
src = ./fix-paths.patch;
|
|
|
|
|
inherit kmod openconnect;
|
|
|
|
|
})
|
2019-11-10 01:09:20 +00:00
|
|
|
|
|
2019-09-16 04:39:14 +01:00
|
|
|
|
# Don't use etc/dbus-1/system.d
|
|
|
|
|
(fetchpatch {
|
|
|
|
|
url = "https://gitlab.gnome.org/GNOME/NetworkManager-openconnect/merge_requests/9.patch";
|
|
|
|
|
sha256 = "0yd2dmq6gq6y4czr7dqdgaiqvw2vyv2gikznpfdxyfn2v1pcrk9m";
|
|
|
|
|
})
|
2018-08-09 16:09:11 +01:00
|
|
|
|
];
|
|
|
|
|
|
2019-11-10 01:09:20 +00:00
|
|
|
|
buildInputs = [
|
2019-11-10 01:13:54 +00:00
|
|
|
|
glib
|
|
|
|
|
libxml2
|
2019-11-10 01:09:20 +00:00
|
|
|
|
openconnect
|
|
|
|
|
networkmanager
|
|
|
|
|
] ++ stdenv.lib.optionals withGnome [
|
|
|
|
|
gtk3
|
|
|
|
|
gcr
|
|
|
|
|
libsecret
|
|
|
|
|
];
|
2013-07-10 15:18:18 +01:00
|
|
|
|
|
2019-11-10 01:09:20 +00:00
|
|
|
|
nativeBuildInputs = [
|
|
|
|
|
intltool
|
|
|
|
|
pkgconfig
|
|
|
|
|
file
|
|
|
|
|
];
|
2013-07-10 15:18:18 +01:00
|
|
|
|
|
|
|
|
|
configureFlags = [
|
2018-08-09 16:09:11 +01:00
|
|
|
|
"--with-gnome=${if withGnome then "yes" else "no"}"
|
2018-09-23 11:53:46 +01:00
|
|
|
|
"--enable-absolute-paths"
|
2019-08-07 14:39:27 +01:00
|
|
|
|
"--without-libnm-glib"
|
2013-07-10 15:18:18 +01:00
|
|
|
|
];
|
|
|
|
|
|
2018-03-07 05:10:26 +00:00
|
|
|
|
passthru = {
|
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
|
packageName = pname;
|
|
|
|
|
attrPath = "networkmanager-openconnect";
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2018-08-09 16:09:11 +01:00
|
|
|
|
meta = with stdenv.lib; {
|
2019-11-10 01:09:20 +00:00
|
|
|
|
description = "NetworkManager’s OpenConnect plugin";
|
2013-07-10 15:18:18 +01:00
|
|
|
|
inherit (networkmanager.meta) maintainers platforms;
|
2018-08-09 16:09:11 +01:00
|
|
|
|
license = licenses.gpl2Plus;
|
2013-07-10 15:18:18 +01:00
|
|
|
|
};
|
|
|
|
|
}
|