nixpkgs/pkgs/applications/networking/cluster/multus-cni/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
957 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2021-05-08 06:00:09 +00:00
buildGoModule rec {
pname = "multus-cni";
version = "4.0.2";
2021-05-08 06:00:09 +00:00
src = fetchFromGitHub {
owner = "k8snetworkplumbingwg";
repo = pname;
rev = "v${version}";
sha256 = "sha256-Q6ACXOv1E3Ouki4ksdlUZFbWcDgo9xbCiTfEiVG5l18=";
2021-05-08 06:00:09 +00:00
};
ldflags = [
"-s"
"-w"
"-X=gopkg.in/k8snetworkplumbingwg/multus-cni.v3/pkg/multus.version=${version}"
2021-05-08 06:00:09 +00:00
];
subPackages = [
"cmd/multus-daemon"
"cmd/multus-shim"
"cmd/multus"
"cmd/thin_entrypoint"
];
2021-05-08 06:00:09 +00:00
2023-04-09 17:09:44 +00:00
vendorHash = null;
2021-05-08 06:00:09 +00:00
doCheck = true;
2021-05-08 06:00:09 +00:00
meta = with lib; {
description = "Multus CNI is a container network interface (CNI) plugin for Kubernetes that enables attaching multiple network interfaces to pods";
2021-05-08 06:00:09 +00:00
homepage = "https://github.com/k8snetworkplumbingwg/multus-cni";
license = licenses.asl20;
platforms = platforms.linux;
maintainers = with maintainers; [ onixie kashw2 ];
mainProgram = "multus";
2021-05-08 06:00:09 +00:00
};
}