37 lines
1.1 KiB
Nix
37 lines
1.1 KiB
Nix
{ stdenv, lib, buildGoModule, fetchFromGitHub, pcsclite, pkg-config, PCSC, pivKeySupport ? true }:
|
|
|
|
buildGoModule rec {
|
|
pname = "cosign";
|
|
version = "1.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sigstore";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-j1C4OGyVY41bG+rRr6chbii94H4yeRCum52A8XcnP6g=";
|
|
};
|
|
|
|
buildInputs =
|
|
lib.optional (stdenv.isLinux && pivKeySupport) (lib.getDev pcsclite)
|
|
++ lib.optionals (stdenv.isDarwin && pivKeySupport) [ PCSC ];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
vendorSha256 = "sha256-9/KrgokCqSWqC4nOgA1e9H0sOx6O/ZFGFEPxiPEKoNI=";
|
|
|
|
excludedPackages = "\\(copasetic\\)";
|
|
|
|
preBuild = ''
|
|
buildFlagsArray+=(${lib.optionalString pivKeySupport "-tags=pivkey"})
|
|
'';
|
|
ldflags = [ "-s" "-w" "-X github.com/sigstore/cosign/cmd/cosign/cli.gitVersion=v${version}" ];
|
|
|
|
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;
|
|
maintainers = with maintainers; [ lesuisse jk ];
|
|
};
|
|
}
|