gnome3.gdm: prevent orca warning
This commit is contained in:
parent
29eff705ba
commit
3f610ddd81
1 changed files with 8 additions and 4 deletions
|
@ -16,11 +16,10 @@ stdenv.mkDerivation rec {
|
||||||
"--with-plymouth=yes"
|
"--with-plymouth=yes"
|
||||||
"--with-systemdsystemunitdir=$(out)/etc/systemd/system" ];
|
"--with-systemdsystemunitdir=$(out)/etc/systemd/system" ];
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
nativeBuildInputs = [ pkgconfig libxml2 itstool intltool autoreconfHook libtool gnome3.dconf ];
|
||||||
buildInputs = [ glib itstool libxml2 intltool
|
buildInputs = [ glib accountsservice systemd
|
||||||
accountsservice gnome3.dconf systemd
|
|
||||||
gobjectIntrospection libX11 gtk
|
gobjectIntrospection libX11 gtk
|
||||||
libcanberra_gtk3 pam libtool plymouth librsvg ];
|
libcanberra_gtk3 pam plymouth librsvg ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
@ -30,6 +29,11 @@ stdenv.mkDerivation rec {
|
||||||
./gdm-session-worker_xserver-path.patch
|
./gdm-session-worker_xserver-path.patch
|
||||||
];
|
];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
# Prevent “Could not parse desktop file orca-autostart.desktop or it references a not found TryExec binary”
|
||||||
|
rm $out/share/gdm/greeter/autostart/orca-autostart.desktop
|
||||||
|
'';
|
||||||
|
|
||||||
installFlags = [ "sysconfdir=$(out)/etc" "dbusconfdir=$(out)/etc/dbus-1/system.d" ];
|
installFlags = [ "sysconfdir=$(out)/etc" "dbusconfdir=$(out)/etc/dbus-1/system.d" ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
|
|
Loading…
Reference in a new issue