tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
flannel: 0.5.5 -> 0.6.2
Jaka Hudoklin
9 years ago
eb1377ba
f93c28ca
+12
-2
1 changed file
expand all
collapse all
unified
split
pkgs
tools
networking
flannel
default.nix
+12
-2
pkgs/tools/networking/flannel/default.nix
···
1
1
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:
2
2
3
3
+
with lib;
4
4
+
3
5
buildGoPackage rec {
4
6
name = "flannel-${version}";
5
5
-
version = "0.5.5";
7
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
16
-
sha256 = "19nrilcc41411rag2qm22vdna4kpqm933ry9m82wkd7sqzb50fpw";
18
18
+
sha256 = "03l0zyv9ajda70zw7jgwlmilw26h849jbb9f4slbycphhvbmpvb9";
19
19
+
};
20
20
+
21
21
+
meta = {
22
22
+
description = "Network fabric for containers, designed for Kubernetes";
23
23
+
license = licenses.asl20;
24
24
+
homepage = https://github.com/coreos/flannel;
25
25
+
maintainers = with maintainers; [offline];
26
26
+
platforms = with platforms; linux;
17
27
};
18
28
}