base16-schemes: unstable-2024-06-21 -> unstable-2024-11-12 (#356361)
[NixPkgs.git] / pkgs / tools / security / wpscan / default.nix
blob0d3d312cea43f267acee1adf31c94eee0a22e663
1 { lib
2 , bundlerApp
3 , makeWrapper
4 , curl
5 }:
7 bundlerApp {
8   pname = "wpscan";
9   gemdir = ./.;
10   exes = [ "wpscan" ];
12   nativeBuildInputs = [ makeWrapper ];
14   postBuild = ''
15     wrapProgram "$out/bin/wpscan" \
16       --prefix PATH : ${lib.makeBinPath [ curl ]}
17   '';
19   passthru.updateScript = ./update.sh;
21   meta = with lib; {
22     description = "Black box WordPress vulnerability scanner";
23     homepage = "https://wpscan.org/";
24     changelog = "https://github.com/wpscanteam/wpscan/releases";
25     license = licenses.unfreeRedistributable;
26     maintainers = with maintainers; [ nyanloutre manveru ];
27     platforms = platforms.unix;
28   };