biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / security / jaeles / default.nix
blob7c652995f6ff69c12ef9d3adc0ffe4ef94cf0d41
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "jaeles";
8   version = "0.17.1";
10   src = fetchFromGitHub {
11     owner = "jaeles-project";
12     repo = pname;
13     rev = "beta-v${version}";
14     hash = "sha256-IGvIjO1nCilg2sPyScGTH5Zmv0rORlGwRv3NRxQk+aM=";
15   };
17   vendorHash = "sha256-/Ow2qdcFduZ2ZyUUfCqpZxSh9yy3+tI/2N9Wl1fKXVI=";
19   # Tests want to download signatures
20   doCheck = false;
22   meta = with lib; {
23     description = "Tool for automated Web application testing";
24     mainProgram = "jaeles";
25     homepage = "https://github.com/jaeles-project/jaeles";
26     changelog = "https://github.com/jaeles-project/jaeles/releases/tag/beta-v${version}";
27     license = licenses.mit;
28     maintainers = with maintainers; [ fab ];
29   };