depot/pkgs/by-name/cd/cdncheck/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

43 lines
1 KiB
Nix

{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "cdncheck";
version = "1.1.0";
src = fetchFromGitHub {
owner = "projectdiscovery";
repo = "cdncheck";
rev = "refs/tags/v${version}";
hash = "sha256-1TYUSWbcWnRsOM8ctY1g9CmFSAXiK9NmN5ZDaKeJIgw=";
};
vendorHash = "sha256-0fiZJeBvxUib8a9CeTmYottOp+15YEdTVYhdzKSSCrk=";
subPackages = [ "cmd/cdncheck/" ];
ldflags = [
"-s"
"-w"
];
preCheck = ''
# Tests require network access
substituteInPlace other_test.go \
--replace-fail "TestCheckDomainWithFallback" "SkipTestCheckDomainWithFallback" \
--replace-fail "TestCheckDNSResponse" "SkipTestCheckDNSResponse"
'';
meta = with lib; {
description = "Tool to detect various technology for a given IP address";
homepage = "https://github.com/projectdiscovery/cdncheck";
changelog = "https://github.com/projectdiscovery/cdncheck/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ fab ];
mainProgram = "cdncheck";
};
}