aboutsummaryrefslogtreecommitdiff
path: root/pkgs/servers/etcd
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2020-05-20 10:29:48 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2020-05-20 13:29:11 +1000
commite0df66e6a236d5bf2b97ef170b4ba1f103f5a17a (patch)
treeaf6d3139fc001992e0e26ff93cfb5e4408074c66 /pkgs/servers/etcd
parent9d92aa38d4088c992948c331c3795fbb1814ce82 (diff)
etcd_3_4: init at 3.4.8
https://github.com/etcd-io/etcd/blob/master/CHANGELOG-3.4.md
Diffstat (limited to 'pkgs/servers/etcd')
-rw-r--r--pkgs/servers/etcd/3.4.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/servers/etcd/3.4.nix b/pkgs/servers/etcd/3.4.nix
new file mode 100644
index 000000000000..4ceb9451b73f
--- /dev/null
+++ b/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;
+ };
+}