Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8124961b1d36
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 279756e50ee2
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Oct 18, 2019

  1. tilt: 0.10.4 -> 0.10.13

    Anton Desyatov committed Oct 18, 2019

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    rycee Robert Helgesson
    Copy the full SHA
    965e57c View commit details
  2. Merge pull request #71314 from anton-dessiatov/tilt-0.10.13

    tilt: 0.10.4 -> 0.10.13
    marsam authored Oct 18, 2019
    Copy the full SHA
    279756e View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/applications/networking/cluster/tilt/default.nix
6 changes: 3 additions & 3 deletions pkgs/applications/networking/cluster/tilt/default.nix
Original file line number Diff line number Diff line change
@@ -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.4";
version = "0.10.13";

src = fetchFromGitHub {
owner = "windmilleng";
repo = pname;
rev = "v${version}";
sha256 = "0nxgmldbcaj91jq47qxpf6jqwvi9bhg243qchdkiliphybvilcrg";
sha256 = "02xlqgmmn1a7pz6sliharz8l9fbn2raxqkm75qxdqs1ncbvgc65k";
};

goPackagePath = "github.com/windmilleng/tilt";

subPackages = [ "cmd/tilt" ];

buildFlagsArray = ("-ldflags=-X main.version=${version} -X main.date=2019-08-14");
buildFlagsArray = ("-ldflags=-X main.version=${version} -X main.date=2019-10-04");

meta = with stdenv.lib; {
description = "Local development tool to manage your developer instance when your team deploys to Kubernetes in production";