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