be91726358
https://github.com/linuxmint/xapps redirects to https://github.com/linuxmint/xapp, and the meson project name is xapp.
103 lines
1.8 KiB
Nix
103 lines
1.8 KiB
Nix
{ fetchFromGitHub
|
|
, cinnamon-desktop
|
|
, cinnamon-settings-daemon
|
|
, cinnamon-translations
|
|
, dbus-glib
|
|
, glib
|
|
, gsettings-desktop-schemas
|
|
, gtk3
|
|
, libcanberra
|
|
, libxslt
|
|
, makeWrapper
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, python3
|
|
, lib
|
|
, stdenv
|
|
, systemd
|
|
, wrapGAppsHook
|
|
, xapp
|
|
, xorg
|
|
, libexecinfo
|
|
, pango
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cinnamon-session";
|
|
version = "5.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "linuxmint";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-m16nf3eC15ZT8eDvRTylBfxsnShkU1Sm8J9qcRGeGQo=";
|
|
};
|
|
|
|
patches = [
|
|
./0001-Use-dbus_glib-instead-of-elogind.patch
|
|
];
|
|
|
|
buildInputs = [
|
|
# meson.build
|
|
gtk3
|
|
glib
|
|
libcanberra
|
|
pango
|
|
xorg.libX11
|
|
xorg.libXext
|
|
xapp
|
|
xorg.libXau
|
|
xorg.libXcomposite
|
|
|
|
systemd
|
|
|
|
xorg.libXtst
|
|
xorg.libXrender
|
|
xorg.xtrans
|
|
|
|
# other (not meson.build)
|
|
|
|
cinnamon-desktop
|
|
cinnamon-settings-daemon
|
|
dbus-glib
|
|
glib
|
|
gsettings-desktop-schemas
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
ninja
|
|
wrapGAppsHook
|
|
libexecinfo
|
|
python3
|
|
pkg-config
|
|
libxslt
|
|
];
|
|
|
|
mesonFlags = [
|
|
# use locales from cinnamon-translations
|
|
"--localedir=${cinnamon-translations}/share/locale"
|
|
];
|
|
|
|
postPatch = ''
|
|
chmod +x data/meson_install_schemas.py # patchShebangs requires executable file
|
|
patchShebangs data/meson_install_schemas.py
|
|
'';
|
|
|
|
preFixup = ''
|
|
gappsWrapperArgs+=(
|
|
--prefix XDG_DATA_DIRS : "${cinnamon-desktop}/share"
|
|
--prefix XDG_CONFIG_DIRS : "${cinnamon-settings-daemon}/etc/xdg"
|
|
)
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/linuxmint/cinnamon-session";
|
|
description = "The Cinnamon session manager";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = teams.cinnamon.members;
|
|
};
|
|
}
|