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