summary refs log tree commit diff
path: root/pkgs/servers/etcd
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2020-09-01 10:13:42 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2020-09-02 07:37:31 +1000
commit7042fefef12a15181483ad38388abadee64bf68e (patch)
tree44c70582c275c9ebb26d8702eafd97673c95ff15 /pkgs/servers/etcd
parent57b91fc5adda978993e675e144d72cb184f645f8 (diff)
etcd: 3.3.22 -> 3.3.25
Diffstat (limited to 'pkgs/servers/etcd')
-rw-r--r--pkgs/servers/etcd/default.nix9
1 files changed, 3 insertions, 6 deletions
diff --git a/pkgs/servers/etcd/default.nix b/pkgs/servers/etcd/default.nix
index 4c0df659f3ed8..53ad0d6ed240f 100644
--- a/pkgs/servers/etcd/default.nix
+++ b/pkgs/servers/etcd/default.nix
@@ -2,7 +2,7 @@
 
 buildGoPackage rec {
   pname = "etcd";
-  version = "3.3.22";
+  version = "3.3.25";
 
   goPackagePath = "github.com/coreos/etcd";
 
@@ -10,7 +10,7 @@ buildGoPackage rec {
     owner = "etcd-io";
     repo = "etcd";
     rev = "v${version}";
-    sha256 = "1rd390qfx9k20j9gh1wp1g9ygc571f2kv1dg2wvqij3kwydhymcj";
+    sha256 = "10cyy6jr2xzmla5yyn850cv323ixrk70fjpk8lxjjjvy0ffmb6hj";
   };
 
   buildPhase = ''
@@ -24,10 +24,7 @@ buildGoPackage rec {
     install -Dm755 bin/* bin/functional/cmd/* -t $out/bin
   '';
 
-  passthru.tests = with nixosTests; {
-    etcd = etcd;
-    etcd-cluster = etcd-cluster;
-  };
+  passthru.tests = { inherit (nixosTests) etcd etcd-cluster; };
 
   meta = with lib; {
     description = "Distributed reliable key-value store for the most critical data of a distributed system";