nixpkgs/pkgs/servers/gobetween/default.nix

37 lines
926 B
Nix
Raw Normal View History

2020-03-21 11:13:00 +01:00
{ buildGoModule, fetchFromGitHub, stdenv, Security, enableStatic ? false }:
2020-01-13 07:48:18 +01:00
buildGoModule rec {
pname = "gobetween";
version = "0.7.0";
src = fetchFromGitHub {
owner = "yyyar";
repo = "gobetween";
rev = version;
sha256 = "f01593509ccece063acd47002c4fc52261fbbbcdbf14b088d813b7d8e38fcca8";
};
modSha256 =
"dd91838d20c99c73447590e43edd13c87755276f17ef3e53f24c5df3d0908f78";
2020-03-21 11:13:00 +01:00
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
2020-01-13 07:48:18 +01:00
buildPhase = ''
2020-03-21 11:13:00 +01:00
make build${stdenv.lib.optionalString enableStatic "-static"}
2020-01-13 07:48:18 +01:00
'';
installPhase = ''
mkdir -p $out/bin
cp bin/gobetween $out/bin
cp -r share $out/share
cp -r config $out/share
'';
2020-03-21 11:13:00 +01:00
meta = with stdenv.lib; {
2020-01-13 07:48:18 +01:00
description = "Modern & minimalistic load balancer for the Сloud era";
homepage = "http://gobetween.io";
license = licenses.mit;
maintainers = with maintainers; [ tomberek ];
};
}