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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

114 lines
3.6 KiB
Nix
Raw Normal View History

2022-03-11 20:22:16 +00:00
{ lib, fetchFromGitHub, python3, intltool, file, wrapGAppsHook, gtk-vnc
, vte, avahi, dconf, gobject-introspection, libvirt-glib, system-libvirt
, gsettings-desktop-schemas, gst_all_1, libosinfo, gnome, gtksourceview4, docutils, cpio
, e2fsprogs, findutils, gzip, cdrtools, xorriso, fetchpatch
, desktopToDarwinBundle, stdenv
, spiceSupport ? true, spice-gtk ? null
}:
2022-03-11 20:22:16 +00:00
python3.pkgs.buildPythonApplication rec {
2019-11-21 11:30:20 +00:00
pname = "virt-manager";
2022-09-11 06:31:32 +00:00
version = "4.1.0";
2012-07-20 23:27:24 +00:00
2022-03-11 20:22:16 +00:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
2022-09-11 06:31:32 +00:00
hash = "sha256-UgZ58WLXq0U3EDt4311kv0kayVU17In4kwnQ+QN1E7A=";
};
2024-01-07 00:48:56 +00:00
patches = [
# refresh Fedora tree URLs in virt-install-osinfo* expected XMLs
(fetchpatch {
url = "https://github.com/virt-manager/virt-manager/commit/6e5c1db6b4a0af96afeb09a09fb2fc2b73308f01.patch";
hash = "sha256-zivVo6nHvfB7aHadOouQZCBXn5rY12nxFjQ4FFwjgZI=";
})
# fix test with libvirt 10
(fetchpatch {
url = "https://github.com/virt-manager/virt-manager/commit/83fcc5b2e8f2cede84564387756fe8971de72188.patch";
hash = "sha256-yEk+md5EkwYpP27u3E+oTJ8thgtH2Uy1x3JIWPBhqeE=";
})
2024-01-07 00:48:56 +00:00
];
nativeBuildInputs = [
intltool file
gobject-introspection # for setup hook populating GI_TYPELIB_PATH
2020-10-12 16:41:33 +00:00
docutils
wrapGAppsHook
2023-08-30 18:44:54 +00:00
] ++ lib.optional stdenv.isDarwin desktopToDarwinBundle;
buildInputs = [
gst_all_1.gst-plugins-base
gst_all_1.gst-plugins-good
libvirt-glib vte dconf gtk-vnc gnome.adwaita-icon-theme avahi
gsettings-desktop-schemas libosinfo gtksourceview4
2023-08-30 18:44:54 +00:00
] ++ lib.optional spiceSupport spice-gtk;
2012-07-20 23:27:24 +00:00
2022-03-11 20:22:16 +00:00
propagatedBuildInputs = with python3.pkgs; [
pygobject3 libvirt libxml2 requests cdrtools
];
postPatch = ''
sed -i 's|/usr/share/libvirt/cpu_map.xml|${system-libvirt}/share/libvirt/cpu_map.xml|g' virtinst/capabilities.py
sed -i "/'install_egg_info'/d" setup.py
'';
postConfigure = ''
2022-03-11 20:22:16 +00:00
${python3.interpreter} setup.py configure --prefix=$out
'';
2022-03-11 20:22:16 +00:00
setupPyGlobalFlags = [ "--no-update-icon-cache" "--no-compile-schemas" ];
dontWrapGApps = true;
2017-06-04 14:58:13 +00:00
preFixup = ''
glib-compile-schemas $out/share/gsettings-schemas/${pname}-${version}/glib-2.0/schemas
2022-03-11 20:22:16 +00:00
2017-06-04 14:58:13 +00:00
gappsWrapperArgs+=(--set PYTHONPATH "$PYTHONPATH")
# these are called from virt-install in initrdinject.py
gappsWrapperArgs+=(--prefix PATH : "${lib.makeBinPath [ cpio e2fsprogs file findutils gzip ]}")
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
2022-08-06 13:46:30 +00:00
# Fixes testCLI0051virt_install_initrd_inject on Darwin: "cpio: root:root: invalid group"
substituteInPlace virtinst/install/installerinject.py \
--replace "'--owner=root:root'" "'--owner=0:0'"
2017-06-04 14:58:13 +00:00
'';
nativeCheckInputs = with python3.pkgs; [
2022-03-14 03:59:50 +00:00
pytestCheckHook
cpio
cdrtools
xorriso
];
2021-05-20 17:49:22 +00:00
2022-03-14 03:59:50 +00:00
disabledTests = [
"testAlterDisk"
"test_misc_nonpredicatble_generate"
2022-09-11 06:31:32 +00:00
"test_disk_dir_searchable" # does something strange with permissions
"testCLI0001virt_install_many_devices" # expects /var to exist
];
2021-05-20 17:49:22 +00:00
preCheck = ''
2024-01-07 00:48:56 +00:00
export HOME=$(mktemp -d)
2021-05-20 17:49:22 +00:00
''; # <- Required for "tests/test_urldetect.py".
postCheck = ''
$out/bin/virt-manager --version | grep -Fw ${version} > /dev/null
'';
meta = with lib; {
homepage = "https://virt-manager.org";
description = "Desktop user interface for managing virtual machines";
longDescription = ''
The virt-manager application is a desktop user interface for managing
virtual machines through libvirt. It primarily targets KVM VMs, but also
manages Xen and LXC (linux containers).
'';
license = licenses.gpl2;
2022-08-06 13:46:30 +00:00
platforms = platforms.unix;
mainProgram = "virt-manager";
maintainers = with maintainers; [ qknight offline fpletz globin ];
};
2012-07-20 23:27:24 +00:00
}