1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/applications/networking/cluster/cni/default.nix

34 lines
830 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, buildGoPackage }:
buildGoPackage rec {
name = "cni-${version}";
version = "0.7.0";
src = fetchFromGitHub {
owner = "containernetworking";
repo = "cni";
rev = "v${version}";
sha256 = "15ad323dw44k82bfx9r8w5q2kn7jix60p9v4ciyzx2p5pip36wp8";
};
goPackagePath = "github.com/containernetworking/cni";
buildPhase = ''
cd "go/src/${goPackagePath}"
2017-09-01 11:34:46 +01:00
patchShebangs build.sh
./build.sh
'';
installPhase = ''
install -Dm555 bin/cnitool $bin/bin/cnitool
2018-12-07 21:13:42 +00:00
'';
meta = with stdenv.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" ];
};
}