mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 08:43:06 +00:00
b907d793eb
Moved to pkgs/by-name Diff: https://github.com/sigstore/fulcio/compare/v1.6.4...v1.6.5 Changelog: https://github.com/sigstore/fulcio/releases/tag/v1.6.5
107 lines
2.9 KiB
Nix
107 lines
2.9 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
|
|
# required for completion and cross-complilation
|
|
installShellFiles,
|
|
buildPackages,
|
|
stdenv,
|
|
|
|
# required for testing
|
|
testers,
|
|
fulcio,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "fulcio";
|
|
version = "1.6.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sigstore";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-TCWZrTqNXTcTsLqTnwnJPXN+kMYVVwLm2J3Y6gd2CV8=";
|
|
# 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
|
|
'';
|
|
};
|
|
vendorHash = "sha256-3E2Y0UlJMjTiM4ILEiaNqVmt4fWMvCRAqzm//CvRIl4=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
subPackages = [ "." ];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X sigs.k8s.io/release-utils/version.gitVersion=v${version}"
|
|
"-X sigs.k8s.io/release-utils/version.gitTreeState=clean"
|
|
];
|
|
|
|
# ldflags based on metadata from git and source
|
|
preBuild = ''
|
|
ldflags+=" -X sigs.k8s.io/release-utils/version.gitCommit=$(cat COMMIT)"
|
|
ldflags+=" -X sigs.k8s.io/release-utils/version.buildDate=$(cat SOURCE_DATE_EPOCH)"
|
|
'';
|
|
|
|
preCheck = ''
|
|
# test all paths
|
|
unset subPackages
|
|
'';
|
|
|
|
checkFlags = [
|
|
"-skip=TestLoad"
|
|
];
|
|
|
|
postInstall =
|
|
let
|
|
fulcio =
|
|
if stdenv.buildPlatform.canExecute stdenv.hostPlatform then
|
|
placeholder "out"
|
|
else
|
|
buildPackages.fulcio;
|
|
in
|
|
''
|
|
installShellCompletion --cmd fulcio \
|
|
--bash <(${fulcio}/bin/fulcio completion bash) \
|
|
--fish <(${fulcio}/bin/fulcio completion fish) \
|
|
--zsh <(${fulcio}/bin/fulcio completion zsh)
|
|
'';
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = fulcio;
|
|
command = "fulcio version";
|
|
version = "v${version}";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/sigstore/fulcio";
|
|
changelog = "https://github.com/sigstore/fulcio/releases/tag/v${version}";
|
|
description = "Root-CA for code signing certs - issuing certificates based on an OIDC email address";
|
|
mainProgram = "fulcio";
|
|
longDescription = ''
|
|
Fulcio is a free code signing Certificate Authority, built to make
|
|
short-lived certificates available to anyone. Based on an Open ID Connect
|
|
email address, Fulcio signs x509 certificates valid for under 20 minutes.
|
|
|
|
Fulcio was designed to run as a centralized, public-good instance backed
|
|
up by other transparency logs. Development is now underway to support
|
|
different delegation models, and to deploy and run Fulcio as a
|
|
disconnected instance.
|
|
'';
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [
|
|
lesuisse
|
|
jk
|
|
];
|
|
};
|
|
}
|