2021-04-21 20:33:51 +02:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, gettext, itstool, libxml2, libcanberra-gtk3, libgtop
|
2021-05-07 23:18:14 +02:00
|
|
|
, libXdamage, libXpresent, libstartup_notification, gnome, gtk3, mate-settings-daemon, wrapGAppsHook, mateUpdateScript }:
|
2017-08-31 05:01:39 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "marco";
|
2021-04-02 23:56:02 +02:00
|
|
|
version = "1.24.2";
|
2017-08-31 05:01:39 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-01-15 14:21:58 +01:00
|
|
|
url = "https://pub.mate-desktop.org/releases/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2021-04-02 23:56:02 +02:00
|
|
|
sha256 = "19s2y2s9immp86ni3395mgxl605m2wn10m8399y9qkgw2b5m10s9";
|
2017-08-31 05:01:39 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
2021-01-17 03:21:50 +01:00
|
|
|
pkg-config
|
2020-02-14 15:09:49 +01:00
|
|
|
gettext
|
2017-08-31 05:01:39 +02:00
|
|
|
itstool
|
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
libxml2
|
2018-02-25 03:23:58 +01:00
|
|
|
libcanberra-gtk3
|
2017-08-31 05:01:39 +02:00
|
|
|
libgtop
|
2021-04-21 20:33:51 +02:00
|
|
|
libXdamage
|
|
|
|
libXpresent
|
2019-04-19 12:14:39 +02:00
|
|
|
libstartup_notification
|
2019-03-09 12:41:12 +01:00
|
|
|
gtk3
|
2021-05-07 23:18:14 +02:00
|
|
|
gnome.zenity
|
2020-02-14 13:27:50 +01:00
|
|
|
mate-settings-daemon
|
2017-08-31 05:01:39 +02:00
|
|
|
];
|
2019-03-09 12:41:12 +01:00
|
|
|
|
2020-02-14 22:52:51 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-04-02 21:58:16 +02:00
|
|
|
passthru.updateScript = mateUpdateScript { inherit pname version; };
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2017-08-31 05:01:39 +02:00
|
|
|
description = "MATE default window manager";
|
2020-02-12 18:51:19 +01:00
|
|
|
homepage = "https://github.com/mate-desktop/marco";
|
2021-04-22 15:23:43 +02:00
|
|
|
license = [ licenses.gpl2Plus ];
|
2017-08-31 05:01:39 +02:00
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.romildo ];
|
|
|
|
};
|
|
|
|
}
|