bitcrook: init at 2.3.2 (#474424)

This commit is contained in:
Fabian Affolter
2025-12-27 15:18:17 +00:00
committed by GitHub
+41
View File
@@ -0,0 +1,41 @@
{
lib,
buildGoModule,
fetchFromGitHub,
versionCheckHook,
}:
buildGoModule rec {
pname = "bitcrook";
version = "2.3.2";
src = fetchFromGitHub {
owner = "ax-i-om";
repo = "bitcrook";
tag = "v${version}";
hash = "sha256-O2u5e6LmfrxsfrBY3OPFTottheGO+ue8qMLqbDVMBhA=";
};
vendorHash = "sha256-19uN+jTqZDqIu/rqS/U9JSnZWowTlLAgHG7+YhXaOd4=";
ldflags = [
"-s"
"-w"
];
nativeInstallCheckInputs = [ versionCheckHook ];
doInstallCheck = true;
# Tests require network access
doCheck = false;
meta = {
description = "Tool to do OSINT";
homepage = "https://github.com/ax-i-om/bitcrook";
changelog = "https://github.com/ax-i-om/bitcrook/releases/tag/${src.tag}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
mainProgram = "bitcrook";
};
}