2022-09-09 14:08:57 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, nixosTests }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-08-20 17:08:02 +00:00
|
|
|
buildGoModule rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "cfssl";
|
2023-04-29 16:46:19 +00:00
|
|
|
version = "1.6.4";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cloudflare";
|
|
|
|
repo = "cfssl";
|
2020-08-20 17:08:02 +00:00
|
|
|
rev = "v${version}";
|
2023-04-29 16:46:19 +00:00
|
|
|
sha256 = "sha256-QVKgfwyHzN6n8CnvGT9gg2ncfaDo+Pe4IAQhm4gNiz4=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2020-08-20 17:08:02 +00:00
|
|
|
subPackages = [
|
|
|
|
"cmd/cfssl"
|
|
|
|
"cmd/cfssljson"
|
|
|
|
"cmd/cfssl-bundle"
|
|
|
|
"cmd/cfssl-certinfo"
|
|
|
|
"cmd/cfssl-newkey"
|
|
|
|
"cmd/cfssl-scan"
|
|
|
|
"cmd/multirootca"
|
|
|
|
"cmd/mkbundle"
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
2023-04-29 16:46:19 +00:00
|
|
|
vendorHash = null;
|
2020-08-20 17:08:02 +00:00
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
2021-08-27 14:25:00 +00:00
|
|
|
ldflags = [
|
|
|
|
"-s" "-w"
|
|
|
|
"-X github.com/cloudflare/cfssl/cli/version.version=v${version}"
|
|
|
|
];
|
2020-08-20 17:08:02 +00:00
|
|
|
|
2022-09-09 14:08:57 +00:00
|
|
|
passthru.tests = { inherit (nixosTests) cfssl; };
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://cfssl.org/";
|
|
|
|
description = "Cloudflare's PKI and TLS toolkit";
|
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = with maintainers; [ mbrgm ];
|
|
|
|
};
|
|
|
|
}
|