rekor-server: init at 0.1.1

This commit is contained in:
Thomas Gerbet 2021-03-27 17:16:20 +01:00
parent 727fa99a64
commit 8460e643b8
2 changed files with 45 additions and 23 deletions

View file

@ -1,31 +1,51 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "rekor-cli";
version = "0.1.1";
let
generic = { pname, subPackages, description, postInstall }:
buildGoModule rec {
inherit pname;
version = "0.1.1";
src = fetchFromGitHub {
owner = "sigstore";
repo = "rekor";
rev = "v${version}";
sha256 = "1hvkfvc747g5r4h8vb1d8ikqxmlyxsycnlh78agmmjpxlasspmbk";
};
src = fetchFromGitHub {
owner = "sigstore";
repo = "rekor";
rev = "v${version}";
sha256 = "1hvkfvc747g5r4h8vb1d8ikqxmlyxsycnlh78agmmjpxlasspmbk";
};
vendorSha256 = "0vdir9ia3hv27rkm6jnvhsfc3mxw36xfvwqnfd34rgzmzcfxlrbv";
vendorSha256 = "0vdir9ia3hv27rkm6jnvhsfc3mxw36xfvwqnfd34rgzmzcfxlrbv";
subPackages = [ "cmd/cli" ];
inherit subPackages postInstall;
# Will not be needed with the next version as the package as been renamed upstream
postInstall = ''
if [ -f "$out/bin/cli" ]; then
mv "$out/bin/cli" "$out/bin/rekor-client"
fi
'';
meta = with lib; {
meta = with lib; {
inherit description;
homepage = "https://github.com/sigstore/rekor";
changelog = "https://github.com/sigstore/rekor/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [ lesuisse ];
};
};
in {
rekor-cli = generic {
pname = "rekor-cli";
subPackages = [ "cmd/cli" ];
# Will not be needed with the next version, the package as been renamed upstream
postInstall = ''
if [ -f "$out/bin/cli" ]; then
mv "$out/bin/cli" "$out/bin/rekor-client"
fi
'';
description = "CLI client for Sigstore, the Signature Transparency Log";
homepage = "https://github.com/sigstore/rekor";
license = licenses.asl20;
maintainers = with maintainers; [ lesuisse ];
};
rekor-server = generic {
pname = "rekor-server";
subPackages = [ "cmd/server" ];
# Will not be needed with the next version, the package as been renamed upstream
postInstall = ''
if [ -f "$out/bin/server" ]; then
mv "$out/bin/server" "$out/bin/rekor-server"
fi
'';
description = "Sigstore server, the Signature Transparency Log";
};
}

View file

@ -7679,7 +7679,9 @@ in
retext = libsForQt5.callPackage ../applications/editors/retext { };
rekor-cli = callPackage ../tools/security/rekor { };
inherit (callPackage ../tools/security/rekor { })
rekor-cli
rekor-server;
richgo = callPackage ../development/tools/richgo { };