44 lines
1.1 KiB
Nix
44 lines
1.1 KiB
Nix
{ stdenv, fetchurl, pkgconfig, intltool, glib, dbus_glib, libxklavier, libcanberra_gtk3, libnotify, nss, polkit, gnome3, mate, wrapGAppsHook
|
|
, pulseaudioSupport ? stdenv.config.pulseaudio or true, libpulseaudio
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "mate-settings-daemon-${version}";
|
|
version = "1.20.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
|
|
sha256 = "0p4fr2sgkjcjsrmkdy579xmk20dl0sa6az40rzvm6fb2w6693sf5";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkgconfig
|
|
intltool
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
dbus_glib
|
|
libxklavier
|
|
libcanberra_gtk3
|
|
libnotify
|
|
nss
|
|
polkit
|
|
gnome3.gtk
|
|
gnome3.dconf
|
|
mate.mate-desktop
|
|
mate.libmatekbd
|
|
mate.libmatemixer
|
|
] ++ stdenv.lib.optional pulseaudioSupport libpulseaudio;
|
|
|
|
configureFlags = stdenv.lib.optional pulseaudioSupport "--enable-pulse";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "MATE settings daemon";
|
|
homepage = https://github.com/mate-desktop/mate-settings-daemon;
|
|
license = with licenses; [ gpl2 lgpl21 ];
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.romildo ];
|
|
};
|
|
}
|