mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-25 21:44:49 +00:00
virt-viewer: disable ovirtSupport
This commit is contained in:
parent
4d7c2644db
commit
d397b09062
@ -11,6 +11,12 @@
|
||||
, intltool
|
||||
, libcap ? null
|
||||
, libgovirt
|
||||
# Currently unsupported. According to upstream, libgovirt is for a very narrow
|
||||
# use-case and we don't currently cover it in Nixpkgs. It's safe to disable.
|
||||
# https://gitlab.com/virt-viewer/virt-viewer/-/issues/100#note_1265011223
|
||||
# Can be enabled again once this is merged:
|
||||
# https://gitlab.com/virt-viewer/virt-viewer/-/merge_requests/129
|
||||
, ovirtSupport ? false
|
||||
, libvirt
|
||||
, libvirt-glib
|
||||
, libxml2
|
||||
@ -71,11 +77,12 @@ stdenv.mkDerivation rec {
|
||||
gsettings-desktop-schemas
|
||||
gtk-vnc
|
||||
gtk3
|
||||
libgovirt
|
||||
libvirt
|
||||
libvirt-glib
|
||||
libxml2
|
||||
vte
|
||||
] ++ optionals ovirtSupport [
|
||||
libgovirt
|
||||
] ++ optionals spiceSupport ([
|
||||
gdbm
|
||||
spice-gtk_libsoup2
|
||||
@ -87,6 +94,10 @@ stdenv.mkDerivation rec {
|
||||
# Required for USB redirection PolicyKit rules file
|
||||
propagatedUserEnvPkgs = optional spiceSupport spice-gtk_libsoup2;
|
||||
|
||||
mesonFlags = [
|
||||
(lib.mesonEnable "ovirt" ovirtSupport)
|
||||
];
|
||||
|
||||
strictDeps = true;
|
||||
|
||||
postPatch = ''
|
||||
|
Loading…
Reference in New Issue
Block a user