nixpkgs/pkgs/tools/networking/nikto/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

68 lines
1.8 KiB
Nix

{ lib
, stdenv
, fetchFromGitHub
, perlPackages
, makeWrapper
, installShellFiles
}:
let
version = "2.5.0";
in
stdenv.mkDerivation rec {
pname = "nikto";
inherit version;
src = fetchFromGitHub {
owner = "sullo";
repo = "nikto";
rev = version;
sha256 = "sha256-lWiDbWc2BWAUgyaIm0tvZytja02WogYRoc7na4sHiNM=";
};
# Nikto searches its configuration file based on its current path
# This fixes the current path regex for the wrapped executable.
patches = [ ./nix-wrapper-fix.patch ];
postPatch = ''
# EXECDIR needs to be changed to the path where we copy the programs stuff
# Forcing SSLeay is needed for SSL support (the auto mode doesn't seem to work otherwise)
substituteInPlace program/nikto.conf.default \
--replace "# EXECDIR=/opt/nikto" "EXECDIR=$out/share" \
--replace "LW_SSL_ENGINE=auto" "LW_SSL_ENGINE=SSLeay"
'';
nativeBuildInputs = [ makeWrapper installShellFiles ];
buildInputs = [
perlPackages.perl
perlPackages.NetSSLeay
];
installPhase = ''
runHook preInstall
install -d "$out/share"
cp -a program/* "$out/share"
install -Dm 755 "program/nikto.pl" "$out/bin/nikto"
install -Dm 644 program/nikto.conf.default "$out/etc/nikto.conf"
installManPage documentation/nikto.1
install -Dm 644 README.md "$out/share/doc/${pname}/README"
runHook postInstall
'';
postInstall = ''
wrapProgram $out/bin/nikto \
--prefix PERL5LIB : $PERL5LIB
'';
meta = with lib; {
description = "Web server scanner";
mainProgram = "nikto";
license = licenses.gpl2Plus;
homepage = "https://cirt.net/Nikto2";
changelog = "https://github.com/sullo/nikto/releases/tag/${version}";
maintainers = with maintainers; [ shamilton ];
platforms = platforms.unix;
};
}