kops: fix strict deps build

This commit is contained in:
Jörg Thalheim 2020-03-18 09:23:22 +00:00
parent 13c1938593
commit 72f4001e1e
No known key found for this signature in database
GPG Key ID: 003F2096411B5F92

View File

@ -18,8 +18,8 @@ let
inherit sha256; inherit sha256;
}; };
buildInputs = [go-bindata]; nativeBuildInputs = [ go-bindata ];
subPackages = ["cmd/kops"]; subPackages = [ "cmd/kops" ];
buildFlagsArray = '' buildFlagsArray = ''
-ldflags= -ldflags=
@ -43,7 +43,7 @@ let
description = "Easiest way to get a production Kubernetes up and running"; description = "Easiest way to get a production Kubernetes up and running";
homepage = https://github.com/kubernetes/kops; homepage = https://github.com/kubernetes/kops;
license = licenses.asl20; license = licenses.asl20;
maintainers = with maintainers; [offline zimbatm kampka]; maintainers = with maintainers; [ offline zimbatm kampka ];
platforms = platforms.unix; platforms = platforms.unix;
}; };
} // attrs'; } // attrs';