mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
ebc2389134
diff of `jq <packages.json 'to_entries[]|"\(.key) \(.value.meta.changelog)"' -r`: https://gist.github.com/pbsds/49b2e2ae5c9b967a0972bbc3c2597c12
56 lines
1.3 KiB
Nix
56 lines
1.3 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, testers
|
|
, zlint
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "zlint";
|
|
version = "3.6.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zmap";
|
|
repo = "zlint";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-N199sSxe06nm0CInTYAuwRgoq7hN7IQpHz5ERUSpk3M=";
|
|
};
|
|
|
|
modRoot = "v3";
|
|
|
|
vendorHash = "sha256-RX7B9RyNmEO9grMR9Mqn1jXDH5sgT0QDvdhXgY1HYtQ=";
|
|
|
|
postPatch = ''
|
|
# Remove a package which is not declared in go.mod.
|
|
rm -rf v3/cmd/genTestCerts
|
|
'';
|
|
|
|
excludedPackages = [
|
|
"lints"
|
|
];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X=main.version=${version}"
|
|
];
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = zlint;
|
|
command = "zlint -version";
|
|
};
|
|
|
|
meta = with lib; {
|
|
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/${lib.removePrefix "refs/tags/" src.rev}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ baloo ];
|
|
};
|
|
}
|