nixpkgs/pkgs/servers/etcd/default.nix

31 lines
708 B
Nix
Raw Normal View History

{ stdenv, lib, libpcap, buildGoPackage, fetchFromGitHub }:
2016-06-04 08:40:17 +02:00
2016-09-03 14:02:53 +02:00
with lib;
2016-06-04 08:40:17 +02:00
buildGoPackage rec {
name = "etcd-${version}";
2016-08-24 14:45:08 +02:00
version = "3.0.6";
2016-06-04 08:40:17 +02:00
rev = "v${version}";
2016-08-24 14:45:08 +02:00
2016-06-04 08:40:17 +02:00
goPackagePath = "github.com/coreos/etcd";
src = fetchFromGitHub {
2016-06-04 08:40:17 +02:00
inherit rev;
owner = "coreos";
repo = "etcd";
2016-08-24 14:45:08 +02:00
sha256 = "163qji360y21nr1wnl16nbvvgdgqgbny4c3v3igp87q9p78sdf75";
2016-06-04 08:40:17 +02:00
};
goDeps = ./deps.json;
buildInputs = [ libpcap ];
2016-09-03 14:02:53 +02:00
meta = {
description = "Distributed reliable key-value store for the most critical data of a distributed system";
license = licenses.asl20;
homepage = https://coreos.com/etcd/;
maintainers = with maintainers; [offline];
platforms = with platforms; linux;
};
2016-06-04 08:40:17 +02:00
}