flannel: 0.5.5 -> 0.6.2

This commit is contained in:
Jaka Hudoklin 2016-09-27 22:51:09 +02:00
parent f93c28ca69
commit eb1377ba30

View File

@ -1,8 +1,10 @@
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
with lib;
buildGoPackage rec {
name = "flannel-${version}";
version = "0.5.5";
version = "0.6.2";
rev = "v${version}";
goPackagePath = "github.com/coreos/flannel";
@ -13,6 +15,14 @@ buildGoPackage rec {
inherit rev;
owner = "coreos";
repo = "flannel";
sha256 = "19nrilcc41411rag2qm22vdna4kpqm933ry9m82wkd7sqzb50fpw";
sha256 = "03l0zyv9ajda70zw7jgwlmilw26h849jbb9f4slbycphhvbmpvb9";
};
meta = {
description = "Network fabric for containers, designed for Kubernetes";
license = licenses.asl20;
homepage = https://github.com/coreos/flannel;
maintainers = with maintainers; [offline];
platforms = with platforms; linux;
};
}