etcd: 3.3.1 -> 3.3.13

While I would've liked to keep them, the release branch drops the tools
directory as of v3.3.4, seemingly without explanation:
074e417770

master appears to contain them, so they might return at some point.
This commit is contained in:
edef 2019-07-09 22:30:40 +00:00
parent acb1134074
commit 8578d7ab80

View file

@ -4,7 +4,7 @@ with lib;
buildGoPackage rec {
name = "etcd-${version}";
version = "3.3.1"; # After updating check that nixos tests pass
version = "3.3.13"; # After updating check that nixos tests pass
rev = "v${version}";
goPackagePath = "github.com/coreos/etcd";
@ -13,15 +13,12 @@ buildGoPackage rec {
inherit rev;
owner = "coreos";
repo = "etcd";
sha256 = "11gzmi05y4kpnzgqc737l0wk5svxai4z17nl92jazqga6zhyavyl";
sha256 = "1kac4qfr83f2hdz35403f1ald05wc85vvhw79vxb431n61jvyaqy";
};
subPackages = [
"cmd/etcd"
"cmd/etcdctl"
"cmd/tools/benchmark"
"cmd/tools/etcd-dump-db"
"cmd/tools/etcd-dump-logs"
];
buildInputs = [ libpcap ];