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";
|
2016-10-06 15:36:16 +01:00
|
|
|
major = "1.2";
|
2017-02-07 15:10:50 +00:00
|
|
|
version = "${major}.4";
|
2013-07-10 15:18:18 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-10-06 15:36:16 +01:00
|
|
|
url = "mirror://gnome/sources/${pname}/${major}/${pname}-${version}.tar.xz";
|
2017-02-07 15:10:50 +00:00
|
|
|
sha256 = "15j98wwspv6mcmy91w30as5qc1bzsnhlk060xhjy4qrvd37y0xx1";
|
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" \
|
2016-08-14 10:57:45 +01:00
|
|
|
--replace "/sbin/sysctl" "${procps}/bin/sysctl"
|
2013-07-10 15:18:18 +01:00
|
|
|
substituteInPlace "src/nm-openconnect-service.c" \
|
2016-08-14 10:57:45 +01:00
|
|
|
--replace "/usr/sbin/openconnect" "${openconnect}/bin/openconnect" \
|
|
|
|
--replace "/sbin/modprobe" "${kmod}/bin/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;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|