nixpkgs/pkgs/tools/security/wpscan/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
574 B
Nix
Raw Normal View History

2021-09-27 08:31:33 +00:00
{ lib
, bundlerApp
, makeWrapper
, curl
}:
bundlerApp {
pname = "wpscan";
gemdir = ./.;
exes = [ "wpscan" ];
2021-09-27 08:31:33 +00:00
buildInputs = [
makeWrapper
];
postBuild = ''
wrapProgram "$out/bin/wpscan" \
--prefix PATH : ${lib.makeBinPath [ curl ]}
'';
2021-07-10 20:33:16 +00:00
passthru.updateScript = ./update.sh;
meta = with lib; {
description = "Black box WordPress vulnerability scanner";
2021-07-10 20:33:16 +00:00
homepage = "https://wpscan.org/";
license = licenses.unfreeRedistributable;
2019-05-04 19:55:52 +00:00
maintainers = with maintainers; [ nyanloutre manveru ];
2021-07-10 20:33:16 +00:00
platforms = platforms.unix;
};
}