tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ubi_reader: init at 0.8.5
László Vaskó
3 years ago
847cae69
7d09debf
+31
2 changed files
expand all
collapse all
unified
split
pkgs
tools
filesystems
ubi_reader
default.nix
top-level
all-packages.nix
+29
pkgs/tools/filesystems/ubi_reader/default.nix
···
1
1
+
{ lib
2
2
+
, python3
3
3
+
, fetchFromGitHub
4
4
+
}:
5
5
+
6
6
+
python3.pkgs.buildPythonApplication rec {
7
7
+
pname = "ubi_reader";
8
8
+
version = "0.8.5";
9
9
+
format = "setuptools";
10
10
+
11
11
+
src = fetchFromGitHub {
12
12
+
owner = "jrspruitt";
13
13
+
repo = pname;
14
14
+
rev = "v${version}-master";
15
15
+
hash = "sha256-tjQs1F9kcFrC9FDkfdnax0C8O8Bg7blkpL7GU56eeWU=";
16
16
+
};
17
17
+
18
18
+
propagatedBuildInputs = with python3.pkgs; [ python-lzo ];
19
19
+
20
20
+
# There are no tests in the source
21
21
+
doCheck = false;
22
22
+
23
23
+
meta = with lib; {
24
24
+
description = "Collection of Python scripts for reading information about and extracting data from UBI and UBIFS images";
25
25
+
homepage = "https://github.com/jrspruitt/ubi_reader";
26
26
+
license = licenses.gpl3Only;
27
27
+
maintainers = with maintainers; [ vlaci ];
28
28
+
};
29
29
+
}
+2
pkgs/top-level/all-packages.nix
···
12911
12911
12912
12912
ubidump = python3Packages.callPackage ../tools/filesystems/ubidump { };
12913
12913
12914
12914
+
ubi_reader = callPackage ../tools/filesystems/ubi_reader { };
12915
12915
+
12914
12916
ubridge = callPackage ../tools/networking/ubridge { };
12915
12917
12916
12918
ubertooth = callPackage ../applications/radio/ubertooth { };