2018-02-25 02:23:58 +00:00
|
|
|
{stdenv, fetchurl, pkgconfig, alsaLib, spice-protocol, glib,
|
2017-05-24 23:33:31 +01:00
|
|
|
libpciaccess, libxcb, libXrandr, libXinerama, libXfixes, dbus,
|
|
|
|
systemd}:
|
2015-11-05 11:39:55 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-06-24 18:08:31 +01:00
|
|
|
name = "spice-vdagent-0.18.0";
|
2015-11-05 11:39:55 +00:00
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://www.spice-space.org/download/releases/${name}.tar.bz2";
|
2018-06-24 18:08:31 +01:00
|
|
|
sha256 = "1bmyvapwj1x0m6y8q0r1df2q37vsnb04qkgnnrfbnzf1qzipxvl0";
|
2015-11-05 11:39:55 +00:00
|
|
|
};
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace data/spice-vdagent.desktop --replace /usr $out
|
|
|
|
'';
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-02-25 02:23:58 +00:00
|
|
|
buildInputs = [ alsaLib spice-protocol glib
|
2016-09-24 12:44:26 +01:00
|
|
|
libpciaccess libxcb libXrandr libXinerama libXfixes
|
2017-05-24 23:33:31 +01:00
|
|
|
dbus systemd ] ;
|
2015-11-05 11:39:55 +00:00
|
|
|
meta = {
|
|
|
|
description = "Enhanced SPICE integration for linux QEMU guest";
|
|
|
|
longDescription = ''
|
|
|
|
Spice agent for linux guests offering
|
|
|
|
* Client mouse mode
|
|
|
|
* Copy and paste
|
|
|
|
* Automatic adjustment of the X-session resolution
|
|
|
|
to the client resolution
|
|
|
|
* Multiple displays
|
|
|
|
'';
|
|
|
|
homepage = http://www.spice-space.org/home.html;
|
|
|
|
license = stdenv.lib.licenses.gpl3;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.aboseley ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|