tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
virt-v2v: add updateScript
lukts30
6 months ago
aa0a17e8
07c35dcc
+7
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
vi
virt-v2v
package.nix
+7
pkgs/by-name/vi/virt-v2v/package.nix
···
24
24
withWindowsGuestSupport ? true,
25
25
pkgsCross, # for rsrvany
26
26
virtio-win,
27
27
+
gitUpdater,
27
28
}:
28
29
29
30
stdenv.mkDerivation (finalAttrs: {
···
93
94
PKG_CONFIG_BASH_COMPLETION_COMPLETIONSDIR = "${placeholder "out"}/share/bash-completion/completions";
94
95
95
96
passthru.tests.version = testers.testVersion { package = finalAttrs.finalPackage; };
97
97
+
98
98
+
passthru.updateScript = gitUpdater {
99
99
+
url = "https://github.com/libguestfs/guestfs-tools";
100
100
+
rev-prefix = "v";
101
101
+
odd-unstable = true;
102
102
+
};
96
103
97
104
meta = {
98
105
homepage = "https://github.com/libguestfs/virt-v2v";