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

27 lines
620 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";
2019-02-11 10:17:13 +00:00
version = "0.11.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";
2019-02-11 10:17:13 +00:00
sha256 = "0akxlrrsm2w51g0qd7dnsdy0hdajx98sdhxw4iknjr2kn7j3gph9";
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
};
}