Unverified Commit 30eecb64 authored by Anderson Torres's avatar Anderson Torres Committed by GitHub
Browse files

Merge pull request #211061 from farcaller/resgate

resgate: init at 1.7.5
parents 6bd0eb8b 496db77f
Loading
Loading
Loading
Loading
+25 −0
Original line number Diff line number Diff line
{ lib
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
  pname = "resgate";
  version = "1.7.5";

  src = fetchFromGitHub {
    owner = "resgateio";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-CAK2BjHa/l4cAWUKL0hGjqKi/Cdg+/K/MlnDreB69YE=";
  };

  vendorHash = "sha256-6uLCZvvQ8lRug6TlavQ1t73RqJlLCRxTwUhMp3OMMB0=";

  meta = with lib; {
    description = "A Realtime API Gateway used with NATS to build REST, real time, and RPC APIs";
    homepage = "https://resgate.io";
    license = licenses.mit;
    maintainers = with maintainers; [ farcaller ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -38616,4 +38616,6 @@ with pkgs;
  tubekit = callPackage ../applications/networking/cluster/tubekit/wrapper.nix { };
  tubekit-unwrapped = callPackage ../applications/networking/cluster/tubekit { };
  resgate = callPackage ../servers/resgate { };
}