nixpkgs-suyu/pkgs/tools/security/cosign/default.nix

36 lines
1.1 KiB
Nix
Raw Normal View History

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