virt-v2v: add updateScript

This commit is contained in:
lukts30 2025-08-05 19:22:19 +02:00
parent 07c35dccde
commit aa0a17e855

View File

@ -24,6 +24,7 @@
withWindowsGuestSupport ? true,
pkgsCross, # for rsrvany
virtio-win,
gitUpdater,
}:
stdenv.mkDerivation (finalAttrs: {
@ -94,6 +95,12 @@ stdenv.mkDerivation (finalAttrs: {
passthru.tests.version = testers.testVersion { package = finalAttrs.finalPackage; };
passthru.updateScript = gitUpdater {
url = "https://github.com/libguestfs/guestfs-tools";
rev-prefix = "v";
odd-unstable = true;
};
meta = {
homepage = "https://github.com/libguestfs/virt-v2v";
description = "Convert guests from foreign hypervisors to run on KVM";