2018-02-25 02:23:58 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, itstool, gtk3, libxml2, libgtop, libcanberra-gtk3, mate, hicolor-icon-theme, wrapGAppsHook }:
|
2018-01-03 21:18:22 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "mate-utils-${version}";
|
2019-01-14 13:47:38 +00:00
|
|
|
version = "1.20.2";
|
2018-01-03 21:18:22 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-02-13 22:44:07 +00:00
|
|
|
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
|
2019-01-14 13:47:38 +00:00
|
|
|
sha256 = "0w7hw192jzhad8jab8mjms4x6k2xijvb3rhlbxb6z5n5880xgfqf";
|
2018-01-03 21:18:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
intltool
|
|
|
|
itstool
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gtk3
|
|
|
|
libgtop
|
2018-02-25 02:23:58 +00:00
|
|
|
libcanberra-gtk3
|
2018-01-03 21:18:22 +00:00
|
|
|
libxml2
|
2018-02-13 22:44:07 +00:00
|
|
|
mate.mate-panel
|
2018-02-25 02:23:58 +00:00
|
|
|
hicolor-icon-theme
|
2018-01-03 21:18:22 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Utilities for the MATE desktop";
|
|
|
|
homepage = http://mate-desktop.org;
|
|
|
|
license = with licenses; [ gpl2Plus lgpl2Plus ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.romildo ];
|
|
|
|
};
|
|
|
|
}
|