diff options
-rw-r--r-- | default.nix | 6 | ||||
-rwxr-xr-x | tools/bin/__dispatch.sh | 3 | ||||
l--------- | tools/bin/kontemplate | 1 |
3 files changed, 8 insertions, 2 deletions
diff --git a/default.nix b/default.nix index ba9e108565de..24d0e02799fb 100644 --- a/default.nix +++ b/default.nix @@ -7,8 +7,10 @@ let localPkgs = super: pkgs: { # Local projects should be added here: - tazblog = import ./services/tazblog { inherit pkgs; }; - gemma = import ./services/gemma { inherit pkgs; }; + tazjin = { + blog = import ./services/tazblog { inherit pkgs; }; + gemma = import ./services/gemma { inherit pkgs; }; + }; # Third-party projects (either vendored or modified from nixpkgs) go here: gitAppraise = pkgs.callPackage ./third_party/go/git-appraise/git-appraise {}; diff --git a/tools/bin/__dispatch.sh b/tools/bin/__dispatch.sh index b0bbbf984b8c..bb61c4776969 100755 --- a/tools/bin/__dispatch.sh +++ b/tools/bin/__dispatch.sh @@ -19,6 +19,9 @@ case "${TARGET_TOOL}" in terraform) attr="terraform-gcp" ;; + kontemplate) + attr="kontemplate" + ;; *) echo "The tool '${TARGET_TOOL}' is currently not installed in this repository." exit 1 diff --git a/tools/bin/kontemplate b/tools/bin/kontemplate new file mode 120000 index 000000000000..8390ec9c9652 --- /dev/null +++ b/tools/bin/kontemplate @@ -0,0 +1 @@ +__dispatch.sh \ No newline at end of file |