mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 10:23:29 +00:00
df61c2acb5
???
47 lines
1.1 KiB
Nix
47 lines
1.1 KiB
Nix
{
|
|
fetchFromGitHub,
|
|
lib,
|
|
makeWrapper,
|
|
python3,
|
|
python3Packages,
|
|
}:
|
|
|
|
python3Packages.buildPythonPackage rec {
|
|
pname = "my-b-bscan";
|
|
version = "3.2.0";
|
|
pyproject = false;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "0xB9";
|
|
repo = "MyBBscan";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-cX1483JK+bejQWua9d7V3GDw6cPPvlnLX5w2XQjqMOQ=";
|
|
};
|
|
|
|
build-system = [ makeWrapper ];
|
|
|
|
dependencies = with python3Packages; [
|
|
huepy
|
|
requests
|
|
];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/{bin,share/mybbscan}
|
|
cp -R * $out/share/mybbscan
|
|
makeWrapper ${python3.interpreter} $out/bin/mybbscan \
|
|
--set PYTHONPATH "$PYTHONPATH:$out/share/mybbscan/scan.py" \
|
|
--add-flags "$out/share/mybbscan/scan.py"
|
|
'';
|
|
|
|
meta = {
|
|
description = "Scans plugins directory for possible vulnerable plugins";
|
|
homepage = "https://github.com/0xB9/MyBBscan";
|
|
# https://github.com/0xB9/MyBBscan/issues/12
|
|
license = lib.licenses.unfree;
|
|
maintainers = with lib.maintainers; [ tochiaha ];
|
|
mainProgram = "mybbscan";
|
|
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|