forked from mirrors/nixpkgs
spice-vdagent: systemd-logind integration
This change adds systemd as dependency to enable user session integration with systemd-logind
This commit is contained in:
parent
101ccc0629
commit
3ca311d74d
|
@ -1,5 +1,6 @@
|
|||
{stdenv, fetchurl, pkgconfig, alsaLib, spice_protocol, glib,
|
||||
libpciaccess, libxcb, libXrandr, libXinerama, libXfixes, dbus}:
|
||||
libpciaccess, libxcb, libXrandr, libXinerama, libXfixes, dbus,
|
||||
systemd}:
|
||||
stdenv.mkDerivation rec {
|
||||
name = "spice-vdagent-0.17.0";
|
||||
src = fetchurl {
|
||||
|
@ -11,7 +12,7 @@ stdenv.mkDerivation rec {
|
|||
'';
|
||||
buildInputs = [ pkgconfig alsaLib spice_protocol glib
|
||||
libpciaccess libxcb libXrandr libXinerama libXfixes
|
||||
dbus ] ;
|
||||
dbus systemd ] ;
|
||||
meta = {
|
||||
description = "Enhanced SPICE integration for linux QEMU guest";
|
||||
longDescription = ''
|
||||
|
|
Loading…
Reference in a new issue