mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 00:53:12 +03:00
ghdorker: init at 0.3.2
This commit is contained in:
parent
16c153f7d7
commit
91f4e98e28
35
pkgs/tools/security/ghdorker/default.nix
Normal file
35
pkgs/tools/security/ghdorker/default.nix
Normal file
@ -0,0 +1,35 @@
|
||||
{ lib
|
||||
, python3
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "ghdorker";
|
||||
version = "0.3.2";
|
||||
format = "setuptools";
|
||||
|
||||
src = python3.pkgs.fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-wF4QoXxH55SpdYgKLHf4sCwUk1rkCpSdnIX5FvFi/BU=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
ghapi
|
||||
glom
|
||||
python-dotenv
|
||||
pyyaml
|
||||
];
|
||||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"GHDorker"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Extensible GitHub dorking tool";
|
||||
homepage = "https://github.com/dtaivpp/ghdorker";
|
||||
license = with licenses; [ asl20 ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -3080,6 +3080,8 @@ with pkgs;
|
||||
|
||||
gh-ost = callPackage ../tools/misc/gh-ost { };
|
||||
|
||||
ghdorker = callPackage ../tools/security/ghdorker { };
|
||||
|
||||
ghidra-bin = callPackage ../tools/security/ghidra { };
|
||||
|
||||
gif-for-cli = callPackage ../tools/misc/gif-for-cli { };
|
||||
|
Loading…
Reference in New Issue
Block a user