about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/tilt
diff options
context:
space:
mode:
authorAnton Desyatov <anton.desyatov@scylladb.com>2020-01-30 17:48:31 +0700
committerEmery Hemingway <ehmry@posteo.net>2020-02-06 10:46:01 +0100
commit6866ca71a73b66ccbcb088814f2fe27ba7828aa0 (patch)
tree469ac211f8980a13e430c6fb732526cb0aa9fddf /pkgs/applications/networking/cluster/tilt
parente36dbf30b0718c6269c12e4bf1daadbdf0739761 (diff)
tilt: 0.10.13 -> 0.11.3
Diffstat (limited to 'pkgs/applications/networking/cluster/tilt')
-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 6cc7735efeb00..30fc9264ae1de 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.10.13";
+  version = "0.11.3";
 
   src = fetchFromGitHub {
     owner  = "windmilleng";
     repo   = pname;
     rev    = "v${version}";
-    sha256 = "02xlqgmmn1a7pz6sliharz8l9fbn2raxqkm75qxdqs1ncbvgc65k";
+    sha256 = "035czgr0rn6gcv24vnlr35n9yvy0fwq4spdzsc76gfxckcbcmzz0";
   };
 
   goPackagePath = "github.com/windmilleng/tilt";
 
   subPackages = [ "cmd/tilt" ];
 
-  buildFlagsArray = ("-ldflags=-X main.version=${version} -X main.date=2019-10-04");
+  buildFlagsArray = ("-ldflags=-X main.version=${version} -X main.date=2020-01-25");
 
   meta = with stdenv.lib; {
     description = "Local development tool to manage your developer instance when your team deploys to Kubernetes in production";