36 lines
811 B
Nix
36 lines
811 B
Nix
{ stdenv, fetchFromGitHub, go }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "cni-${version}";
|
|
version = "0.5.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "containernetworking";
|
|
repo = "cni";
|
|
rev = "v${version}";
|
|
sha256 = "0n2sc5xf1h0i54am80kj7imrvawddn0kxvgi65w0194dpmyrg5al";
|
|
};
|
|
|
|
buildInputs = [ go ];
|
|
|
|
outputs = ["out" "plugins"];
|
|
|
|
buildPhase = ''
|
|
patchShebangs build.sh
|
|
./build.sh
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin $plugins
|
|
mv bin/cnitool $out/bin
|
|
mv bin/* $plugins/
|
|
'';
|
|
|
|
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];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|