2021-07-14 22:03:04 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "fulcio";
|
2022-04-15 01:41:22 +00:00
|
|
|
version = "0.3.0";
|
2021-07-14 22:03:04 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sigstore";
|
|
|
|
repo = pname;
|
2021-08-05 21:33:18 +00:00
|
|
|
rev = "v${version}";
|
2022-04-15 01:41:22 +00:00
|
|
|
sha256 = "sha256-jcmjfNGruDhQPhVn5R2hdUr+d42qQnIVj8+CCX5HMMM=";
|
2022-03-30 09:31:56 +00:00
|
|
|
# populate values that require us to use git. By doing this in postFetch we
|
|
|
|
# can delete .git afterwards and maintain better reproducibility of the src.
|
|
|
|
leaveDotGit = true;
|
|
|
|
postFetch = ''
|
|
|
|
cd "$out"
|
|
|
|
git rev-parse HEAD > $out/COMMIT
|
|
|
|
# '0000-00-00T00:00:00Z'
|
|
|
|
date -u -d "@$(git log -1 --pretty=%ct)" "+'%Y-%m-%dT%H:%M:%SZ'" > $out/SOURCE_DATE_EPOCH
|
|
|
|
find "$out" -name .git -print0 | xargs -0 rm -rf
|
|
|
|
'';
|
2021-07-14 22:03:04 +00:00
|
|
|
};
|
2022-04-15 01:41:22 +00:00
|
|
|
vendorSha256 = "sha256-WQ0MuNEJWCxKTjkyqA66bGPoMrS/7W/YTiGU3yd+Ge8=";
|
2021-07-14 22:03:04 +00:00
|
|
|
|
2022-03-30 09:31:56 +00:00
|
|
|
# install completions post-install
|
2021-07-14 22:03:04 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
2022-04-15 01:41:22 +00:00
|
|
|
excludedPackages = [ "federation" "test/prometheus" ];
|
|
|
|
|
2022-03-30 09:31:56 +00:00
|
|
|
ldflags = [
|
|
|
|
"-s"
|
|
|
|
"-w"
|
|
|
|
"-X github.com/sigstore/fulcio/cmd/app.gitVersion=v${version}"
|
|
|
|
"-X github.com/sigstore/fulcio/cmd/app.gitTreeState=clean"
|
|
|
|
];
|
|
|
|
|
|
|
|
# ldflags based on metadata from git and source
|
|
|
|
preBuild = ''
|
|
|
|
ldflags+=" -X github.com/sigstore/fulcio/cmd/app.gitCommit=$(cat COMMIT)"
|
|
|
|
ldflags+=" -X github.com/sigstore/fulcio/cmd/app.buildDate=$(cat SOURCE_DATE_EPOCH)"
|
|
|
|
'';
|
|
|
|
|
|
|
|
preCheck = ''
|
|
|
|
# remove test that requires networking
|
|
|
|
rm pkg/config/config_test.go
|
|
|
|
'';
|
|
|
|
|
2021-07-14 22:03:04 +00:00
|
|
|
postInstall = ''
|
2022-03-30 09:31:56 +00:00
|
|
|
installShellCompletion --cmd fulcio \
|
|
|
|
--bash <($out/bin/fulcio completion bash) \
|
|
|
|
--fish <($out/bin/fulcio completion fish) \
|
|
|
|
--zsh <($out/bin/fulcio completion zsh)
|
2021-07-14 22:03:04 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckPhase = ''
|
|
|
|
runHook preInstallCheck
|
2022-03-30 09:31:56 +00:00
|
|
|
|
|
|
|
$out/bin/fulcio --help
|
|
|
|
$out/bin/fulcio version | grep "v${version}"
|
|
|
|
|
2021-07-14 22:03:04 +00:00
|
|
|
runHook postInstallCheck
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/sigstore/fulcio";
|
2021-08-05 21:33:18 +00:00
|
|
|
changelog = "https://github.com/sigstore/fulcio/releases/tag/v${version}";
|
2021-07-14 22:03:04 +00:00
|
|
|
description = "A Root-CA for code signing certs - issuing certificates based on an OIDC email address";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ lesuisse jk ];
|
|
|
|
};
|
|
|
|
}
|