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
52 lines
1.2 KiB
Nix
52 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
testers,
|
|
}:
|
|
|
|
buildGoModule (finalAttrs: {
|
|
pname = "zlint";
|
|
version = "3.6.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zmap";
|
|
repo = "zlint";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-qd6QqOeSfLpXwbni8wqmG5X9zYXDXwAxRotCws4AWsA=";
|
|
};
|
|
|
|
modRoot = "v3";
|
|
|
|
vendorHash = "sha256-AdJxcJ/qjY6lzoK4PGNjR+7lYAypgCOk6Nt5sqP+ayA=";
|
|
|
|
excludedPackages = [
|
|
"cmd/genTestCerts"
|
|
"cmd/gen_test_crl"
|
|
"lints"
|
|
];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X=main.version=${finalAttrs.version}"
|
|
];
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = finalAttrs.finalPackage;
|
|
};
|
|
|
|
meta = {
|
|
description = "X.509 Certificate Linter focused on Web PKI standards and requirements";
|
|
longDescription = ''
|
|
ZLint is a X.509 certificate linter written in Go that checks for
|
|
consistency with standards (e.g. RFC 5280) and other relevant PKI
|
|
requirements (e.g. CA/Browser Forum Baseline Requirements).
|
|
'';
|
|
homepage = "https://github.com/zmap/zlint";
|
|
changelog = "https://github.com/zmap/zlint/releases/tag/v${finalAttrs.version}";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ baloo ];
|
|
};
|
|
})
|