forked from mirrors/nixpkgs
etcd: add meta information
This commit is contained in:
parent
ff5fd1ec40
commit
235440ec34
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue