{ lib , buildGoModule , fetchFromGitHub }: buildGoModule rec { pname = "zed"; version = "0.10.2"; src = fetchFromGitHub { owner = "authzed"; repo = "zed"; rev = "v${version}"; hash = "sha256-ZI5aoL4CCqSv7Sw5RApa4AeVVE97tA5HXM5tdF12hqE="; }; vendorHash = "sha256-hIhByVm4QpDhnXuWbscKYIgE/Bi0psBE0PvmuCq2NhQ="; meta = with lib; { description = "Command line for managing SpiceDB"; longDescription = '' SpiceDB is an open-source permissions database inspired by Google Zanzibar. zed is the command line client for SpiceDB. ''; homepage = "https://authzed.com/"; license = licenses.asl20; maintainers = with maintainers; [ thoughtpolice ]; }; }