mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 09:13:17 +00:00
eb04659fc2
This was achieved using the following command: sd 'wrapGAppsHook\b' wrapGAppsHook3 (rg -l 'wrapGAppsHook\b') And then manually reverted the following changes: - alias in top-level.nix - function name in wrap-gapps-hook.sh - comment in postFixup of at-spi2-core - comment in gtk4 - comment in preFixup of 1password-gui/linux.nix - comment in postFixup of qgis/unwrapped-ltr.nix and qgis/unwrapped.nix - comment in postFixup of telegram-desktop - comment in postFixup of fwupd - buildCommand of mongodb-compass - postFixup of xflux-gui - comment in a patch in kdePackages.kde-gtk-config and plasma5Packages.kde-gtk-config - description of programs.sway.wrapperFeatures.gtk NixOS option (manual rebuild)
114 lines
2.4 KiB
Nix
114 lines
2.4 KiB
Nix
{ lib
|
|
, stdenv
|
|
, bash-completion
|
|
, fetchurl
|
|
, fetchpatch
|
|
, gdbm
|
|
, glib
|
|
, gst_all_1
|
|
, gsettings-desktop-schemas
|
|
, gtk-vnc
|
|
, gtk3
|
|
, intltool
|
|
, libcap
|
|
, 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
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, python3
|
|
, shared-mime-info
|
|
, spice-gtk
|
|
, spice-protocol
|
|
, spiceSupport ? true
|
|
, vte
|
|
, wrapGAppsHook3
|
|
}:
|
|
|
|
with lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "virt-viewer";
|
|
version = "11.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://releases.pagure.org/virt-viewer/virt-viewer-${version}.tar.xz";
|
|
sha256 = "sha256-pD+iMlxMHHelyMmAZaww7wURohrJjlkPIjQIabrZq9A=";
|
|
};
|
|
|
|
patches = [
|
|
# Fix build with meson 0.61. Should be fixed in the next release.
|
|
# https://gitlab.com/virt-viewer/virt-viewer/-/merge_requests/120
|
|
(fetchpatch {
|
|
url = "https://gitlab.com/virt-viewer/virt-viewer/-/commit/98d9f202ef768f22ae21b5c43a080a1aa64a7107.patch";
|
|
sha256 = "sha256-3AbnkbhWOh0aNjUkmVoSV/9jFQtvTllOr7plnkntb2o=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
glib
|
|
intltool
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
python3
|
|
shared-mime-info
|
|
wrapGAppsHook3
|
|
];
|
|
|
|
buildInputs = [
|
|
gst_all_1.gst-plugins-base
|
|
gst_all_1.gst-plugins-good
|
|
bash-completion
|
|
glib
|
|
gsettings-desktop-schemas
|
|
gtk-vnc
|
|
gtk3
|
|
libvirt
|
|
libvirt-glib
|
|
libxml2
|
|
vte
|
|
] ++ optionals ovirtSupport [
|
|
libgovirt
|
|
] ++ optionals spiceSupport ([
|
|
gdbm
|
|
spice-gtk
|
|
spice-protocol
|
|
] ++ optionals stdenv.isLinux [
|
|
libcap
|
|
]);
|
|
|
|
# Required for USB redirection PolicyKit rules file
|
|
propagatedUserEnvPkgs = optional spiceSupport spice-gtk;
|
|
|
|
mesonFlags = [
|
|
(lib.mesonEnable "ovirt" ovirtSupport)
|
|
];
|
|
|
|
strictDeps = true;
|
|
|
|
postPatch = ''
|
|
patchShebangs build-aux/post_install.py
|
|
'';
|
|
|
|
meta = {
|
|
description = "A viewer for remote virtual machines";
|
|
maintainers = with maintainers; [ raskin atemu ];
|
|
platforms = with platforms; linux ++ darwin;
|
|
license = licenses.gpl2;
|
|
};
|
|
passthru = {
|
|
updateInfo = {
|
|
downloadPage = "https://virt-manager.org/download.html";
|
|
};
|
|
};
|
|
}
|