mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
spicedb: init at 1.11.0
Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
01678c2c31
commit
603db2cc14
32
pkgs/servers/spicedb/default.nix
Normal file
32
pkgs/servers/spicedb/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
|
||||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "spicedb";
|
||||
version = "1.11.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "authzed";
|
||||
repo = "spicedb";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-X52sf21IMr5muEx9SUoYQmFonXDPeW8NKylPmoAZYjw";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-lO4H2DlMfYuV2BYPnMV3Ynx0khFE6KDxf/aXA53pBpU";
|
||||
|
||||
subPackages = [ "cmd/spicedb" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Open source permission database";
|
||||
longDescription = ''
|
||||
SpiceDB is an open-source permissions database inspired by
|
||||
Google Zanzibar.
|
||||
'';
|
||||
homepage = "https://authzed.com/";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ thoughtpolice ];
|
||||
};
|
||||
}
|
@ -13538,6 +13538,7 @@ with pkgs;
|
||||
|
||||
remarkable2-toolchain = callPackage ../development/tools/misc/remarkable/remarkable2-toolchain { };
|
||||
|
||||
spicedb = callPackage ../servers/spicedb { };
|
||||
spicedb-zed = callPackage ../servers/spicedb/zed.nix { };
|
||||
|
||||
tacacsplus = callPackage ../servers/tacacsplus { };
|
||||
|
Loading…
Reference in New Issue
Block a user