2021-12-30 13:39:12 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
2021-04-05 15:23:46 +00:00
|
|
|
|
|
|
|
let
|
2021-06-28 23:13:55 +00:00
|
|
|
generic = { pname, packageToBuild, description }:
|
2021-04-05 15:23:46 +00:00
|
|
|
buildGoModule rec {
|
|
|
|
inherit pname;
|
2021-12-30 13:39:12 +00:00
|
|
|
version = "0.4.0";
|
2021-04-05 15:23:46 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sigstore";
|
|
|
|
repo = "rekor";
|
|
|
|
rev = "v${version}";
|
2021-12-30 13:39:12 +00:00
|
|
|
sha256 = "sha256-15p4hm4Cvs/yLaQIcxctVdMKRWPjIIFwBcbru6QcjXo=";
|
2021-04-05 15:23:46 +00:00
|
|
|
};
|
|
|
|
|
2021-12-30 13:39:12 +00:00
|
|
|
vendorSha256 = "sha256-XCCO4Vamzj5pJFmu1A8mpTLlVAtocrn20myYJVWtBrY=";
|
|
|
|
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
2021-04-05 15:23:46 +00:00
|
|
|
|
2021-06-28 23:13:55 +00:00
|
|
|
subPackages = [ packageToBuild ];
|
|
|
|
|
2021-12-30 13:39:12 +00:00
|
|
|
ldflags = [ "-s" "-w" "-X github.com/sigstore/rekor/${packageToBuild}/app.GitVersion=v${version}" ];
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
installShellCompletion --cmd ${pname} \
|
|
|
|
--bash <($out/bin/${pname} completion bash) \
|
|
|
|
--fish <($out/bin/${pname} completion fish) \
|
|
|
|
--zsh <($out/bin/${pname} completion zsh)
|
|
|
|
'';
|
2021-04-05 15:23:46 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
inherit description;
|
|
|
|
homepage = "https://github.com/sigstore/rekor";
|
|
|
|
changelog = "https://github.com/sigstore/rekor/releases/tag/v${version}";
|
|
|
|
license = licenses.asl20;
|
2021-08-05 21:33:18 +00:00
|
|
|
maintainers = with maintainers; [ lesuisse jk ];
|
2021-04-05 15:23:46 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
in {
|
|
|
|
rekor-cli = generic {
|
|
|
|
pname = "rekor-cli";
|
2021-06-28 23:13:55 +00:00
|
|
|
packageToBuild = "cmd/rekor-cli";
|
2021-04-05 15:23:46 +00:00
|
|
|
description = "CLI client for Sigstore, the Signature Transparency Log";
|
|
|
|
};
|
|
|
|
rekor-server = generic {
|
|
|
|
pname = "rekor-server";
|
2021-06-28 23:13:55 +00:00
|
|
|
packageToBuild = "cmd/rekor-server";
|
2021-04-05 15:23:46 +00:00
|
|
|
description = "Sigstore server, the Signature Transparency Log";
|
|
|
|
};
|
|
|
|
}
|