My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/servers/serf/default.nix

24 lines
610 B

{ lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "serf";
version = "0.8.1";
rev = "v${version}";
goPackagePath = "github.com/hashicorp/serf";
src = fetchFromGitHub {
owner = "hashicorp";
repo = "serf";
inherit rev;
sha256 = "1arakjvhyasrk52vhxas2ghlrby3i3wj59r7sjrkbpln2cdbqnlx";
};
meta = with lib; {
description = "Tool for service orchestration and management";
homepage = "https://www.serf.io/";
platforms = platforms.linux ++ platforms.darwin;
license = licenses.mpl20;
maintainers = with maintainers; [ pradeepchhetri ];
};
}