Skip to content

Commit

Permalink
Merge pull request #59789 from anton-dessiatov/tilt
Browse files Browse the repository at this point in the history
tilt: init at 0.7.13
  • Loading branch information
joachifm committed Apr 20, 2019
2 parents 512097d + 1e3f2ec commit f246230
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 0 deletions.
5 changes: 5 additions & 0 deletions maintainers/maintainer-list.nix
Expand Up @@ -365,6 +365,11 @@
github = "ankhers";
name = "Justin Wood";
};
anton-dessiatov = {
email = "anton.dessiatov@gmail.com";
github = "anton-dessiatov";
name = "Anton Desyatov";
};
Anton-Latukha = {
email = "anton.latuka+nixpkgs@gmail.com";
github = "Anton-Latukha";
Expand Down
30 changes: 30 additions & 0 deletions pkgs/applications/networking/cluster/tilt/default.nix
@@ -0,0 +1,30 @@
{ stdenv, lib, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
pname = "tilt";
name = "${pname}-${version}";
/* 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";

src = fetchFromGitHub {
owner = "windmilleng";
repo = "tilt";
rev = "${rev}";
sha256 = "0cfmdd6wsczcmy6fkd418rvancx4qy1c3pzq9jbfsy4innhh51j7";
};

goPackagePath = "github.com/windmilleng/tilt";
subPackages = [ "cmd/tilt" ];

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

meta = with stdenv.lib; {
description = "Local development tool to manage your developer instance when your team deploys to Kubernetes in production";
homepage = https://tilt.dev/;
license = licenses.asl20;
maintainers = with maintainers; [ anton-dessiatov ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -23354,6 +23354,8 @@ in

terragrunt = callPackage ../applications/networking/cluster/terragrunt {};

tilt = callPackage ../applications/networking/cluster/tilt {};

tetex = callPackage ../tools/typesetting/tex/tetex { libpng = libpng12; };

tetra-gtk-theme = callPackage ../misc/themes/tetra { };
Expand Down

0 comments on commit f246230

Please sign in to comment.