2017-12-25 01:14:37 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, xtrans, dbus_glib, systemd,
|
2018-02-13 22:44:07 +00:00
|
|
|
libSM, libXtst, gtk3, hicolor_icon_theme, mate,
|
2017-12-25 14:33:48 +00:00
|
|
|
wrapGAppsHook
|
2017-12-25 01:14:37 +00:00
|
|
|
}:
|
2017-08-31 04:10:20 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "mate-session-manager-${version}";
|
2018-02-14 01:22:51 +00:00
|
|
|
version = "1.20.0";
|
2017-08-31 04:10:20 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-02-13 22:44:07 +00:00
|
|
|
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
|
2018-02-14 01:22:51 +00:00
|
|
|
sha256 = "0vzr6y9shw4zb3ddfrj0nn7yqggpq9sv6h33p0xxdx71ydl40p2g";
|
2017-08-31 04:10:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
intltool
|
2017-12-25 01:14:37 +00:00
|
|
|
xtrans
|
2017-08-31 04:10:20 +01:00
|
|
|
wrapGAppsHook
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
dbus_glib
|
|
|
|
systemd
|
2017-12-25 01:14:37 +00:00
|
|
|
libSM
|
|
|
|
libXtst
|
|
|
|
gtk3
|
2018-02-13 22:44:07 +00:00
|
|
|
mate.mate-desktop
|
2017-09-01 21:27:24 +01:00
|
|
|
hicolor_icon_theme
|
2017-08-31 04:10:20 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "MATE Desktop session manager";
|
|
|
|
homepage = https://github.com/mate-desktop/mate-session-manager;
|
|
|
|
license = with licenses; [ gpl2 lgpl2 ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.romildo ];
|
|
|
|
};
|
|
|
|
}
|