2019-08-20 19:48:38 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, shared-mime-info, wrapGAppsHook
|
|
|
|
, glib, gsettings-desktop-schemas, gtk-vnc, gtk3, libvirt, libvirt-glib, libxml2, vte
|
2017-03-28 18:13:39 +01:00
|
|
|
, spiceSupport ? true
|
2018-02-25 02:23:58 +00:00
|
|
|
, spice-gtk ? null, spice-protocol ? null, libcap ? null, gdbm ? null
|
2014-05-10 09:37:59 +01:00
|
|
|
}:
|
2011-01-13 22:30:32 +00:00
|
|
|
|
2014-12-16 08:35:39 +00:00
|
|
|
assert spiceSupport ->
|
2018-02-25 02:23:58 +00:00
|
|
|
spice-gtk != null && spice-protocol != null && libcap != null && gdbm != null;
|
2014-12-16 08:35:39 +00:00
|
|
|
|
2014-05-10 09:37:59 +01:00
|
|
|
with stdenv.lib;
|
|
|
|
|
2015-12-24 12:08:10 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
baseName = "virt-viewer";
|
2020-05-10 19:35:50 +01:00
|
|
|
version = "9.0";
|
2015-12-24 12:08:10 +00:00
|
|
|
name = "${baseName}-${version}";
|
2014-05-10 09:37:59 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-12-24 12:08:10 +00:00
|
|
|
url = "http://virt-manager.org/download/sources/${baseName}/${name}.tar.gz";
|
2020-05-10 19:35:50 +01:00
|
|
|
sha256 = "09a83mzyn3b4nd7wpa659g1zf1fjbzb79rk968bz6k5xl21k7d4i";
|
2011-01-13 22:30:32 +00:00
|
|
|
};
|
|
|
|
|
2019-08-20 19:48:38 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig intltool shared-mime-info wrapGAppsHook glib ];
|
2015-12-24 12:08:10 +00:00
|
|
|
buildInputs = [
|
2019-08-20 19:48:38 +01:00
|
|
|
glib gsettings-desktop-schemas gtk-vnc gtk3 libvirt libvirt-glib libxml2 vte
|
2017-12-06 10:55:39 +00:00
|
|
|
] ++ optionals spiceSupport [
|
2018-02-25 02:23:58 +00:00
|
|
|
spice-gtk spice-protocol libcap gdbm
|
2017-12-06 10:55:39 +00:00
|
|
|
];
|
2011-01-13 22:30:32 +00:00
|
|
|
|
2019-01-26 15:58:16 +00:00
|
|
|
# Required for USB redirection PolicyKit rules file
|
|
|
|
propagatedUserEnvPkgs = optional spiceSupport spice-gtk;
|
|
|
|
|
2019-08-20 19:48:38 +01:00
|
|
|
strictDeps = true;
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2011-01-13 22:30:32 +00:00
|
|
|
meta = {
|
|
|
|
description = "A viewer for remote virtual machines";
|
2014-09-13 12:51:39 +01:00
|
|
|
maintainers = [ maintainers.raskin ];
|
2014-05-10 09:37:59 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl2;
|
2011-01-13 22:30:32 +00:00
|
|
|
};
|
|
|
|
passthru = {
|
|
|
|
updateInfo = {
|
|
|
|
downloadPage = "http://virt-manager.org/download.html";
|
|
|
|
};
|
|
|
|
};
|
2014-05-10 09:37:59 +01:00
|
|
|
}
|