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 20:02:38 +01:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "dalfox";
2022-04-11 06:54:36 +01:00
version = "2.7.4";
2021-09-03 20:02:38 +01:00
src = fetchFromGitHub {
owner = "hahwul";
repo = pname;
rev = "v${version}";
2022-04-11 06:54:36 +01:00
sha256 = "sha256-wNoZ8bXPnYO3qQO+Is5IRGukLj+QfA+xalKC6NVc5+0=";
2021-09-03 20:02:38 +01:00
};
2022-04-11 06:54:36 +01:00
vendorSha256 = "sha256-qaRUlgxGqZu5T3GHONT4MyHfHr/L6cqP7o0dV4OCOLY=";
2021-09-03 20:02:38 +01: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 ];
};
}