mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
41 lines
958 B
Nix
41 lines
958 B
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, python3
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "log4shell-detector";
|
|
version = "unstable-2021-12-16";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Neo23x0";
|
|
repo = pname;
|
|
rev = "622b88e7ea36819da23ce6ac090785cd6cca77f9";
|
|
sha256 = "sha256-N81x9hq473LfM+bQIQLWizCAsVc/pzyB84PV7/N5jk4=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
zstandard
|
|
];
|
|
|
|
nativeCheckInputs = with python3.pkgs; [
|
|
pytestCheckHook
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
install -vD ${pname}.py $out/bin/${pname}
|
|
install -vd $out/${python3.sitePackages}/
|
|
cp -R Log4ShellDetector $out/${python3.sitePackages}
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Detector for Log4Shell exploitation attempts";
|
|
homepage = "https://github.com/Neo23x0/log4shell-detector";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|