2019-04-21 17:40:55 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, itstool, libxml2, libcanberra-gtk3, libgtop, libstartup_notification, gnome3, gtk3, wrapGAppsHook }:
|
2017-08-31 05:01:39 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "marco";
|
2019-06-19 23:13:44 +02:00
|
|
|
version = "1.22.2";
|
2017-08-31 05:01:39 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "http://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-06-19 23:13:44 +02:00
|
|
|
sha256 = "0sc7x14229yj22ka1vlzbaqndwcgh6idypjmm9rydkj4n968jwry";
|
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
|
2019-04-19 12:14:39 +02:00
|
|
|
libstartup_notification
|
2019-03-09 12:41:12 +01:00
|
|
|
gtk3
|
2017-08-31 05:01:39 +02:00
|
|
|
gnome3.zenity
|
|
|
|
];
|
2019-03-09 12:41:12 +01:00
|
|
|
|
2017-08-31 05:01:39 +02: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 ];
|
|
|
|
};
|
|
|
|
}
|