mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
40 lines
922 B
Nix
40 lines
922 B
Nix
{ stdenv, fetchurl, pkgconfig, intltool, xtrans, dbus-glib, systemd,
|
|
libSM, libXtst, gtk3, hicolor-icon-theme, mate,
|
|
wrapGAppsHook
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mate-session-manager";
|
|
version = "1.22.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://pub.mate-desktop.org/releases/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
|
sha256 = "1ys26af75xl1psck8v32gygxipd8ms1xgpvdhwmnj7bqhabhh249";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig
|
|
intltool
|
|
xtrans
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
dbus-glib
|
|
systemd
|
|
libSM
|
|
libXtst
|
|
gtk3
|
|
mate.mate-desktop
|
|
hicolor-icon-theme
|
|
];
|
|
|
|
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 ];
|
|
};
|
|
}
|