nixpkgs/pkgs/by-name/lo/log4j-sniffer/package.nix

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

38 lines
718 B
Nix
Raw Normal View History

2021-12-18 09:42:23 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
, git
}:
buildGoModule rec {
pname = "log4j-sniffer";
2022-02-24 13:02:39 +00:00
version = "1.9.0";
2021-12-18 09:42:23 +00:00
src = fetchFromGitHub {
owner = "palantir";
repo = pname;
rev = "v${version}";
2022-02-24 13:02:39 +00:00
sha256 = "sha256-pO6difzNvQvKQtRLyksXmExtQHlnnwyF3iNEmSBgUmU=";
2021-12-18 09:42:23 +00:00
};
vendorHash = null;
2021-12-18 09:42:23 +00:00
nativeCheckInputs = [
2021-12-18 09:42:23 +00:00
git
];
preCheck = ''
export HOME=$(mktemp -d);
cd $HOME
git init
'';
meta = with lib; {
description = "Tool that scans archives to check for vulnerable log4j versions";
mainProgram = "log4j-sniffer";
2021-12-18 09:42:23 +00:00
homepage = "https://github.com/palantir/log4j-sniffer";
license = with licenses; [ asl20 ];
maintainers = with maintainers; [ fab ];
};
}