Commit 603db2cc authored by Austin Seipp's avatar Austin Seipp
Browse files

spicedb: init at 1.11.0



Signed-off-by: default avatarAustin Seipp <aseipp@pobox.com>
parent 01678c2c
Loading
Loading
Loading
Loading
+32 −0
Original line number Diff line number Diff line

{ 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 ];
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -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 { };