1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/networking/flannel/default.nix

27 lines
622 B
Nix
Raw Normal View History

{ lib, buildGoPackage, fetchFromGitHub }:
2016-06-03 12:17:53 +01:00
2016-09-27 21:51:09 +01:00
with lib;
2016-06-03 12:17:53 +01:00
buildGoPackage rec {
pname = "flannel";
2019-02-11 10:17:13 +00:00
version = "0.11.0";
2016-06-03 12:17:53 +01:00
rev = "v${version}";
goPackagePath = "github.com/coreos/flannel";
src = fetchFromGitHub {
2016-06-03 12:17:53 +01:00
inherit rev;
owner = "coreos";
repo = "flannel";
2019-02-11 10:17:13 +00:00
sha256 = "0akxlrrsm2w51g0qd7dnsdy0hdajx98sdhxw4iknjr2kn7j3gph9";
2016-09-27 21:51:09 +01: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 21:51:09 +01:00
platforms = with platforms; linux;
2016-06-03 12:17:53 +01:00
};
}