forked from mirrors/nixpkgs
resgate: init at 1.7.5
This commit is contained in:
parent
2f1948af9c
commit
496db77f2b
25
pkgs/servers/resgate/default.nix
Normal file
25
pkgs/servers/resgate/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ 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 ];
|
||||
};
|
||||
}
|
|
@ -38597,4 +38597,6 @@ with pkgs;
|
|||
tubekit = callPackage ../applications/networking/cluster/tubekit/wrapper.nix { };
|
||||
|
||||
tubekit-unwrapped = callPackage ../applications/networking/cluster/tubekit { };
|
||||
|
||||
resgate = callPackage ../servers/resgate { };
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue