ubi_reader: init at 0.8.5

+31
+29
pkgs/tools/filesystems/ubi_reader/default.nix
··· 1 + { lib 2 + , python3 3 + , fetchFromGitHub 4 + }: 5 + 6 + python3.pkgs.buildPythonApplication rec { 7 + pname = "ubi_reader"; 8 + version = "0.8.5"; 9 + format = "setuptools"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "jrspruitt"; 13 + repo = pname; 14 + rev = "v${version}-master"; 15 + hash = "sha256-tjQs1F9kcFrC9FDkfdnax0C8O8Bg7blkpL7GU56eeWU="; 16 + }; 17 + 18 + propagatedBuildInputs = with python3.pkgs; [ python-lzo ]; 19 + 20 + # There are no tests in the source 21 + doCheck = false; 22 + 23 + meta = with lib; { 24 + description = "Collection of Python scripts for reading information about and extracting data from UBI and UBIFS images"; 25 + homepage = "https://github.com/jrspruitt/ubi_reader"; 26 + license = licenses.gpl3Only; 27 + maintainers = with maintainers; [ vlaci ]; 28 + }; 29 + }
+2
pkgs/top-level/all-packages.nix
··· 12911 12911 12912 12912 ubidump = python3Packages.callPackage ../tools/filesystems/ubidump { }; 12913 12913 12914 + ubi_reader = callPackage ../tools/filesystems/ubi_reader { }; 12915 + 12914 12916 ubridge = callPackage ../tools/networking/ubridge { }; 12915 12917 12916 12918 ubertooth = callPackage ../applications/radio/ubertooth { };