summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/tilt/default.nix
diff options
context:
space:
mode:
authorJosé Luis Lafuente <jl@lafuente.me>2019-08-06 16:48:47 +0200
committerJosé Luis Lafuente <jl@lafuente.me>2019-08-06 16:48:47 +0200
commitcd105f02a8ca017e57a61f528a33a24125c35a92 (patch)
treec9d827773913b54a9fb2160648f05ecd02eee4c0 /pkgs/applications/networking/cluster/tilt/default.nix
parent239fffc90d792b5362a20ec1a009978de7b8f91a (diff)
downloadnixpkgs-cd105f02a8ca017e57a61f528a33a24125c35a92.tar
nixpkgs-cd105f02a8ca017e57a61f528a33a24125c35a92.tar.gz
nixpkgs-cd105f02a8ca017e57a61f528a33a24125c35a92.tar.bz2
nixpkgs-cd105f02a8ca017e57a61f528a33a24125c35a92.tar.lz
nixpkgs-cd105f02a8ca017e57a61f528a33a24125c35a92.tar.xz
nixpkgs-cd105f02a8ca017e57a61f528a33a24125c35a92.tar.zst
nixpkgs-cd105f02a8ca017e57a61f528a33a24125c35a92.zip
tilt: 0.9.4 -> 0.9.7
Diffstat (limited to 'pkgs/applications/networking/cluster/tilt/default.nix')
-rw-r--r--pkgs/applications/networking/cluster/tilt/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/networking/cluster/tilt/default.nix b/pkgs/applications/networking/cluster/tilt/default.nix
index f3361f30b21..c4075075299 100644
--- a/pkgs/applications/networking/cluster/tilt/default.nix
+++ b/pkgs/applications/networking/cluster/tilt/default.nix
@@ -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";