ubi_reader: add update script

+8
+8
pkgs/by-name/ub/ubi_reader/package.nix
··· 1 1 { 2 2 fetchFromGitHub, 3 + gitUpdater, 3 4 lib, 4 5 python3, 5 6 }: ··· 22 23 23 24 # There are no tests in the source 24 25 doCheck = false; 26 + 27 + passthru = { 28 + updateScript = gitUpdater { 29 + rev-prefix = "v"; 30 + ignoredVersions = "_[a-z]+$"; 31 + }; 32 + }; 25 33 26 34 meta = { 27 35 description = "Python scripts capable of extracting and analyzing the contents of UBI and UBIFS images";