about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/tilt
diff options
context:
space:
mode:
authorAnton Desyatov <anton.dessiatov@gmail.com>2019-04-29 16:29:30 +0700
committerAnton Desyatov <anton.dessiatov@gmail.com>2019-04-29 16:29:30 +0700
commited98d3e3e02ba136af0da006a8f9847ee4cd636f (patch)
tree7e1232ce53eb3c4eeaa350e10534012db72c7e43 /pkgs/applications/networking/cluster/tilt
parent36587a587ab191eddd868179d63c82cdd5dee21b (diff)
tilt: 0.7.13 -> 0.8.1
Diffstat (limited to 'pkgs/applications/networking/cluster/tilt')
-rw-r--r--pkgs/applications/networking/cluster/tilt/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/networking/cluster/tilt/default.nix b/pkgs/applications/networking/cluster/tilt/default.nix
index c4699a87ef631..a8adf3deb5b5b 100644
--- a/pkgs/applications/networking/cluster/tilt/default.nix
+++ b/pkgs/applications/networking/cluster/tilt/default.nix
@@ -6,20 +6,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.7.13";
-  rev = "67cd823b2a07c7bb2bcb919c0963e8f23e22d57e";
+  version = "0.8.1";
+  rev = "9ce987dd0eeb66df993f8d232b57ff3e4d380dda";
 
   src = fetchFromGitHub {
     owner  = "windmilleng";
     repo   = "tilt";
     rev    = "${rev}";
-    sha256 = "0cfmdd6wsczcmy6fkd418rvancx4qy1c3pzq9jbfsy4innhh51j7";
+    sha256 = "0ybzj2csmjc7zlkprcyy5cnh9dxgngcx3wd6n43kawi5db0lvjn4";
   };
 
   goPackagePath = "github.com/windmilleng/tilt";
   subPackages = [ "cmd/tilt" ];
 
-  buildFlagsArray = ("-ldflags=-X main.version=${version} -X main.date=2019-04-18");
+  buildFlagsArray = ("-ldflags=-X main.version=${version} -X main.date=2019-04-29");
 
   meta = with stdenv.lib; {
     description = "Local development tool to manage your developer instance when your team deploys to Kubernetes in production";