etcd: add meta information

This commit is contained in:
Jaka Hudoklin 2016-09-03 14:02:53 +02:00
parent ff5fd1ec40
commit 235440ec34

View file

@ -1,5 +1,7 @@
{ stdenv, lib, libpcap, buildGoPackage, fetchFromGitHub }:
with lib;
buildGoPackage rec {
name = "etcd-${version}";
version = "3.0.6";
@ -17,4 +19,12 @@ buildGoPackage rec {
goDeps = ./deps.json;
buildInputs = [ libpcap ];
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;
};
}