2019-04-24 14:48:10 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, itstool, gtk3, libxml2, libgtop, libcanberra-gtk3, inkscape, mate, hicolor-icon-theme, wrapGAppsHook }:
|
2018-01-03 21:18:22 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "mate-utils";
|
2019-04-23 20:03:01 +00:00
|
|
|
version = "1.22.1";
|
2018-01-03 21:18:22 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "http://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-04-23 20:03:01 +00:00
|
|
|
sha256 = "0768y6x33ljc9dxjlfmvplsn4lrxj5xhjddbyab9h6pqav8527rg";
|
2018-01-03 21:18:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
intltool
|
|
|
|
itstool
|
2019-04-24 14:48:10 +00:00
|
|
|
inkscape
|
2018-01-03 21:18:22 +00:00
|
|
|
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";
|
2019-04-14 23:25:45 +00:00
|
|
|
homepage = https://mate-desktop.org;
|
2018-01-03 21:18:22 +00:00
|
|
|
license = with licenses; [ gpl2Plus lgpl2Plus ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.romildo ];
|
|
|
|
};
|
|
|
|
}
|