Merge pull request #52555 from vdemeester/52469-cni-to-buildgopackage
cni: migrate to using buildGoPackage
This commit is contained in:
commit
b01f4f2286
@ -1,6 +1,6 @@
|
|||||||
{ stdenv, fetchFromGitHub, go, removeReferencesTo }:
|
{ stdenv, fetchFromGitHub, buildGoPackage }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
buildGoPackage rec {
|
||||||
name = "cni-${version}";
|
name = "cni-${version}";
|
||||||
version = "0.6.0";
|
version = "0.6.0";
|
||||||
|
|
||||||
@ -11,29 +11,23 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "00ajs2r5r2z3l0vqwxrcwhjfc9px12qbcv5vnvs2mdipvvls1y2y";
|
sha256 = "00ajs2r5r2z3l0vqwxrcwhjfc9px12qbcv5vnvs2mdipvvls1y2y";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ removeReferencesTo go ];
|
goPackagePath = "github.com/containernetworking/cni";
|
||||||
|
|
||||||
GOCACHE = "off";
|
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
|
cd "go/src/${goPackagePath}"
|
||||||
patchShebangs build.sh
|
patchShebangs build.sh
|
||||||
./build.sh
|
./build.sh
|
||||||
'';
|
'';
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/bin
|
install -Dm555 bin/cnitool $bin/bin/cnitool
|
||||||
mv bin/cnitool $out/bin
|
|
||||||
'';
|
|
||||||
|
|
||||||
preFixup = ''
|
|
||||||
find $out/bin -type f -exec remove-references-to -t ${go} '{}' +
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Container Network Interface - networking for Linux containers";
|
description = "Container Network Interface - networking for Linux containers";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
homepage = https://github.com/containernetworking/cni;
|
homepage = https://github.com/containernetworking/cni;
|
||||||
maintainers = with maintainers; [offline];
|
maintainers = with maintainers; [ offline vdemeester ];
|
||||||
platforms = [ "x86_64-linux" ];
|
platforms = [ "x86_64-linux" ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user