2018-07-05 22:17:22 +01:00
|
|
|
{ stdenv, fetchurl, fetchpatch, meson, ninja, intltool, gtk-doc, pkgconfig, networkmanager, gnome3
|
2018-03-20 19:10:07 +00:00
|
|
|
, libnotify, libsecret, polkit, isocodes, modemmanager, libxml2, docbook_xsl
|
2018-02-25 02:23:58 +00:00
|
|
|
, mobile-broadband-provider-info, glib-networking, gsettings-desktop-schemas
|
2018-03-20 19:10:07 +00:00
|
|
|
, libgudev, hicolor-icon-theme, jansson, wrapGAppsHook, webkitgtk, gobjectIntrospection
|
2017-12-07 11:55:55 +00:00
|
|
|
, libindicator-gtk3, libappindicator-gtk3, withGnome ? false }:
|
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";
|
2018-07-05 22:17:22 +01:00
|
|
|
version = "1.8.14";
|
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";
|
2018-07-05 22:17:22 +01:00
|
|
|
sha256 = "1js0i2kwfklahsn77qgxzdscy33drrlym3mrj1qhlw0zf8ri56ya";
|
2011-03-26 18:18:32 +00:00
|
|
|
};
|
|
|
|
|
2018-07-05 22:17:22 +01:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
url = https://gitlab.gnome.org/GNOME/network-manager-applet/merge_requests/12.patch;
|
|
|
|
sha256 = "0q5qbjpbrfvhqsprnwjwz4c42nly59cgnbn41w2zlxvqf29gjvwk";
|
|
|
|
})
|
2018-07-24 01:08:28 +01:00
|
|
|
|
|
|
|
# following 3 patches:
|
|
|
|
# https://gitlab.gnome.org/GNOME/network-manager-applet/issues/11
|
|
|
|
# should be fixed in 1.8.16
|
|
|
|
(fetchpatch {
|
|
|
|
name = "0001-connection-editor-hold-GApplication-while-the-import.patch";
|
|
|
|
url = https://gitlab.gnome.org/GNOME/network-manager-applet/commit/419c459e70ac752eb9226b0db1192fb0433d5d5e.patch;
|
|
|
|
sha256 = "0zi4fn2ynymi6ckkdrj8vcl78pwmkan4n8l53axaqb4kn0wnahdj";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
name = "0002-connection-list-attempt-a-VPN-import-first.patch";
|
|
|
|
url = https://gitlab.gnome.org/GNOME/network-manager-applet/commit/9d79ffdb148b31c7194c66946c87b6cd57ed54a3.patch;
|
|
|
|
sha256 = "1v0pdvkglrcfl1khp9j17cw0gvwg8scdha0wfziy054s1r6kyj23";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
name = "0003-bluetooth-fix-an-assert-failure-on-creation-cancella.patch";
|
|
|
|
url = https://gitlab.gnome.org/GNOME/network-manager-applet/commit/516f3f6c70ef9694d6004c64d50a9f3cd2725ab7.patch;
|
|
|
|
sha256 = "1msk4hmri3x5chmclxm7sdj1v9jg7pxqqrarlvsmfmshdwq4ljwk";
|
|
|
|
})
|
2018-07-05 22:17:22 +01:00
|
|
|
];
|
|
|
|
|
2018-03-20 19:10:07 +00:00
|
|
|
mesonFlags = [
|
|
|
|
"-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-03-20 19:10:07 +00:00
|
|
|
outputs = [ "out" "dev" "devdoc" ];
|
2017-09-25 14:40:41 +01:00
|
|
|
|
2012-08-01 10:51:41 +01:00
|
|
|
buildInputs = [
|
2018-03-20 19:10:07 +00:00
|
|
|
gnome3.gtk networkmanager libnotify libsecret gsettings-desktop-schemas
|
|
|
|
polkit isocodes libgudev
|
2018-02-25 02:23:58 +00:00
|
|
|
modemmanager jansson glib-networking
|
2017-12-07 11:55:55 +00:00
|
|
|
libindicator-gtk3 libappindicator-gtk3
|
2018-03-20 19:10:07 +00:00
|
|
|
] ++ stdenv.lib.optionals withGnome [ gnome3.gcr webkitgtk ];
|
2011-09-14 17:52:06 +01:00
|
|
|
|
2018-03-20 19:10:07 +00:00
|
|
|
nativeBuildInputs = [ meson ninja intltool pkgconfig wrapGAppsHook gobjectIntrospection gtk-doc docbook_xsl libxml2 ];
|
2013-07-22 21:18:26 +01:00
|
|
|
|
2018-04-17 22:42:53 +01:00
|
|
|
propagatedUserEnvPkgs = [
|
|
|
|
hicolor-icon-theme
|
|
|
|
];
|
2013-08-06 08:10:00 +01:00
|
|
|
|
2018-03-20 19:10:07 +00:00
|
|
|
NIX_CFLAGS = [
|
|
|
|
''-DMOBILE_BROADBAND_PROVIDER_INFO=\"${mobile-broadband-provider-info}/share/mobile-broadband-provider-info/serviceproviders.xml\"''
|
2012-08-01 10:51:41 +01:00
|
|
|
];
|
|
|
|
|
2018-03-20 19:10:07 +00:00
|
|
|
postPatch = ''
|
|
|
|
chmod +x meson_post_install.py # patchShebangs requires executable file
|
|
|
|
patchShebangs meson_post_install.py
|
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
|
|
|
}
|