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
89 lines
2.8 KiB
Nix
89 lines
2.8 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
fetchpatch2,
|
|
buildGoModule,
|
|
coreutils,
|
|
pcsclite,
|
|
pkg-config,
|
|
hsmSupport ? true,
|
|
nixosTests,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "step-ca";
|
|
version = "0.28.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "smallstep";
|
|
repo = "certificates";
|
|
tag = "v${version}";
|
|
# Source uses git export-subst and isn't reproducible when fetching as git archive,
|
|
# see https://github.com/smallstep/certificates/blob/6a1250131284dce4aa66c0e0e3f7a3202dd56ad0/.gitattributes.
|
|
# Use forceFetchGit to fetch the source as git repo, as fetchGit isn't effected,
|
|
# see https://github.com/NixOS/nixpkgs/issues/84312#issuecomment-2475948960.
|
|
forceFetchGit = true;
|
|
hash = "sha256-ZIpsSNdQVkelo5b3H03N8qToHU7z+lalAE7Ur6m2YwY=";
|
|
};
|
|
|
|
patches = [
|
|
# fix broken test TestHandler_RevokeCert
|
|
# https://github.com/smallstep/certificates/pull/2370
|
|
# TODO: remove at next release
|
|
(fetchpatch2 {
|
|
url = "https://github.com/smallstep/certificates/commit/b7e59c97f3b8a95a24153aeb85959118953f2bb4.patch?full_index=1";
|
|
hash = "sha256-GKGKUj4hpS4jo6sMvUhnD3BeE+f5vnxY5tK0a2pwpNM=";
|
|
})
|
|
];
|
|
|
|
vendorHash = "sha256-gGPrrl5J8UrjUpof2DaSs1fAQsMSsyAMlC67h5V75+k=";
|
|
|
|
ldflags = [
|
|
"-w"
|
|
"-X main.Version=${version}"
|
|
];
|
|
|
|
nativeBuildInputs = lib.optionals hsmSupport [ pkg-config ];
|
|
|
|
buildInputs = lib.optionals (hsmSupport && stdenv.hostPlatform.isLinux) [ pcsclite ];
|
|
postPatch = ''
|
|
substituteInPlace authority/http_client_test.go --replace-fail 't.Run("SystemCertPool", func(t *testing.T) {' 't.Skip("SystemCertPool", func(t *testing.T) {'
|
|
substituteInPlace systemd/step-ca.service --replace "/bin/kill" "${coreutils}/bin/kill"
|
|
'';
|
|
|
|
preBuild = ''
|
|
${lib.optionalString (!hsmSupport) "export CGO_ENABLED=0"}
|
|
'';
|
|
|
|
postInstall = ''
|
|
install -Dm444 -t $out/lib/systemd/system systemd/step-ca.service
|
|
'';
|
|
|
|
preCheck = ''
|
|
export HOME=$(mktemp -d)
|
|
'';
|
|
|
|
# Tests start http servers which need to bind to local addresses:
|
|
# panic: httptest: failed to listen on a port: listen tcp6 [::1]:0: bind: operation not permitted
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
# Tests need to run in a reproducible order, otherwise they run unreliably on
|
|
# (at least) x86_64-linux.
|
|
checkFlags = [ "-p 1" ];
|
|
|
|
passthru.tests.step-ca = nixosTests.step-ca;
|
|
|
|
meta = {
|
|
description = "Private certificate authority (X.509 & SSH) & ACME server for secure automated certificate management, so you can use TLS everywhere & SSO for SSH";
|
|
homepage = "https://smallstep.com/certificates/";
|
|
changelog = "https://github.com/smallstep/certificates/releases/tag/v${version}";
|
|
license = lib.licenses.asl20;
|
|
mainProgram = "step-ca";
|
|
maintainers = with lib.maintainers; [
|
|
cmcdragonkai
|
|
techknowlogick
|
|
];
|
|
};
|
|
}
|