2020-04-26 06:42:50 +01:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub, nixosTests }:
|
2016-09-03 13:02:53 +01:00
|
|
|
|
2016-06-04 07:40:17 +01:00
|
|
|
buildGoPackage rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "etcd";
|
2020-05-22 05:42:43 +01:00
|
|
|
version = "3.3.22";
|
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 {
|
2020-04-26 06:42:50 +01:00
|
|
|
owner = "etcd-io";
|
2016-06-06 11:26:56 +01:00
|
|
|
repo = "etcd";
|
2020-04-26 06:42:50 +01:00
|
|
|
rev = "v${version}";
|
2020-05-22 05:42:43 +01:00
|
|
|
sha256 = "1rd390qfx9k20j9gh1wp1g9ygc571f2kv1dg2wvqij3kwydhymcj";
|
2016-06-04 07:40:17 +01:00
|
|
|
};
|
|
|
|
|
2020-04-26 06:42:50 +01:00
|
|
|
buildPhase = ''
|
|
|
|
cd go/src/${goPackagePath}
|
|
|
|
patchShebangs .
|
|
|
|
./build
|
|
|
|
./functional/build
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2020-04-28 02:50:57 +01:00
|
|
|
install -Dm755 bin/* bin/functional/cmd/* -t $out/bin
|
2020-04-26 06:42:50 +01:00
|
|
|
'';
|
2016-06-04 07:40:17 +01:00
|
|
|
|
2020-04-26 06:42:50 +01:00
|
|
|
passthru.tests = with nixosTests; {
|
|
|
|
etcd = etcd;
|
|
|
|
etcd-cluster = etcd-cluster;
|
|
|
|
};
|
2016-09-03 13:02:53 +01:00
|
|
|
|
2020-04-26 06:42:50 +01:00
|
|
|
meta = with lib; {
|
2016-09-03 13:02:53 +01:00
|
|
|
description = "Distributed reliable key-value store for the most critical data of a distributed system";
|
|
|
|
license = licenses.asl20;
|
2020-04-26 06:42:50 +01:00
|
|
|
homepage = "https://etcd.io/";
|
2020-05-20 04:27:36 +01:00
|
|
|
maintainers = with maintainers; [ offline zowoq ];
|
2020-04-26 06:42:50 +01:00
|
|
|
platforms = platforms.unix;
|
2016-09-03 13:02:53 +01:00
|
|
|
};
|
2016-06-04 07:40:17 +01:00
|
|
|
}
|