nixpkgs/pkgs/applications/virtualization/virt-viewer/default.nix

47 lines
1.3 KiB
Nix
Raw Normal View History

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