2018-12-07 21:13:42 +00:00
|
|
|
{ stdenv, fetchFromGitHub, go, removeReferencesTo }:
|
2016-11-16 15:29:35 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "cni-${version}";
|
2018-03-08 08:48:25 +00:00
|
|
|
version = "0.6.0";
|
2016-11-16 15:29:35 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "containernetworking";
|
|
|
|
repo = "cni";
|
|
|
|
rev = "v${version}";
|
2018-03-08 08:48:25 +00:00
|
|
|
sha256 = "00ajs2r5r2z3l0vqwxrcwhjfc9px12qbcv5vnvs2mdipvvls1y2y";
|
2016-11-16 15:29:35 +00:00
|
|
|
};
|
|
|
|
|
2018-12-07 21:13:42 +00:00
|
|
|
buildInputs = [ removeReferencesTo go ];
|
|
|
|
|
|
|
|
GOCACHE = "off";
|
2016-11-16 15:29:35 +00:00
|
|
|
|
|
|
|
buildPhase = ''
|
2017-09-01 11:34:46 +01:00
|
|
|
patchShebangs build.sh
|
|
|
|
./build.sh
|
2016-11-16 15:29:35 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2018-03-17 05:35:35 +00:00
|
|
|
mkdir -p $out/bin
|
2016-11-16 15:29:35 +00:00
|
|
|
mv bin/cnitool $out/bin
|
|
|
|
'';
|
|
|
|
|
2018-12-07 21:13:42 +00:00
|
|
|
preFixup = ''
|
|
|
|
find $out/bin -type f -exec remove-references-to -t ${go} '{}' +
|
|
|
|
'';
|
|
|
|
|
2016-11-16 15:29:35 +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];
|
|
|
|
platforms = [ "x86_64-linux" ];
|
|
|
|
};
|
|
|
|
}
|