Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
43 lines
1.0 KiB
Nix
43 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "cdncheck";
|
|
version = "1.2.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "projectdiscovery";
|
|
repo = "cdncheck";
|
|
tag = "v${version}";
|
|
hash = "sha256-O4tw/Uc2EuZerAVD8l2n5HejqWZUcCPHuU757r+uRmY=";
|
|
};
|
|
|
|
vendorHash = "sha256-6GxqDWRnvvj4OM2hqkwWFDvhOm+2VQvoGHivuOtTyCg=";
|
|
|
|
subPackages = [ "cmd/cdncheck/" ];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
];
|
|
|
|
preCheck = ''
|
|
# Tests require network access
|
|
substituteInPlace other_test.go \
|
|
--replace-fail "TestCheckDomainWithFallback" "SkipTestCheckDomainWithFallback" \
|
|
--replace-fail "TestCheckDNSResponse" "SkipTestCheckDNSResponse"
|
|
'';
|
|
|
|
meta = {
|
|
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 = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ fab ];
|
|
mainProgram = "cdncheck";
|
|
};
|
|
}
|