cni: migrate to using buildGoPackage

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
This commit is contained in:
Vincent Demeester 2018-12-20 08:22:13 +01:00
parent 8f9bd40d41
commit 5f7a34a264
No known key found for this signature in database
GPG Key ID: 083CC6FD6EB699A3

@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, go, removeReferencesTo }:
{ stdenv, fetchFromGitHub, buildGoPackage }:
stdenv.mkDerivation rec {
buildGoPackage rec {
name = "cni-${version}";
version = "0.6.0";
@ -11,29 +11,23 @@ stdenv.mkDerivation rec {
sha256 = "00ajs2r5r2z3l0vqwxrcwhjfc9px12qbcv5vnvs2mdipvvls1y2y";
};
buildInputs = [ removeReferencesTo go ];
GOCACHE = "off";
goPackagePath = "github.com/containernetworking/cni";
buildPhase = ''
cd "go/src/${goPackagePath}"
patchShebangs build.sh
./build.sh
'';
installPhase = ''
mkdir -p $out/bin
mv bin/cnitool $out/bin
'';
preFixup = ''
find $out/bin -type f -exec remove-references-to -t ${go} '{}' +
install -Dm555 bin/cnitool $bin/bin/cnitool
'';
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];
maintainers = with maintainers; [ offline vdemeester ];
platforms = [ "x86_64-linux" ];
};
}