c51c1ababa
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/mate-indicator-applet/versions. These checks were done: - built on NixOS - 0 of 0 passed binary check by having a zero exit code. - 0 of 0 passed binary check by having the new version present in output. - found 1.20.1 with grep in /nix/store/4rwi8vc4kgvyybi0zjhg67mgqcmdibmq-mate-indicator-applet-1.20.1 - directory tree listing: https://gist.github.com/74f8c4b3af8ba029ade3f3d8561f5014 - du listing: https://gist.github.com/912f8a89025d3eed3952f3fb153bbcb4
44 lines
1.3 KiB
Nix
44 lines
1.3 KiB
Nix
{ stdenv, fetchurl, pkgconfig, intltool, gtk3, libindicator-gtk3, mate, hicolor-icon-theme, wrapGAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mate-indicator-applet-${version}";
|
|
version = "1.20.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
|
|
sha256 = "0gxis834w8h33xmrx335jjad2xaqpkamirl0x4j7wsk4zs25jkyd";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig
|
|
intltool
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
libindicator-gtk3
|
|
mate.mate-panel
|
|
hicolor-icon-theme
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/mate-desktop/mate-indicator-applet;
|
|
description = "MATE panel indicator applet";
|
|
longDescription = ''
|
|
A small applet to display information from various applications
|
|
consistently in the panel.
|
|
|
|
The indicator applet exposes Ayatana Indicators in the MATE Panel.
|
|
Ayatana Indicators are an initiative by Canonical to provide crisp and
|
|
clean system and application status indication. They take the form of
|
|
an icon and associated menu, displayed (usually) in the desktop panel.
|
|
Existing indicators include the Message Menu, Battery Menu and Sound
|
|
menu.
|
|
'';
|
|
license = with licenses; [ gpl3Plus lgpl2Plus ];
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.romildo ];
|
|
};
|
|
}
|