2021-07-16 19:40:57 +00:00
|
|
|
{ stdenv, lib, buildGoModule, fetchFromGitHub, pcsclite, pkg-config, PCSC, pivKeySupport ? true }:
|
2021-03-20 04:20:00 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "cosign";
|
2021-09-22 15:38:15 +00:00
|
|
|
version = "1.2.1";
|
2021-03-20 04:20:00 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sigstore";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-09-22 15:38:15 +00:00
|
|
|
sha256 = "sha256-peR/TPydR4O6kGkRUpOgUCJ7xGRLbl9pYB1lAehjVK4=";
|
2021-03-20 04:20:00 +00:00
|
|
|
};
|
|
|
|
|
2021-04-22 02:08:21 +00:00
|
|
|
buildInputs =
|
2021-07-16 19:40:57 +00:00
|
|
|
lib.optional (stdenv.isLinux && pivKeySupport) (lib.getDev pcsclite)
|
|
|
|
++ lib.optionals (stdenv.isDarwin && pivKeySupport) [ PCSC ];
|
2021-04-22 02:08:21 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
|
2021-09-22 15:38:15 +00:00
|
|
|
vendorSha256 = "sha256-DyRMQ43BJOkDtWEqmAzqICyaSyQJ9H4i69VJ4dCGF44=";
|
2021-03-20 04:20:00 +00:00
|
|
|
|
2021-09-18 10:52:07 +00:00
|
|
|
excludedPackages = "\\(copasetic\\|sample\\|webhook\\)";
|
2021-03-20 04:20:00 +00:00
|
|
|
|
2021-08-08 23:34:03 +00:00
|
|
|
tags = lib.optionals pivKeySupport [ "pivkey" ];
|
|
|
|
|
2021-09-22 15:38:15 +00:00
|
|
|
ldflags = [ "-s" "-w" "-X github.com/sigstore/cosign/cmd/cosign/cli.GitVersion=v${version}" ];
|
2021-04-22 02:08:21 +00:00
|
|
|
|
2021-03-20 04:20:00 +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-22 02:08:21 +00:00
|
|
|
maintainers = with maintainers; [ lesuisse jk ];
|
2021-03-20 04:20:00 +00:00
|
|
|
};
|
|
|
|
}
|