nixpkgs/pkgs/servers/etcd/3.4.nix

36 lines
768 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "etcd";
2021-11-14 02:13:13 +03:00
version = "3.4.18";
2021-05-13 00:04:26 +03:00
vendorSha256 = null;
doCheck = false;
src = fetchFromGitHub {
owner = "etcd-io";
repo = "etcd";
rev = "v${version}";
2021-11-14 02:13:13 +03:00
sha256 = "sha256-/bXcW5g8mNFEjvfg+1loLFi8+IaWdcTE/lUPsHzEaIo=";
};
buildPhase = ''
patchShebangs .
./build
./functional/build
'';
installPhase = ''
install -Dm755 bin/* bin/functional/cmd/* -t $out/bin
'';
meta = with lib; {
description = "Distributed reliable key-value store for the most critical data of a distributed system";
license = licenses.asl20;
homepage = "https://etcd.io/";
maintainers = with maintainers; [ offline zowoq ];
platforms = platforms.unix;
};
}