2018-07-21 01:44:44 +01:00
|
|
|
{ lib, libpcap, buildGoPackage, fetchFromGitHub }:
|
2016-06-04 07:40:17 +01:00
|
|
|
|
2016-09-03 13:02:53 +01:00
|
|
|
with lib;
|
|
|
|
|
2016-06-04 07:40:17 +01:00
|
|
|
buildGoPackage rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "etcd";
|
2019-07-09 23:30:40 +01:00
|
|
|
version = "3.3.13"; # After updating check that nixos tests pass
|
2016-06-04 07:40:17 +01:00
|
|
|
rev = "v${version}";
|
2016-08-24 13:45:08 +01:00
|
|
|
|
2016-06-04 07:40:17 +01:00
|
|
|
goPackagePath = "github.com/coreos/etcd";
|
|
|
|
|
2016-06-06 11:26:56 +01:00
|
|
|
src = fetchFromGitHub {
|
2016-06-04 07:40:17 +01:00
|
|
|
inherit rev;
|
2016-06-06 11:26:56 +01:00
|
|
|
owner = "coreos";
|
|
|
|
repo = "etcd";
|
2019-07-09 23:30:40 +01:00
|
|
|
sha256 = "1kac4qfr83f2hdz35403f1ald05wc85vvhw79vxb431n61jvyaqy";
|
2016-06-04 07:40:17 +01:00
|
|
|
};
|
|
|
|
|
2017-04-23 09:26:57 +01:00
|
|
|
subPackages = [
|
|
|
|
"cmd/etcd"
|
|
|
|
"cmd/etcdctl"
|
|
|
|
];
|
2016-06-04 07:40:17 +01:00
|
|
|
|
|
|
|
buildInputs = [ libpcap ];
|
2016-09-03 13:02:53 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Distributed reliable key-value store for the most critical data of a distributed system";
|
|
|
|
license = licenses.asl20;
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://coreos.com/etcd/";
|
2016-09-03 13:02:53 +01:00
|
|
|
maintainers = with maintainers; [offline];
|
|
|
|
platforms = with platforms; linux;
|
|
|
|
};
|
2016-06-04 07:40:17 +01:00
|
|
|
}
|