nixpkgs/pkgs/tools/networking/flannel/default.nix

27 lines
622 B
Nix
Raw Normal View History

{ lib, buildGoPackage, fetchFromGitHub }:
2016-06-03 11:17:53 +00:00
2016-09-27 20:51:09 +00:00
with lib;
2016-06-03 11:17:53 +00:00
buildGoPackage rec {
pname = "flannel";
2020-10-18 06:47:41 +00:00
version = "0.13.0";
2016-06-03 11:17:53 +00:00
rev = "v${version}";
goPackagePath = "github.com/coreos/flannel";
src = fetchFromGitHub {
2016-06-03 11:17:53 +00:00
inherit rev;
owner = "coreos";
repo = "flannel";
2020-10-18 06:47:41 +00:00
sha256 = "0mmswnaybwpf18h832haapcs5b63wn5w2hax0smm3inldiggsbw8";
2016-09-27 20:51:09 +00:00
};
meta = {
description = "Network fabric for containers, designed for Kubernetes";
license = licenses.asl20;
homepage = "https://github.com/coreos/flannel";
maintainers = with maintainers; [johanot offline];
2016-09-27 20:51:09 +00:00
platforms = with platforms; linux;
2016-06-03 11:17:53 +00:00
};
}