mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
60 lines
1.6 KiB
Nix
60 lines
1.6 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, buildGoModule
|
|
, coreutils
|
|
, pcsclite
|
|
, PCSC
|
|
, pkg-config
|
|
, hsmSupport ? true
|
|
, nixosTests
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "step-ca";
|
|
version = "0.18.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "smallstep";
|
|
repo = "certificates";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-f9sp5sAWysOOoIdCiCJxTWRhyt0wfpO5p4pxW6jj0xc=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-iDfPCRU91cuZsKqNOjkLGYmWf8i5FO4NmDsfD5Xqip0=";
|
|
|
|
ldflags = [ "-buildid=" ];
|
|
|
|
nativeBuildInputs = lib.optionals hsmSupport [ pkg-config ];
|
|
|
|
buildInputs =
|
|
lib.optionals (hsmSupport && stdenv.isLinux) [ pcsclite ]
|
|
++ lib.optionals (hsmSupport && stdenv.isDarwin) [ PCSC ];
|
|
|
|
postPatch = ''
|
|
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
|
|
'';
|
|
|
|
# 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;
|
|
|
|
passthru.tests.step-ca = nixosTests.step-ca;
|
|
|
|
meta = with lib; {
|
|
description = "A 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/";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ cmcdragonkai mohe2015 ];
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
}
|