mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-10 06:04:14 +00:00
ubi_reader: 0.8.5 -> 0.8.9 (#349029)
This commit is contained in:
commit
45c7fa8bf7
@ -1,29 +1,32 @@
|
|||||||
{ lib
|
{
|
||||||
, python3
|
fetchFromGitHub,
|
||||||
, fetchFromGitHub
|
lib,
|
||||||
|
python3,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
python3.pkgs.buildPythonApplication rec {
|
python3.pkgs.buildPythonApplication rec {
|
||||||
pname = "ubi_reader";
|
pname = "ubi_reader";
|
||||||
version = "0.8.5";
|
version = "0.8.9";
|
||||||
format = "setuptools";
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "jrspruitt";
|
owner = "onekey-sec";
|
||||||
repo = pname;
|
repo = "ubi_reader";
|
||||||
rev = "v${version}-master";
|
rev = "v${version}";
|
||||||
hash = "sha256-tjQs1F9kcFrC9FDkfdnax0C8O8Bg7blkpL7GU56eeWU=";
|
hash = "sha256-04HwzkonPzzWfX8VE//fMoVv5ggAS+61zx2W8VEUIy4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [ python-lzo ];
|
build-system = [ python3.pkgs.poetry-core ];
|
||||||
|
|
||||||
|
dependencies = [ python3.pkgs.lzallright ];
|
||||||
|
|
||||||
# There are no tests in the source
|
# There are no tests in the source
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = {
|
||||||
description = "Collection of Python scripts for reading information about and extracting data from UBI and UBIFS images";
|
description = "Python scripts capable of extracting and analyzing the contents of UBI and UBIFS images";
|
||||||
homepage = "https://github.com/jrspruitt/ubi_reader";
|
homepage = "https://github.com/onekey-sec/ubi_reader";
|
||||||
license = licenses.gpl3Only;
|
license = lib.licenses.gpl3Only;
|
||||||
maintainers = with maintainers; [ vlaci ];
|
maintainers = with lib.maintainers; [ vlaci ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user