summary refs log blame commit diff
path: root/pkgs/applications/networking/cluster/cni/default.nix
blob: 3a9bb84938ca883fe934cbc14c8eb6a1f1c05a75 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                         
 
                    
                
                    


                                  
                 
                        
                                                                   

    
                                                       

                    

                                                                                  
                                                            
                                                           
                                                   

    
{ lib, fetchFromGitHub, buildGoPackage }:

buildGoPackage rec {
  pname = "cni";
  version = "0.8.1";

  src = fetchFromGitHub {
    owner = "containernetworking";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-vxwNHIc3rFi7HKIEZrBcr7Oxs2iUtFYcfJK7aXDUv3k=";
  };

  goPackagePath = "github.com/containernetworking/cni";

  meta = with lib; {
    description = "Container Network Interface - networking for Linux containers";
    license = licenses.asl20;
    homepage = "https://github.com/containernetworking/cni";
    maintainers = with maintainers; [ offline vdemeester ];
    platforms = [ "x86_64-linux" "aarch64-linux" ];
  };
}