Merge pull request #329823 from ExpidusOS/fix/pkgsllvm/elfutils
[NixPkgs.git] / pkgs / servers / resgate / default.nix
blob7f74898234258adcae98b09117f745965e10dc0d
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "resgate";
8   version = "1.8.0";
10   src = fetchFromGitHub {
11     owner = "resgateio";
12     repo = pname;
13     rev = "v${version}";
14     hash = "sha256-HQgBWH6dqfmAfKMezUjPbwXif8bqAClns589la2lBVA=";
15   };
17   vendorHash = "sha256-1yQScWjlqYvFmuqG4TLmImlCjFPrLcYcmZ1a3QUnSXY=";
19   meta = with lib; {
20     description = "Realtime API Gateway used with NATS to build REST, real time, and RPC APIs";
21     homepage = "https://resgate.io";
22     license = licenses.mit;
23     maintainers = with maintainers; [ farcaller ];
24     mainProgram = "resgate";
25   };