summary refs log tree commit diff
path: root/pkgs/development/tools/etcdctl/default.nix
blob: 5fea6012ccfb0bde804f0f2e45c871665678f57c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ 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";
  };

  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;
  };
}