etcdctl: Use goPackages version of etcd

cc @cstrahan
This commit is contained in:
William A. Kennington III 2015-07-29 18:31:06 -07:00
parent 58e3c658ce
commit af6d8b5182
2 changed files with 1 additions and 26 deletions

View File

@ -1,25 +0,0 @@
{ lib, goPackages, fetchFromGitHub }:
with goPackages;
buildGoPackage rec {
version = "0.4.5";
name = "etcdctl-${version}";
goPackagePath = "github.com/coreos/etcdctl";
src = fetchFromGitHub {
owner = "coreos";
repo = "etcdctl";
rev = "v${version}";
sha256 = "1kbri59ppil52v7s992q8r6i1zk9lac0s2w00z2lsgc9w1z59qs0";
};
dontInstallSrc = true;
meta = with lib; {
description = "A simple command line client for etcd";
homepage = http://coreos.com/using-coreos/etcd/;
license = licenses.asl20;
maintainers = with maintainers; [ cstrahan ];
platforms = platforms.unix;
};
}

View File

@ -8902,7 +8902,7 @@ let
v8 = v8_3_24_10;
};
etcdctl = callPackage ../development/tools/etcdctl { };
etcdctl = goPackages.etcd;
exim = callPackage ../servers/mail/exim { };