nixpkgs/pkgs/tools/security/spire/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
1.1 KiB
Nix
Raw Normal View History

2021-12-22 19:29:55 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "spire";
2022-04-15 21:11:57 +00:00
version = "1.2.3";
2021-12-22 19:29:55 +00:00
outputs = [ "out" "agent" "server" ];
src = fetchFromGitHub {
owner = "spiffe";
repo = pname;
rev = "v${version}";
2022-04-15 21:11:57 +00:00
sha256 = "sha256-k2kg1Wz0pPV9di2T1A1QvPxLqS5uZBvklNfBW72dQa0=";
2021-12-22 19:29:55 +00:00
};
2022-04-15 21:11:57 +00:00
vendorSha256 = "sha256-J2D5hD0+0VY0sWi6O/McLIvK775aQiDqA+h24oYgRxY=";
2021-12-22 19:29:55 +00:00
subPackages = [ "cmd/spire-agent" "cmd/spire-server" ];
# Usually either the agent or server is needed for a given use case, but not both
postInstall = ''
mkdir -vp $agent/bin $server/bin
mv -v $out/bin/spire-agent $agent/bin/
mv -v $out/bin/spire-server $server/bin/
ln -vs $agent/bin/spire-agent $out/bin/spire-agent
ln -vs $server/bin/spire-server $out/bin/spire-server
'';
meta = with lib; {
description = "The SPIFFE Runtime Environment";
2022-03-09 20:58:56 +00:00
homepage = "https://github.com/spiffe/spire";
2022-03-18 06:08:04 +00:00
changelog = "https://github.com/spiffe/spire/releases/tag/v${version}";
2021-12-22 19:29:55 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ jonringer fkautz ];
2021-12-22 19:29:55 +00:00
};
}