2019-04-19 03:14:39 -07:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, itstool, libxml2, libcanberra-gtk3, libgtop, libstartup_notification, gnome3, gtk3, mate, wrapGAppsHook }:
|
2017-08-30 20:01:39 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "marco-${version}";
|
2019-04-21 05:02:45 -07:00
|
|
|
version = "1.22.0";
|
2017-08-30 20:01:39 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-02-13 14:44:07 -08:00
|
|
|
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
|
2019-04-21 05:02:45 -07:00
|
|
|
sha256 = "1i1pi1z9mrb6564mxcwb93jqpdppfv58c2viwmicsixis62hv5wx";
|
2017-08-30 20:01:39 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
intltool
|
|
|
|
itstool
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
libxml2
|
2018-02-24 18:23:58 -08:00
|
|
|
libcanberra-gtk3
|
2017-08-30 20:01:39 -07:00
|
|
|
libgtop
|
2019-04-19 03:14:39 -07:00
|
|
|
libstartup_notification
|
2019-03-09 03:41:12 -08:00
|
|
|
gtk3
|
2017-08-30 20:01:39 -07:00
|
|
|
gnome3.zenity
|
|
|
|
];
|
2019-03-09 03:41:12 -08:00
|
|
|
|
2017-08-30 20:01:39 -07:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|