biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / security / mantra / default.nix
blob5a6b0074b46b1fdf3e577bca2aed2e18c3e28cd6
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "mantra";
8   version = "2.0";
10   src = fetchFromGitHub {
11     owner = "MrEmpy";
12     repo = "Mantra";
13     rev = "refs/tags/v${version}";
14     hash = "sha256-fBcoKoTBGCyJS8+mzKXLGxcxmRsCcZFZEyMTnA5Rkbw=";
15   };
17   vendorHash = null;
19   ldflags = [
20     "-s"
21     "-w"
22   ];
24   meta = with lib; {
25     description = "Tool used to hunt down API key leaks in JS files and pages";
26     homepage = "https://github.com/MrEmpy/Mantra";
27     changelog = "https://github.com/MrEmpy/Mantra/releases/tag/v${version}";
28     license = licenses.gpl3Only;
29     maintainers = with maintainers; [ fab ];
30     mainProgram = "mantra";
31   };