crackql: init at unstable-20220821
This commit is contained in:
parent
8c63069284
commit
9e4208c8c7
37
pkgs/tools/security/crackql/default.nix
Normal file
37
pkgs/tools/security/crackql/default.nix
Normal file
@ -0,0 +1,37 @@
|
||||
{ lib
|
||||
, fetchFromGitHub
|
||||
, python3
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "crackql";
|
||||
version = "unstable-20220821";
|
||||
format = "pyproject";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "nicholasaleks";
|
||||
repo = "CrackQL";
|
||||
# rev = "refs/tags/${version}";
|
||||
# Switch to tag with the next update
|
||||
rev = "5bcf92f4520a4dd036baf9f47c5ebbf18e6a032a";
|
||||
hash = "sha256-XlHbGkwdOV1nobjtQP/M3IIEuzXHBuwf52EsXf3MWoM=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = with python3.pkgs; [
|
||||
poetry-core
|
||||
];
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
requests
|
||||
graphql-core
|
||||
jinja2
|
||||
typing-extensions
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "GraphQL password brute-force and fuzzing utility";
|
||||
homepage = "https://github.com/nicholasaleks/CrackQL";
|
||||
license = with licenses; [ bsd3 ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -424,6 +424,8 @@ with pkgs;
|
||||
|
||||
crackle = callPackage ../tools/networking/crackle { };
|
||||
|
||||
crackql = callPackage ../tools/security/crackql { };
|
||||
|
||||
crow-translate = libsForQt5.callPackage ../applications/misc/crow-translate { };
|
||||
|
||||
cryptowatch-desktop = callPackage ../applications/finance/cryptowatch { };
|
||||
|
Loading…
Reference in New Issue
Block a user