2021-07-14 19:08:39 +01:00
|
|
|
{ stdenv, lib, buildGoModule, fetchFromGitHub, pcsclite, pkg-config, PCSC, pivKeySupport ? true }:
|
2021-03-27 17:20:18 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "cosign";
|
2021-08-02 12:13:37 +01:00
|
|
|
version = "1.0.1";
|
2021-03-27 17:20:18 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sigstore";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-08-02 12:13:37 +01:00
|
|
|
sha256 = "sha256-j1C4OGyVY41bG+rRr6chbii94H4yeRCum52A8XcnP6g=";
|
2021-03-27 17:20:18 +00:00
|
|
|
};
|
|
|
|
|
2021-04-20 07:53:31 +01:00
|
|
|
buildInputs =
|
2021-07-14 19:08:39 +01:00
|
|
|
lib.optional (stdenv.isLinux && pivKeySupport) (lib.getDev pcsclite)
|
|
|
|
++ lib.optionals (stdenv.isDarwin && pivKeySupport) [ PCSC ];
|
2021-04-20 07:53:31 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
|
2021-08-02 12:13:37 +01:00
|
|
|
vendorSha256 = "sha256-9/KrgokCqSWqC4nOgA1e9H0sOx6O/ZFGFEPxiPEKoNI=";
|
2021-03-27 17:20:18 +00:00
|
|
|
|
2021-07-22 18:36:58 +01:00
|
|
|
excludedPackages = "\\(copasetic\\)";
|
2021-03-27 17:20:18 +00:00
|
|
|
|
2021-07-14 19:08:39 +01:00
|
|
|
preBuild = ''
|
|
|
|
buildFlagsArray+=(${lib.optionalString pivKeySupport "-tags=pivkey"})
|
|
|
|
'';
|
2021-08-02 12:13:37 +01:00
|
|
|
ldflags = [ "-s" "-w" "-X github.com/sigstore/cosign/cmd/cosign/cli.gitVersion=v${version}" ];
|
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
|
|
|
};
|
|
|
|
}
|