tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
resgate: init at 1.7.5
Vladimir Pouzanov
3 years ago
496db77f
2f1948af
+27
2 changed files
expand all
collapse all
unified
split
pkgs
servers
resgate
default.nix
top-level
all-packages.nix
+25
pkgs/servers/resgate/default.nix
···
1
1
+
{ lib
2
2
+
, buildGoModule
3
3
+
, fetchFromGitHub
4
4
+
}:
5
5
+
6
6
+
buildGoModule rec {
7
7
+
pname = "resgate";
8
8
+
version = "1.7.5";
9
9
+
10
10
+
src = fetchFromGitHub {
11
11
+
owner = "resgateio";
12
12
+
repo = pname;
13
13
+
rev = "v${version}";
14
14
+
hash = "sha256-CAK2BjHa/l4cAWUKL0hGjqKi/Cdg+/K/MlnDreB69YE=";
15
15
+
};
16
16
+
17
17
+
vendorHash = "sha256-6uLCZvvQ8lRug6TlavQ1t73RqJlLCRxTwUhMp3OMMB0=";
18
18
+
19
19
+
meta = with lib; {
20
20
+
description = "A Realtime API Gateway used with NATS to build REST, real time, and RPC APIs";
21
21
+
homepage = "https://resgate.io";
22
22
+
license = licenses.mit;
23
23
+
maintainers = with maintainers; [ farcaller ];
24
24
+
};
25
25
+
}
+2
pkgs/top-level/all-packages.nix
···
38597
38597
tubekit = callPackage ../applications/networking/cluster/tubekit/wrapper.nix { };
38598
38598
38599
38599
tubekit-unwrapped = callPackage ../applications/networking/cluster/tubekit { };
38600
38600
+
38601
38601
+
resgate = callPackage ../servers/resgate { };
38600
38602
}