39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "openfga";
|
|
version = "1.4.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "openfga";
|
|
repo = "openfga";
|
|
rev = "v${version}";
|
|
hash = "sha256-fWSsTmb/vwoZ5CTsOOITZC/ZOEoAtWI42KSbTDKNdDY=";
|
|
};
|
|
|
|
vendorHash = "sha256-/110Ocvcj/WRpqth6RFQQ0xj2WAkW/psDQcFZO2parI=";
|
|
|
|
subPackages = [ "cmd/openfga" ];
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
"-X=github.com/openfga/openfga/internal/build.Version=v${version}"
|
|
"-X=github.com/openfga/openfga/internal/build.Commit=${src.rev}"
|
|
"-X=github.com/openfga/openfga/internal/build.Date=1970-01-01T00:00:00Z"
|
|
"-X=github.com/openfga/openfga/internal/build.ProjectName=${pname}"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A high performance and flexible authorization/permission engine built for developers and inspired by Google Zanzibar";
|
|
homepage = "https://github.com/openfga/openfga";
|
|
changelog = "https://github.com/openfga/openfga/blob/${src.rev}/CHANGELOG.md";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ ];
|
|
mainProgram = "openfga";
|
|
};
|
|
}
|