mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 04:13:01 +00:00
f6429b355e
Diff: https://github.com/dwisiswant0/apkleaks/compare/refs/tags/v2.6.2...v2.6.3 Changelog: https://github.com/dwisiswant0/apkleaks/releases/tag/v2.6.3
42 lines
909 B
Nix
42 lines
909 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
jadx,
|
|
python3,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "apkleaks";
|
|
version = "2.6.3";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dwisiswant0";
|
|
repo = "apkleaks";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-8P4LZsyq0mSVdE6QhnW3QaaA3UAg4UDBS3jSg7Kg/oY=";
|
|
};
|
|
|
|
build-system = with python3.pkgs; [ setuptools ];
|
|
|
|
dependencies = with python3.pkgs; [
|
|
jadx
|
|
pyaxmlparser
|
|
setuptools
|
|
];
|
|
|
|
# Project has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "apkleaks" ];
|
|
|
|
meta = with lib; {
|
|
description = "Scanning APK file for URIs, endpoints and secrets";
|
|
homepage = "https://github.com/dwisiswant0/apkleaks";
|
|
changelog = "https://github.com/dwisiswant0/apkleaks/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ fab ];
|
|
mainProgram = "apkleaks";
|
|
};
|
|
}
|