2021-11-11 20:47:21 +00:00
|
|
|
{ stdenv, lib, buildGoModule, fetchFromGitHub, pcsclite, pkg-config, installShellFiles, PCSC, pivKeySupport ? true, pkcs11Support ? true }:
|
2021-03-27 17:20:18 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "cosign";
|
2021-12-07 07:15:49 +00:00
|
|
|
version = "1.4.0";
|
2021-03-27 17:20:18 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sigstore";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-12-07 07:15:49 +00:00
|
|
|
sha256 = "sha256-KavhcBxn0099ZSd7wdIfMYnYhbmuRpc7+FTfdm1T71c=";
|
2021-03-27 17:20:18 +00:00
|
|
|
};
|
|
|
|
|
2021-11-03 07:10:38 +00:00
|
|
|
buildInputs = lib.optional (stdenv.isLinux && pivKeySupport) (lib.getDev pcsclite)
|
2021-07-14 19:08:39 +01:00
|
|
|
++ lib.optionals (stdenv.isDarwin && pivKeySupport) [ PCSC ];
|
2021-04-20 07:53:31 +01:00
|
|
|
|
2021-11-03 07:10:38 +00:00
|
|
|
nativeBuildInputs = [ pkg-config installShellFiles ];
|
2021-04-20 07:53:31 +01:00
|
|
|
|
2021-12-07 07:15:49 +00:00
|
|
|
vendorSha256 = "sha256-7fWSGj8Ex8nPpMr3Foryiu25gBvzeZfVeMwZ3QKsm8E=";
|
2021-03-27 17:20:18 +00:00
|
|
|
|
2021-11-03 07:10:38 +00:00
|
|
|
excludedPackages = "\\(sample\\|webhook\\|help\\)";
|
2021-03-27 17:20:18 +00:00
|
|
|
|
2021-11-11 20:47:21 +00:00
|
|
|
tags = [] ++ lib.optionals pivKeySupport [ "pivkey" ] ++ lib.optionals pkcs11Support [ "pkcs11key" ];
|
2021-08-07 03:28:41 +01:00
|
|
|
|
2021-11-11 20:47:21 +00:00
|
|
|
ldflags = [ "-s" "-w" "-X github.com/sigstore/cosign/pkg/version.GitVersion=v${version}" ];
|
2021-11-03 07:10:38 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
installShellCompletion --cmd cosign \
|
|
|
|
--bash <($out/bin/cosign completion bash) \
|
|
|
|
--fish <($out/bin/cosign completion fish) \
|
|
|
|
--zsh <($out/bin/cosign completion zsh)
|
2021-12-07 07:15:49 +00:00
|
|
|
installShellCompletion --cmd sget \
|
|
|
|
--bash <($out/bin/sget completion bash) \
|
|
|
|
--fish <($out/bin/sget completion fish) \
|
|
|
|
--zsh <($out/bin/sget completion zsh)
|
2021-11-03 07:10:38 +00:00
|
|
|
'';
|
2021-04-21 07:59:20 +01:00
|
|
|
|
2021-03-27 17:20:18 +00:00
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://github.com/sigstore/cosign";
|
|
|
|
changelog = "https://github.com/sigstore/cosign/releases/tag/v${version}";
|
|
|
|
description = "Container Signing CLI with support for ephemeral keys and Sigstore signing";
|
|
|
|
license = licenses.asl20;
|
2021-04-21 09:06:45 +01:00
|
|
|
maintainers = with maintainers; [ lesuisse jk ];
|
2021-03-27 17:20:18 +00:00
|
|
|
};
|
|
|
|
}
|