python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / dalfox / default.nix
blobed0d3be6f77705cc77ab121437c8888bb7a0d1ec
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "dalfox";
8   version = "2.8.2";
10   src = fetchFromGitHub {
11     owner = "hahwul";
12     repo = pname;
13     rev = "v${version}";
14     sha256 = "sha256-+RCjudjbvc793sE2GCV/l23JD7ZqjNWhi7ZjUaCvTzw=";
15   };
17   vendorSha256 = "sha256-pLhTwbcMIqm7nrzypMs6yVrqtdCAoPrabTXsUtJ6Zls=";
19   meta = with lib; {
20     description = "Tool for analysing parameter and XSS scanning";
21     homepage = "https://github.com/hahwul/dalfox";
22     license = licenses.mit;
23     maintainers = with maintainers; [ fab ];
24   };