mate-indicator-applet: init at 1.18.1

authored by José Romildo Malaquias and committed by Tuomas Tynkkynen ea3582ab 5930d871

+47
+2
pkgs/desktops/mate/default.nix
··· 25 25 mate-desktop = callPackage ./mate-desktop { }; 26 26 mate-icon-theme = callPackage ./mate-icon-theme { }; 27 27 mate-icon-theme-faenza = callPackage ./mate-icon-theme-faenza { }; 28 + mate-indicator-applet = callPackage ./mate-indicator-applet { }; 28 29 mate-media = callPackage ./mate-media { }; 29 30 mate-menus = callPackage ./mate-menus { }; 30 31 mate-netbook = callPackage ./mate-netbook { }; ··· 70 71 mate-backgrounds 71 72 mate-calc 72 73 mate-icon-theme-faenza 74 + mate-indicator-applet 73 75 mate-media 74 76 mate-netbook 75 77 mate-power-manager
+45
pkgs/desktops/mate/mate-indicator-applet/default.nix
··· 1 + { stdenv, fetchurl, pkgconfig, intltool, gtk3, libindicator-gtk3, mate-panel, hicolor_icon_theme, wrapGAppsHook }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "mate-indicator-applet-${version}"; 5 + version = "${major-ver}.${minor-ver}"; 6 + major-ver = "1.18"; 7 + minor-ver = "1"; 8 + 9 + src = fetchurl { 10 + url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz"; 11 + sha256 = "1h77f1gbz1a8l9xyq5fk75bs58mcwx6pbk6db33v0v1mwq6cidiv"; 12 + }; 13 + 14 + nativeBuildInputs = [ 15 + pkgconfig 16 + intltool 17 + wrapGAppsHook 18 + ]; 19 + 20 + buildInputs = [ 21 + gtk3 22 + libindicator-gtk3 23 + mate-panel 24 + hicolor_icon_theme 25 + ]; 26 + 27 + meta = with stdenv.lib; { 28 + homepage = https://github.com/mate-desktop/mate-indicator-applet; 29 + description = "MATE panel indicator applet"; 30 + longDescription = '' 31 + A small applet to display information from various applications 32 + consistently in the panel. 33 + 34 + The indicator applet exposes Ayatana Indicators in the MATE Panel. 35 + Ayatana Indicators are an initiative by Canonical to provide crisp and 36 + clean system and application status indication. They take the form of 37 + an icon and associated menu, displayed (usually) in the desktop panel. 38 + Existing indicators include the Message Menu, Battery Menu and Sound 39 + menu. 40 + ''; 41 + license = with licenses; [ gpl3Plus lgpl2Plus ]; 42 + platforms = platforms.unix; 43 + maintainers = [ maintainers.romildo ]; 44 + }; 45 + }