nixpkgs/pkgs/tools/security/wpscan/default.nix
Artturin 211fdaa087 treewide: bundlerApp makeWrapper buildInputs -> nativeBuildInputs
the docs for bundlerApp used to have makeWrapper in buildInputs but it
has been corrected already
2022-08-14 06:41:33 +03:00

29 lines
574 B
Nix

{ lib
, bundlerApp
, makeWrapper
, curl
}:
bundlerApp {
pname = "wpscan";
gemdir = ./.;
exes = [ "wpscan" ];
nativeBuildInputs = [ makeWrapper ];
postBuild = ''
wrapProgram "$out/bin/wpscan" \
--prefix PATH : ${lib.makeBinPath [ curl ]}
'';
passthru.updateScript = ./update.sh;
meta = with lib; {
description = "Black box WordPress vulnerability scanner";
homepage = "https://wpscan.org/";
license = licenses.unfreeRedistributable;
maintainers = with maintainers; [ nyanloutre manveru ];
platforms = platforms.unix;
};
}