nixpkgs/pkgs/tools/networking/flannel/plugin.nix
Ashish SHUKLA 743c0ec2d8
cni-flannel-plugin: 1.1 -> 1.0.0
Update to a properly tagged version. Previously the tag was temporary,
and it was not obvious. See flannel-io/cni-plugin/issues/21

While here, also add some install time checking
2021-10-29 23:37:38 +05:30

37 lines
853 B
Nix

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "cni-plugin-flannel";
version = "1.0.0";
src = fetchFromGitHub {
owner = "flannel-io";
repo = "cni-plugin";
rev = "v${version}";
sha256 = "sha256-zWxw4LZIlkT88yGTnxdupq7cUSacNRxPzzp01O9USDw=";
};
vendorSha256 = "sha256-zteMlrvRTVxOFlBy+z/qfiSii8+c8PMapwIsdbN+Aig=";
postInstall = ''
mv $out/bin/cni-plugin $out/bin/flannel
'';
doCheck = false;
doInstallCheck = true;
installCheckPhase = ''
runHook preInstallCheck
$out/bin/flannel 2>&1 | fgrep -q v$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 ];
};
}