nixpkgs/pkgs/desktops/mate/mate-applets/default.nix

53 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, gettext, itstool, gnome, glib, gtk3, gtksourceview3, libwnck3
, libgtop, libxml2, libnotify, polkit, upower, wirelesstools, mate, hicolor-icon-theme, wrapGAppsHook
, mateUpdateScript }:
2018-01-03 18:03:10 -08:00
stdenv.mkDerivation rec {
pname = "mate-applets";
2020-09-18 08:15:20 -07:00
version = "1.24.1";
2018-01-03 18:03:10 -08:00
src = fetchurl {
2021-01-15 05:21:58 -08:00
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2020-09-18 08:15:20 -07:00
sha256 = "0h70i4x3bk017pgv4zn280682wm58vwdjm7kni91ni8rmblnnvyp";
2018-01-03 18:03:10 -08:00
};
nativeBuildInputs = [
2021-01-16 18:21:50 -08:00
pkg-config
gettext
2018-01-03 18:03:10 -08:00
itstool
wrapGAppsHook
];
buildInputs = [
gtk3
2019-03-22 21:50:12 -07:00
gtksourceview3
gnome.gucharmap
2018-01-03 18:03:10 -08:00
libwnck3
libgtop
libxml2
libnotify
polkit
upower
wirelesstools
mate.libmateweather
mate.mate-panel
hicolor-icon-theme
2018-01-03 18:03:10 -08:00
];
configureFlags = [ "--enable-suid=no" ];
NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
2018-01-03 18:03:10 -08:00
2020-02-14 13:52:51 -08:00
enableParallelBuilding = true;
2021-04-02 12:58:16 -07:00
passthru.updateScript = mateUpdateScript { inherit pname version; };
meta = with lib; {
2018-01-03 18:03:10 -08:00
description = "Applets for use with the MATE panel";
2020-02-12 09:51:19 -08:00
homepage = "https://mate-desktop.org";
2018-01-03 18:03:10 -08:00
license = with licenses; [ gpl2Plus lgpl2Plus ];
platforms = platforms.linux;
maintainers = [ maintainers.romildo ];
};
}