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

53 lines
1.3 KiB
Nix
Raw Normal View History

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