tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ubi_reader: add update script
László Vaskó
9 months ago
d7441a13
ab6a20dd
+8
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
ub
ubi_reader
package.nix
+8
pkgs/by-name/ub/ubi_reader/package.nix
···
1
1
{
2
2
fetchFromGitHub,
3
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
26
+
27
27
+
passthru = {
28
28
+
updateScript = gitUpdater {
29
29
+
rev-prefix = "v";
30
30
+
ignoredVersions = "_[a-z]+$";
31
31
+
};
32
32
+
};
25
33
26
34
meta = {
27
35
description = "Python scripts capable of extracting and analyzing the contents of UBI and UBIFS images";