Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
51 lines
812 B
Nix
51 lines
812 B
Nix
{
|
|
lib,
|
|
mkXfceDerivation,
|
|
polkit,
|
|
exo,
|
|
libxfce4util,
|
|
libxfce4ui,
|
|
libxfce4windowing,
|
|
xfconf,
|
|
iceauth,
|
|
gtk3,
|
|
gtk-layer-shell,
|
|
glib,
|
|
libwnck,
|
|
xfce4-session,
|
|
}:
|
|
|
|
mkXfceDerivation {
|
|
category = "xfce";
|
|
pname = "xfce4-session";
|
|
version = "4.20.3";
|
|
|
|
sha256 = "sha256-HfVspmAkjuGgoI87VHNHFGZP17ZA0b31llY93gUtWxs=";
|
|
|
|
buildInputs = [
|
|
exo
|
|
gtk3
|
|
gtk-layer-shell
|
|
glib
|
|
libxfce4ui
|
|
libxfce4util
|
|
libxfce4windowing
|
|
libwnck
|
|
xfconf
|
|
polkit
|
|
iceauth
|
|
];
|
|
|
|
configureFlags = [
|
|
"--with-xsession-prefix=${placeholder "out"}"
|
|
"--with-wayland-session-prefix=${placeholder "out"}"
|
|
];
|
|
|
|
passthru.xinitrc = "${xfce4-session}/etc/xdg/xfce4/xinitrc";
|
|
|
|
meta = with lib; {
|
|
description = "Session manager for Xfce";
|
|
teams = [ teams.xfce ];
|
|
};
|
|
}
|