2021-01-25 08:26:54 +00:00
|
|
|
{ lib, python3Packages, fetchFromGitHub }:
|
2018-08-02 08:49:54 +01:00
|
|
|
|
2019-05-01 22:31:04 +01:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2018-08-02 08:49:54 +01:00
|
|
|
pname = "photon";
|
2019-05-01 22:31:04 +01:00
|
|
|
version = "1.3.0";
|
2018-08-02 08:49:54 +01:00
|
|
|
|
2019-05-01 22:31:04 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "s0md3v";
|
|
|
|
repo = "Photon";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "02z1xj72bq35dilr4b6njry4kixz6j2a3ag02nla98q0fvgmgnvy";
|
2018-08-02 08:49:54 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
dontBuild = true;
|
|
|
|
doCheck = false;
|
2019-05-01 22:31:04 +01:00
|
|
|
|
|
|
|
propagatedBuildInputs = with python3Packages; [ requests urllib3 tld ];
|
2018-08-02 08:49:54 +01:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p "$out"/{bin,share/photon}
|
|
|
|
cp -R photon.py core plugins $out/share/photon
|
2020-11-18 08:42:33 +00:00
|
|
|
|
2019-05-01 22:31:04 +01:00
|
|
|
makeWrapper ${python3Packages.python.interpreter} $out/bin/photon \
|
2018-08-02 08:49:54 +01:00
|
|
|
--set PYTHONPATH "$PYTHONPATH:$out/share/photon" \
|
|
|
|
--add-flags "-O $out/share/photon/photon.py"
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-08-02 08:49:54 +01:00
|
|
|
description = "a lightning fast web crawler which extracts URLs, files, intel & endpoints from a target";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/s0md3v/Photon";
|
2018-08-02 08:49:54 +01:00
|
|
|
license = licenses.gpl3;
|
2020-11-17 16:50:53 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2018-08-02 08:49:54 +01:00
|
|
|
};
|
|
|
|
}
|