flannel: 0.5.5 -> 0.6.2

+12 -2
+12 -2
pkgs/tools/networking/flannel/default.nix
··· 1 1 { stdenv, lib, buildGoPackage, fetchFromGitHub }: 2 2 3 + with lib; 4 + 3 5 buildGoPackage rec { 4 6 name = "flannel-${version}"; 5 - version = "0.5.5"; 7 + version = "0.6.2"; 6 8 rev = "v${version}"; 7 9 8 10 goPackagePath = "github.com/coreos/flannel"; ··· 13 15 inherit rev; 14 16 owner = "coreos"; 15 17 repo = "flannel"; 16 - sha256 = "19nrilcc41411rag2qm22vdna4kpqm933ry9m82wkd7sqzb50fpw"; 18 + sha256 = "03l0zyv9ajda70zw7jgwlmilw26h849jbb9f4slbycphhvbmpvb9"; 19 + }; 20 + 21 + meta = { 22 + description = "Network fabric for containers, designed for Kubernetes"; 23 + license = licenses.asl20; 24 + homepage = https://github.com/coreos/flannel; 25 + maintainers = with maintainers; [offline]; 26 + platforms = with platforms; linux; 17 27 }; 18 28 }