kustomize: 1.0.4 -> 1.0.8 (#47489)

- change the GOPATH to `sigs.k8s.io/kustomize`
- add some buildtags to get a better `kustomize version`

Signed-off-by: Vincent Demeester <vincent@sbr.pm>
This commit is contained in:
Vincent Demeester 2018-09-28 19:58:56 +02:00 committed by xeji
parent 6514142348
commit 7b87b70b1f

View File

@ -3,12 +3,21 @@
buildGoPackage rec {
name = "kustomize-${version}";
version = "1.0.4";
version = "1.0.8";
# rev is the 1.0.8 commit, mainly for kustomize version command output
rev = "58492e2d83c59ed63881311f46ad6251f77dabc3";
goPackagePath = "github.com/kubernetes-sigs/kustomize";
goPackagePath = "sigs.k8s.io/kustomize";
buildFlagsArray = let t = "${goPackagePath}/pkg/commands"; in ''
-ldflags=
-s -X ${t}.kustomizeVersion=${version}
-X ${t}.gitCommit=${rev}
-X ${t}.buildDate=unknow
'';
src = fetchFromGitHub {
sha256 = "0lbf94wz34axaf8ps7h79qbj4dpihrpvnqa12zrawcmmgqallwhm";
sha256 = "0y6dqwhm7lczjy0zk2fnc1i43lvnjhcvihvm7qknky05z9f0v8bx";
rev = "v${version}";
repo = "kustomize";
owner = "kubernetes-sigs";
@ -23,6 +32,6 @@ buildGoPackage rec {
'';
homepage = https://github.com/kubernetes-sigs/kustomize;
license = licenses.asl20;
maintainers = [ maintainers.carlosdagos ];
maintainers = [ maintainers.carlosdagos maintainers.vdemeester ];
};
}