ubi_reader: add update script

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