2019-04-21 16:40:55 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, itstool, libxml2, libcanberra-gtk3, libgtop, libstartup_notification, gnome3, gtk3, wrapGAppsHook }:
|
2017-08-31 04:01:39 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "marco";
|
2019-12-10 16:37:56 +00:00
|
|
|
version = "1.22.4";
|
2017-08-31 04:01:39 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "http://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2019-12-10 16:37:56 +00:00
|
|
|
sha256 = "0z8q4nwm43imbnbxz348ylgzfl25sknb19kml57d6z6flxws19k3";
|
2017-08-31 04:01:39 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
intltool
|
|
|
|
itstool
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
libxml2
|
2018-02-25 02:23:58 +00:00
|
|
|
libcanberra-gtk3
|
2017-08-31 04:01:39 +01:00
|
|
|
libgtop
|
2019-04-19 11:14:39 +01:00
|
|
|
libstartup_notification
|
2019-03-09 11:41:12 +00:00
|
|
|
gtk3
|
2017-08-31 04:01:39 +01:00
|
|
|
gnome3.zenity
|
|
|
|
];
|
2019-03-09 11:41:12 +00:00
|
|
|
|
2017-08-31 04:01:39 +01: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 ];
|
|
|
|
};
|
|
|
|
}
|