2020-02-14 14:09:49 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gettext, xtrans, dbus-glib, systemd,
|
2020-02-12 17:51:22 +00:00
|
|
|
libSM, libXtst, gtk3, epoxy, polkit, hicolor-icon-theme, mate,
|
2020-02-18 21:33:48 +00:00
|
|
|
wrapGAppsHook, fetchpatch
|
2017-12-25 01:14:37 +00:00
|
|
|
}:
|
2017-08-31 04:10:20 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "mate-session-manager";
|
2020-02-12 17:51:22 +00:00
|
|
|
version = "1.24.0";
|
2017-08-31 04:10:20 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-12-13 22:37:37 +00:00
|
|
|
url = "https://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2020-02-12 17:51:22 +00:00
|
|
|
sha256 = "01scj5d1xlri9b2id8gm9kfni9nzhdjdf7rag7fvcxwqp7baz3h3";
|
2017-08-31 04:10:20 +01:00
|
|
|
};
|
|
|
|
|
2020-02-18 21:33:48 +00:00
|
|
|
patches = [
|
|
|
|
# allow turning on debugging from environment variable
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/mate-desktop/mate-session-manager/commit/3ab6fbfc811d00100d7a2959f8bbb157b536690d.patch";
|
|
|
|
sha256 = "0yjaklq0mp44clymyhy240kxlw95z3azmravh4f5pfm9dys33sg0";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2017-08-31 04:10:20 +01:00
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
2020-02-14 14:09:49 +00:00
|
|
|
gettext
|
2017-12-25 01:14:37 +00:00
|
|
|
xtrans
|
2017-08-31 04:10:20 +01:00
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
2018-02-25 02:23:58 +00:00
|
|
|
dbus-glib
|
2017-08-31 04:10:20 +01:00
|
|
|
systemd
|
2017-12-25 01:14:37 +00:00
|
|
|
libSM
|
|
|
|
libXtst
|
|
|
|
gtk3
|
2018-02-13 22:44:07 +00:00
|
|
|
mate.mate-desktop
|
2018-02-25 02:23:58 +00:00
|
|
|
hicolor-icon-theme
|
2020-02-12 17:51:22 +00:00
|
|
|
epoxy
|
|
|
|
polkit
|
2017-08-31 04:10:20 +01:00
|
|
|
];
|
|
|
|
|
2020-02-14 21:52:51 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2020-02-13 22:32:12 +00:00
|
|
|
postFixup = ''
|
|
|
|
substituteInPlace $out/share/xsessions/mate.desktop \
|
|
|
|
--replace "Exec=mate-session" "Exec=$out/bin/mate-session" \
|
|
|
|
--replace "TryExec=mate-session" "TryExec=$out/bin/mate-session"
|
|
|
|
'';
|
|
|
|
|
|
|
|
passthru.providedSessions = [ "mate" ];
|
|
|
|
|
2017-08-31 04:10:20 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "MATE Desktop session manager";
|
2020-02-12 17:51:22 +00:00
|
|
|
homepage = "https://github.com/mate-desktop/mate-session-manager";
|
2017-08-31 04:10:20 +01:00
|
|
|
license = with licenses; [ gpl2 lgpl2 ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.romildo ];
|
|
|
|
};
|
|
|
|
}
|