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