fa52e46203
This makes Xfce4's "Lock Screen" action button actually work when xscreensaver is installed and the daemon is running.
41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{ stdenv, fetchurl, pkgconfig, intltool, gtk, libxfce4util, libxfce4ui, xfce4panel
|
|
, libwnck, dbus_glib, xfconf, libglade, xorg
|
|
, polkit }:
|
|
|
|
#TODO: gnome stuff: gconf (assistive?), keyring
|
|
|
|
stdenv.mkDerivation rec {
|
|
p_name = "xfce4-session";
|
|
ver_maj = "4.10";
|
|
ver_min = "1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://xfce/src/xfce/${p_name}/${ver_maj}/${name}.tar.bz2";
|
|
sha256 = "10zwki7v55a325abr57wczcb5g7ml99cqk1p8ls8qycqqfyzlm01";
|
|
};
|
|
name = "${p_name}-${ver_maj}.${ver_min}";
|
|
|
|
buildInputs =
|
|
[ pkgconfig intltool gtk libxfce4util libxfce4ui libwnck dbus_glib
|
|
xfconf xfce4panel libglade xorg.iceauth
|
|
polkit
|
|
];
|
|
|
|
preBuild = ''
|
|
sed '/^PATH=/d' -i scripts/xflock4
|
|
sed '/^export PATH$/d' -i scripts/xflock4
|
|
'';
|
|
|
|
configureFlags = [ "--with-xsession-prefix=$(out)" ];
|
|
|
|
preFixup = "rm $out/share/icons/hicolor/icon-theme.cache";
|
|
|
|
meta = {
|
|
homepage = http://www.xfce.org/projects/xfce4-session;
|
|
description = "Session manager for Xfce";
|
|
license = "GPLv2+";
|
|
platforms = stdenv.lib.platforms.linux;
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
|
};
|
|
}
|