summary refs log tree commit diff
path: root/pkgs/servers/etcd/default.nix
blob: 05bb610496932a7cd901a63897a23bd1efcf543c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# This file was generated by go2nix.
{ stdenv, lib, libpcap, goPackages, fetchgit, fetchhg, fetchbzr, fetchsvn }:

with goPackages;

buildGoPackage rec {
  name = "etcd-${version}";
  version = "2.3.0";
  rev = "v${version}";
  
  goPackagePath = "github.com/coreos/etcd";

  src = fetchgit {
    inherit rev;
    url = "https://github.com/coreos/etcd";
    sha256 = "1cchlhsdbbqal145cvdiq7rzqqi131iq7z0r2hmzwx414k04wyn7";
  };

  goDeps = ./deps.json;

  buildInputs = [ libpcap ];
}