mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 17:23:34 +00:00
ghauri: refactor
This commit is contained in:
parent
f51b304e73
commit
5f66165919
@ -6,7 +6,7 @@
|
|||||||
python3.pkgs.buildPythonApplication rec {
|
python3.pkgs.buildPythonApplication rec {
|
||||||
pname = "ghauri";
|
pname = "ghauri";
|
||||||
version = "1.3.4";
|
version = "1.3.4";
|
||||||
format = "setuptools";
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "r0oth3x49";
|
owner = "r0oth3x49";
|
||||||
@ -15,7 +15,11 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
hash = "sha256-1xrswAxavUz3ybmT0E00pjiR8pmHvuBXE4zhAPnz5MQ=";
|
hash = "sha256-1xrswAxavUz3ybmT0E00pjiR8pmHvuBXE4zhAPnz5MQ=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
build-system = with python3.pkgs; [
|
||||||
|
setuptools
|
||||||
|
];
|
||||||
|
|
||||||
|
dependencies = with python3.pkgs; [
|
||||||
chardet
|
chardet
|
||||||
colorama
|
colorama
|
||||||
requests
|
requests
|
||||||
@ -31,10 +35,10 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Tool for detecting and exploiting SQL injection security flaws";
|
description = "Tool for detecting and exploiting SQL injection security flaws";
|
||||||
mainProgram = "ghauri";
|
|
||||||
homepage = "https://github.com/r0oth3x49/ghauri";
|
homepage = "https://github.com/r0oth3x49/ghauri";
|
||||||
changelog = "https://github.com/r0oth3x49/ghauri/releases/tag/${version}";
|
changelog = "https://github.com/r0oth3x49/ghauri/releases/tag/${version}";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ fab ];
|
maintainers = with maintainers; [ fab ];
|
||||||
|
mainProgram = "ghauri";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user