forked from mirrors/nixpkgs
44 lines
981 B
Nix
44 lines
981 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "cni-plugin-flannel";
|
|
version = "1.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "flannel-io";
|
|
repo = "cni-plugin";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-9AVXm3+VJFLQwe7EHwI8LmWKxfX1r0yjmKeaReQvxR4=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-DhvaXC/n4yiVDibB8kymzltNhEIxKdTsEDN9Sfc/wxU=";
|
|
|
|
ldflags = [
|
|
"-s" "-w"
|
|
"-X main.Version=${version}"
|
|
"-X main.Commit=${version}"
|
|
"-X main.Program=flannel"
|
|
];
|
|
|
|
postInstall = ''
|
|
mv $out/bin/cni-plugin $out/bin/flannel
|
|
'';
|
|
|
|
doCheck = false;
|
|
doInstallCheck = true;
|
|
|
|
installCheckPhase = ''
|
|
runHook preInstallCheck
|
|
$out/bin/flannel 2>&1 | fgrep -q $version
|
|
runHook postInstallCheck
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "flannel CNI plugin";
|
|
homepage = "https://github.com/flannel-io/cni-plugin/";
|
|
license = licenses.asl20;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ abbe ];
|
|
};
|
|
}
|