2018-08-06 23:15:56 +01:00
|
|
|
{ stdenv, fetchurl, meson, ninja, intltool, gtk-doc, pkgconfig, networkmanager, gnome3
|
2018-08-20 10:57:29 +01:00
|
|
|
, libnotify, libsecret, polkit, isocodes, modemmanager, libxml2, docbook_xsl, docbook_xml_dtd_43
|
2018-02-25 02:23:58 +00:00
|
|
|
, mobile-broadband-provider-info, glib-networking, gsettings-desktop-schemas
|
2019-02-13 21:47:50 +00:00
|
|
|
, libgudev, jansson, wrapGAppsHook, gobject-introspection, python3, gtk3
|
2018-12-25 22:41:02 +00:00
|
|
|
, libappindicator-gtk3, withGnome ? false, gcr }:
|
2011-09-14 17:52:06 +01:00
|
|
|
|
2018-03-07 05:09:32 +00:00
|
|
|
let
|
2018-03-20 19:10:07 +00:00
|
|
|
pname = "network-manager-applet";
|
2019-06-04 21:10:49 +01:00
|
|
|
version = "1.8.22";
|
2018-03-07 05:09:32 +00:00
|
|
|
in stdenv.mkDerivation rec {
|
2018-03-20 19:10:07 +00:00
|
|
|
name = "${pname}-${version}";
|
2011-03-26 18:18:32 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-03-20 19:10:07 +00:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
2019-06-04 21:10:49 +01:00
|
|
|
sha256 = "1vbyhxknixyrf75pbjl3rxcy32m8y9cx5s30s3598vgza081rvzb";
|
2011-03-26 18:18:32 +00:00
|
|
|
};
|
|
|
|
|
2018-03-20 19:10:07 +00:00
|
|
|
mesonFlags = [
|
2018-08-20 10:53:30 +01:00
|
|
|
"-Dlibnm_gtk=false" # It is deprecated
|
2018-03-20 19:10:07 +00:00
|
|
|
"-Dselinux=false"
|
2018-07-05 22:17:22 +01:00
|
|
|
"-Dappindicator=yes"
|
2018-03-20 19:10:07 +00:00
|
|
|
"-Dgcr=${if withGnome then "true" else "false"}"
|
2017-09-16 04:15:33 +01:00
|
|
|
];
|
2015-05-20 12:57:15 +01:00
|
|
|
|
2018-08-09 13:35:47 +01:00
|
|
|
outputs = [ "out" "lib" "dev" "devdoc" "man" ];
|
2017-09-25 14:40:41 +01:00
|
|
|
|
2012-08-01 10:51:41 +01:00
|
|
|
buildInputs = [
|
2019-02-13 21:47:50 +00:00
|
|
|
gtk3 networkmanager libnotify libsecret gsettings-desktop-schemas
|
2018-08-06 23:15:56 +01:00
|
|
|
polkit isocodes mobile-broadband-provider-info libgudev
|
2018-02-25 02:23:58 +00:00
|
|
|
modemmanager jansson glib-networking
|
2019-02-13 21:47:50 +00:00
|
|
|
libappindicator-gtk3 gnome3.adwaita-icon-theme
|
2018-12-25 22:41:02 +00:00
|
|
|
] ++ stdenv.lib.optionals withGnome [ gcr ]; # advanced certificate chooser
|
2011-09-14 17:52:06 +01:00
|
|
|
|
2018-12-02 11:41:15 +00:00
|
|
|
nativeBuildInputs = [ meson ninja intltool pkgconfig wrapGAppsHook gobject-introspection python3 gtk-doc docbook_xsl docbook_xml_dtd_43 libxml2 ];
|
2013-07-22 21:18:26 +01:00
|
|
|
|
2019-04-12 00:46:33 +01:00
|
|
|
# Needed for wingpanel-indicator-network and switchboard-plug-network
|
|
|
|
patches = [ ./hardcode-gsettings.patch ];
|
|
|
|
|
2018-03-20 19:10:07 +00:00
|
|
|
postPatch = ''
|
|
|
|
chmod +x meson_post_install.py # patchShebangs requires executable file
|
|
|
|
patchShebangs meson_post_install.py
|
2019-04-12 00:46:33 +01:00
|
|
|
|
|
|
|
substituteInPlace src/wireless-security/eap-method.c --subst-var-by NM_APPLET_GSETTINGS $lib/share/gsettings-schemas/${name}/glib-2.0/schemas
|
2016-06-22 01:46:23 +01:00
|
|
|
'';
|
2015-05-20 12:57:15 +01:00
|
|
|
|
2018-03-07 05:09:32 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
attrPath = "networkmanagerapplet";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2011-03-26 18:18:32 +00:00
|
|
|
meta = with stdenv.lib; {
|
2018-03-20 19:10:07 +00:00
|
|
|
homepage = https://wiki.gnome.org/Projects/NetworkManager;
|
2011-09-14 17:52:06 +01:00
|
|
|
description = "NetworkManager control applet for GNOME";
|
2018-03-20 19:10:07 +00:00
|
|
|
license = licenses.gpl2;
|
2017-03-27 18:11:17 +01:00
|
|
|
maintainers = with maintainers; [ phreedom rickynils ];
|
2018-03-20 19:10:07 +00:00
|
|
|
platforms = platforms.linux;
|
2011-03-26 18:18:32 +00:00
|
|
|
};
|
2011-09-14 17:52:06 +01:00
|
|
|
}
|