2018-02-25 03:23:58 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, itstool, libxml2, libcanberra-gtk3, libgtop, gnome2, gnome3, mate, wrapGAppsHook }:
|
2017-08-31 05:01:39 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "marco-${version}";
|
2018-02-14 02:22:51 +01:00
|
|
|
version = "1.20.0";
|
2017-08-31 05:01:39 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-02-13 23:44:07 +01:00
|
|
|
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
|
2018-02-14 02:22:51 +01:00
|
|
|
sha256 = "07asf8i15ih6ajkp5yapk720qyssi2cinxwg2z5q5j9m6mxax6lr";
|
2017-08-31 05:01:39 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
intltool
|
|
|
|
itstool
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
libxml2
|
2018-02-25 03:23:58 +01:00
|
|
|
libcanberra-gtk3
|
2017-08-31 05:01:39 +02:00
|
|
|
libgtop
|
|
|
|
gnome2.startup_notification
|
|
|
|
gnome3.gtk
|
|
|
|
gnome3.zenity
|
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "MATE default window manager";
|
|
|
|
homepage = https://github.com/mate-desktop/marco;
|
|
|
|
license = [ licenses.gpl2 ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.romildo ];
|
|
|
|
};
|
|
|
|
}
|