40 lines
968 B
Nix
40 lines
968 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
nixosTests,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "flannel";
|
|
version = "0.26.1";
|
|
rev = "v${version}";
|
|
|
|
vendorHash = "sha256-OBOGplDsFvAYzVP++WgZOsX7ukem9B9yq146maj2ghI=";
|
|
|
|
src = fetchFromGitHub {
|
|
inherit rev;
|
|
owner = "flannel-io";
|
|
repo = "flannel";
|
|
sha256 = "sha256-O1S0F+3AY5PRc6U/LqDp8O+y4kIQRt63h1t9+icNl4w=";
|
|
};
|
|
|
|
ldflags = [ "-X github.com/flannel-io/flannel/pkg/version.Version=${rev}" ];
|
|
|
|
# TestRouteCache/TestV6RouteCache fail with "Failed to create newns: operation not permitted"
|
|
doCheck = false;
|
|
|
|
passthru.tests = { inherit (nixosTests) flannel; };
|
|
|
|
meta = with lib; {
|
|
description = "Network fabric for containers, designed for Kubernetes";
|
|
license = licenses.asl20;
|
|
homepage = "https://github.com/flannel-io/flannel";
|
|
maintainers = with maintainers; [
|
|
johanot
|
|
offline
|
|
];
|
|
platforms = with platforms; linux;
|
|
mainProgram = "flannel";
|
|
};
|
|
}
|