tilt: 0.9.4 -> 0.9.7

This commit is contained in:
José Luis Lafuente 2019-08-06 16:48:47 +02:00
parent 239fffc90d
commit cd105f02a8
No known key found for this signature in database
GPG Key ID: 8A3455EBE455489A

View File

@ -5,20 +5,20 @@ buildGoPackage rec {
/* Do not use "dev" as a version. If you do, Tilt will consider itself
running in development environment and try to serve assets from the
source tree, which is not there once build completes. */
version = "0.9.4";
version = "0.9.7";
src = fetchFromGitHub {
owner = "windmilleng";
repo = pname;
rev = "v${version}";
sha256 = "1n1hys9mwqr4jiwl2z5bi2lgbw4rp800hsavih87xzrda1gzvmad";
sha256 = "0b7jk7iwjzdsb2wp9qx4gs9g3gi2vcqw5ilkax3gfz7wsplm0n65";
};
goPackagePath = "github.com/windmilleng/tilt";
subPackages = [ "cmd/tilt" ];
buildFlagsArray = ("-ldflags=-X main.version=${version} -X main.date=2019-07-23");
buildFlagsArray = ("-ldflags=-X main.version=${version} -X main.date=2019-07-30");
meta = with stdenv.lib; {
description = "Local development tool to manage your developer instance when your team deploys to Kubernetes in production";