summary refs log tree commit diff
path: root/pkgs/servers/gobetween/default.nix
blob: ff59ad53ed1ce41531eed3a65e2062d42de20fb2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ buildGoModule, fetchFromGitHub, lib, enableStatic ? false }:

buildGoModule rec {
  pname = "gobetween";
  version = "0.7.0";

  src = fetchFromGitHub {
    owner = "yyyar";
    repo = "gobetween";
    rev = version;
    sha256 = "f01593509ccece063acd47002c4fc52261fbbbcdbf14b088d813b7d8e38fcca8";
  };

  modSha256 =
    "dd91838d20c99c73447590e43edd13c87755276f17ef3e53f24c5df3d0908f78";

  buildPhase = ''
    make build${lib.optionalString enableStatic "-static"}
  '';

  installPhase = ''
    mkdir -p $out/bin
    cp bin/gobetween $out/bin
    cp -r share $out/share
    cp -r config $out/share
  '';

  meta = with lib; {
    description = "Modern & minimalistic load balancer for the Сloud era";
    homepage = "http://gobetween.io";
    license = licenses.mit;
    maintainers = with maintainers; [ tomberek ];
  };
}