We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab6a20d commit d7441a1Copy full SHA for d7441a1
pkgs/by-name/ub/ubi_reader/package.nix
@@ -1,5 +1,6 @@
1
{
2
fetchFromGitHub,
3
+ gitUpdater,
4
lib,
5
python3,
6
}:
@@ -23,6 +24,13 @@ python3.pkgs.buildPythonApplication rec {
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";
36
homepage = "https://github.com/onekey-sec/ubi_reader";
0 commit comments