2021-05-07 23:18:14 +02:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, gettext, glib, itstool, libxml2, mate-panel, libnotify, libcanberra-gtk3, dbus-glib, upower, gnome, gtk3, libtool, polkit, wrapGAppsHook, mateUpdateScript }:
|
2017-10-04 13:23:46 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "mate-power-manager";
|
2021-04-02 23:56:02 +02:00
|
|
|
version = "1.24.3";
|
2017-10-04 13:23:46 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-01-15 14:21:58 +01:00
|
|
|
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2021-04-02 23:56:02 +02:00
|
|
|
sha256 = "1rmcrpii3hl35qjznk6h5cq72n60cs12n294hjyakxr9kvgns7l6";
|
2017-10-04 13:23:46 +02:00
|
|
|
};
|
|
|
|
|
2020-02-12 18:51:22 +01:00
|
|
|
nativeBuildInputs = [
|
2021-01-17 03:21:50 +01:00
|
|
|
pkg-config
|
2020-02-14 15:09:49 +01:00
|
|
|
gettext
|
2020-02-12 18:51:22 +01:00
|
|
|
libtool
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
2017-10-04 13:23:46 +02:00
|
|
|
buildInputs = [
|
|
|
|
glib
|
|
|
|
itstool
|
|
|
|
libxml2
|
2018-02-25 03:23:58 +01:00
|
|
|
libcanberra-gtk3
|
2019-03-09 12:41:12 +01:00
|
|
|
gtk3
|
2021-05-07 23:18:14 +02:00
|
|
|
gnome.libgnome-keyring
|
2017-10-04 13:23:46 +02:00
|
|
|
libnotify
|
2018-02-25 03:23:58 +01:00
|
|
|
dbus-glib
|
2017-10-04 13:23:46 +02:00
|
|
|
upower
|
2020-02-12 18:51:22 +01:00
|
|
|
polkit
|
2020-03-20 13:46:44 +01:00
|
|
|
mate-panel
|
2017-10-04 13:23:46 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
configureFlags = [ "--enable-applets" ];
|
|
|
|
|
2020-02-14 22:52:51 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-04-02 21:58:16 +02:00
|
|
|
passthru.updateScript = mateUpdateScript { inherit pname version; };
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2017-10-04 13:23:46 +02:00
|
|
|
description = "The MATE Power Manager";
|
2020-02-12 18:51:22 +01:00
|
|
|
homepage = "https://mate-desktop.org";
|
2021-04-22 15:23:43 +02:00
|
|
|
license = with licenses; [ gpl2Plus fdl11Plus ];
|
2017-10-04 13:23:46 +02:00
|
|
|
platforms = platforms.unix;
|
2020-02-12 18:51:22 +01:00
|
|
|
maintainers = with maintainers; [ romildo chpatrick ];
|
2017-10-04 13:23:46 +02:00
|
|
|
};
|
|
|
|
}
|