aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/tools/networking/flannel/default.nix
blob: 86010f4adb91c7f5aa016f60416ed3a7a9ff5556 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ lib, buildGoPackage, fetchFromGitHub }:

with lib;

buildGoPackage rec {
  pname = "flannel";
  version = "0.13.0";
  rev = "v${version}";

  goPackagePath = "github.com/coreos/flannel";

  src = fetchFromGitHub {
    inherit rev;
    owner = "coreos";
    repo = "flannel";
    sha256 = "0mmswnaybwpf18h832haapcs5b63wn5w2hax0smm3inldiggsbw8";
  };

  meta = {
    description = "Network fabric for containers, designed for Kubernetes";
    license = licenses.asl20;
    homepage = "https://github.com/coreos/flannel";
    maintainers = with maintainers; [johanot offline];
    platforms = with platforms; linux;
  };
}