mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 20:21:14 +00:00
35 lines
785 B
Nix
35 lines
785 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "etcd";
|
|
version = "3.4.23";
|
|
|
|
vendorSha256 = "sha256-kq9KYe4wnPbOLHra5DHZH1N3w2R+dNF7ouF2c26e/cU=";
|
|
|
|
doCheck = false;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "etcd-io";
|
|
repo = "etcd";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-7HAA3MHDlsnTYDu5AmzpFfiWaarUGO09QHrPGLHolyM=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|