mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-26 23:03:41 +00:00
21 lines
607 B
Nix
21 lines
607 B
Nix
{ fetchFromGitHub
|
|
, callPackage
|
|
}:
|
|
let args = 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.33.17";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tilt-dev";
|
|
repo = "tilt";
|
|
rev = "v${version}";
|
|
hash = "sha256-GzWnTq3X615A/jRjYhBriRYaH4tjv+yg2/zHIJuKXPE=";
|
|
};
|
|
};
|
|
|
|
tilt-assets = callPackage ./assets.nix args;
|
|
in callPackage ./binary.nix (args // { inherit tilt-assets; })
|
|
|