snagboot: move passthru before meta

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>

authored by

Otavio Salvador and committed by
Anderson Torres
0ee02d5b 55f434b1

+13 -13
+13 -13
pkgs/applications/misc/snagboot/default.nix
··· 20 20 hash = "sha256-OuHY5+2puZAERtwmXduUW5Wjus6KeQLJLcGcl48umLA="; 21 21 }; 22 22 23 - passthru = { 24 - updateScript = gitUpdater { 25 - rev-prefix = "v"; 26 - ignoredVersions = ".(rc|beta).*"; 27 - }; 28 - 29 - tests.version = testers.testVersion { 30 - package = snagboot; 31 - command = "snagrecover --version"; 32 - version = "v${version}"; 33 - }; 34 - }; 35 - 36 23 nativeBuildInputs = [ 37 24 pythonRelaxDepsHook 38 25 ]; ··· 68 55 69 56 # There are no tests 70 57 doCheck = false; 58 + 59 + passthru = { 60 + updateScript = gitUpdater { 61 + rev-prefix = "v"; 62 + ignoredVersions = ".(rc|beta).*"; 63 + }; 64 + 65 + tests.version = testers.testVersion { 66 + package = snagboot; 67 + command = "snagrecover --version"; 68 + version = "v${version}"; 69 + }; 70 + }; 71 71 72 72 meta = { 73 73 homepage = "https://github.com/bootlin/snagboot";