Skip to content

Commit

Permalink
Merge pull request #88225 from zowoq/etcd
Browse files Browse the repository at this point in the history
etcd: 3.3.20 -> 3.3.21, etcd_3_4: init at 3.4.8
  • Loading branch information
offlinehacker committed May 20, 2020
2 parents f7394da + e0df66e commit c342710
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 4 deletions.
33 changes: 33 additions & 0 deletions pkgs/servers/etcd/3.4.nix
@@ -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;
};
}
7 changes: 3 additions & 4 deletions pkgs/servers/etcd/default.nix
Expand Up @@ -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 = ''
Expand All @@ -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;
};
}
1 change: 1 addition & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -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 { };

Expand Down

0 comments on commit c342710

Please sign in to comment.