2ebb125847
https://github.com/linuxmint/cinnamon-settings-daemon/compare/5.8.1...6.0.0
New settings-remap plugin for sync cinnamon/gnome settings.
c5b3e5f85f
106 lines
1.9 KiB
Nix
106 lines
1.9 KiB
Nix
{ fetchFromGitHub
|
|
, cinnamon-desktop
|
|
, cinnamon-translations
|
|
, colord
|
|
, glib
|
|
, gsettings-desktop-schemas
|
|
, gtk3
|
|
, lcms2
|
|
, libcanberra-gtk3
|
|
, libgnomekbd
|
|
, libnotify
|
|
, libxklavier
|
|
, wrapGAppsHook
|
|
, pkg-config
|
|
, lib
|
|
, stdenv
|
|
, systemd
|
|
, upower
|
|
, dconf
|
|
, cups
|
|
, polkit
|
|
, librsvg
|
|
, libwacom
|
|
, xorg
|
|
, fontconfig
|
|
, tzdata
|
|
, nss
|
|
, libgudev
|
|
, meson
|
|
, ninja
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cinnamon-settings-daemon";
|
|
version = "6.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linuxmint";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-bT6NetCBo3J9IiiJ9Hs4iC1N3n/AP9Q+6wZciuKA4i4=";
|
|
};
|
|
|
|
patches = [
|
|
./csd-backlight-helper-fix.patch
|
|
];
|
|
|
|
buildInputs = [
|
|
cinnamon-desktop
|
|
colord
|
|
gtk3
|
|
glib
|
|
gsettings-desktop-schemas
|
|
lcms2
|
|
libcanberra-gtk3
|
|
libgnomekbd
|
|
libnotify
|
|
libxklavier
|
|
systemd
|
|
upower
|
|
dconf
|
|
cups
|
|
polkit
|
|
librsvg
|
|
libwacom
|
|
xorg.libXext
|
|
xorg.libX11
|
|
xorg.libXi
|
|
xorg.libXfixes
|
|
fontconfig
|
|
nss
|
|
libgudev
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
wrapGAppsHook
|
|
pkg-config
|
|
];
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
postPatch = ''
|
|
sed "s|/usr/share/zoneinfo|${tzdata}/share/zoneinfo|g" -i plugins/datetime/system-timezone.h
|
|
'';
|
|
|
|
# use locales from cinnamon-translations (not using --localedir because datadir is used)
|
|
postInstall = ''
|
|
ln -s ${cinnamon-translations}/share/locale $out/share/locale
|
|
'';
|
|
|
|
# So the polkit policy can reference /run/current-system/sw/bin/cinnamon-settings-daemon/csd-backlight-helper
|
|
postFixup = ''
|
|
mkdir -p $out/bin/cinnamon-settings-daemon
|
|
ln -s $out/libexec/csd-backlight-helper $out/bin/cinnamon-settings-daemon/csd-backlight-helper
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/linuxmint/cinnamon-settings-daemon";
|
|
description = "The settings daemon for the Cinnamon desktop";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = teams.cinnamon.members;
|
|
};
|
|
}
|