2018-02-13 14:44:07 -08:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, gtk3, libwnck3, libfakekey, libXtst, mate, wrapGAppsHook }:
|
2018-01-01 05:23:20 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "mate-netbook";
|
2019-10-14 12:49:48 -07:00
|
|
|
version = "1.22.2";
|
2018-01-01 05:23:20 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-12-13 14:37:37 -08:00
|
|
|
url = "https://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-10-14 12:49:48 -07:00
|
|
|
sha256 = "0m38v2276s2d3zs7smxyf70nyl7bcwp5665zgva28lvs8ip3gijx";
|
2018-01-01 05:23:20 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
intltool
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gtk3
|
|
|
|
libwnck3
|
|
|
|
libfakekey
|
|
|
|
libXtst
|
2018-02-13 14:44:07 -08:00
|
|
|
mate.mate-panel
|
2018-01-01 05:23:20 -08:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "MATE utilities for netbooks";
|
|
|
|
longDescription = ''
|
|
|
|
MATE utilities for netbooks are an applet and a daemon to maximize
|
|
|
|
windows and move their titles on the panel.
|
|
|
|
|
|
|
|
Installing these utilities is recommended for netbooks and similar
|
|
|
|
devices with low resolution displays.
|
|
|
|
'';
|
2019-04-14 16:25:45 -07:00
|
|
|
homepage = https://mate-desktop.org;
|
2018-01-01 05:23:20 -08:00
|
|
|
license = with licenses; [ gpl3 lgpl2Plus ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.romildo ];
|
|
|
|
};
|
|
|
|
}
|