mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 12:23:02 +00:00
tilt: 0.8.8 -> 0.9.2
This commit is contained in:
parent
ebf746457d
commit
3cb3d7f5f4
@ -1,25 +1,24 @@
|
|||||||
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
||||||
|
|
||||||
buildGoPackage rec {
|
buildGoPackage rec {
|
||||||
pname = "tilt";
|
pname = "tilt";
|
||||||
name = "${pname}-${version}";
|
|
||||||
/* Do not use "dev" as a version. If you do, Tilt will consider itself
|
/* 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
|
running in development environment and try to serve assets from the
|
||||||
source tree, which is not there once build completes. */
|
source tree, which is not there once build completes. */
|
||||||
version = "0.8.8";
|
version = "0.9.2";
|
||||||
rev = "344dc1dc61ffe2c29606b105cea0df79fb5897f5";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "windmilleng";
|
owner = "windmilleng";
|
||||||
repo = "tilt";
|
repo = pname;
|
||||||
rev = "${rev}";
|
rev = "v${version}";
|
||||||
sha256 = "13yda6m2d92mmc9w4k8ngdxmpqcqf86bkrvcpmpaby848ls1yx8g";
|
sha256 = "1kwama90bxmnylmj6hipnx5raiqq42dq31lb66xyd89fzbkdnzk4";
|
||||||
};
|
};
|
||||||
|
|
||||||
goPackagePath = "github.com/windmilleng/tilt";
|
goPackagePath = "github.com/windmilleng/tilt";
|
||||||
|
|
||||||
subPackages = [ "cmd/tilt" ];
|
subPackages = [ "cmd/tilt" ];
|
||||||
|
|
||||||
buildFlagsArray = ("-ldflags=-X main.version=${version} -X main.date=2019-06-03");
|
buildFlagsArray = ("-ldflags=-X main.version=${version} -X main.date=2019-07-10");
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Local development tool to manage your developer instance when your team deploys to Kubernetes in production";
|
description = "Local development tool to manage your developer instance when your team deploys to Kubernetes in production";
|
||||||
|
Loading…
Reference in New Issue
Block a user