3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #88225 from zowoq/etcd

etcd: 3.3.20 -> 3.3.21, etcd_3_4: init at 3.4.8
This commit is contained in:
Jaka Hudoklin 2020-05-20 03:45:25 +00:00 committed by GitHub
commit c342710d21
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 37 additions and 4 deletions

33
pkgs/servers/etcd/3.4.nix Normal file
View file

@ -0,0 +1,33 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "etcd";
version = "3.4.8";
vendorSha256 = null;
src = fetchFromGitHub {
owner = "etcd-io";
repo = "etcd";
rev = "v${version}";
sha256 = "0kx36kq6a7i3cja3wp9mwbnar752pz8c0n2fcvwyzi6l6ph6alx7";
};
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;
};
}

View file

@ -2,16 +2,15 @@
buildGoPackage rec {
pname = "etcd";
version = "3.3.20";
version = "3.3.21";
# change to "go.etcd.io/etcd" for >= 3.4
goPackagePath = "github.com/coreos/etcd";
src = fetchFromGitHub {
owner = "etcd-io";
repo = "etcd";
rev = "v${version}";
sha256 = "1iqq12kkky3cl28k7fabqqyx1i0a2wmbkq0bs8yhiwywp076k08w";
sha256 = "1xrhkynach3c7wsfac6zlpi5n1hy3y75vyimvw2zl7ryhm00413s";
};
buildPhase = ''
@ -34,7 +33,7 @@ buildGoPackage rec {
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 ];
maintainers = with maintainers; [ offline zowoq ];
platforms = platforms.unix;
};
}

View file

@ -15543,6 +15543,7 @@ in
dspam = callPackage ../servers/mail/dspam { };
etcd = callPackage ../servers/etcd { };
etcd_3_4 = callPackage ../servers/etcd/3.4.nix { };
ejabberd = callPackage ../servers/xmpp/ejabberd { };