nixpkgs/pkgs/tools/security/dalfox/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
563 B
Nix
Raw Normal View History

2021-09-03 19:02:38 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "dalfox";
2022-09-27 11:19:41 +00:00
version = "2.8.2";
2021-09-03 19:02:38 +00:00
src = fetchFromGitHub {
owner = "hahwul";
repo = pname;
rev = "v${version}";
2022-09-27 11:19:41 +00:00
sha256 = "sha256-+RCjudjbvc793sE2GCV/l23JD7ZqjNWhi7ZjUaCvTzw=";
2021-09-03 19:02:38 +00:00
};
2022-09-27 11:19:41 +00:00
vendorSha256 = "sha256-pLhTwbcMIqm7nrzypMs6yVrqtdCAoPrabTXsUtJ6Zls=";
2021-09-03 19:02:38 +00:00
meta = with lib; {
description = "Tool for analysing parameter and XSS scanning";
homepage = "https://github.com/hahwul/dalfox";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
};
}