From 892493a4788a9843b1b71848e58554e445658d31 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Tue, 2 Jul 2019 16:40:51 +0100 Subject: feat(tools): Add dispatcher script to transparently access tools Initial version of tool provider via Nix. This requires two separate steps for adding a new tool: 1. New symlink in tools/bin to point at the dispatch script. 2. Mapping of tool to Nix package set attribute in dispatch script. --- .envrc | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .envrc (limited to '.envrc') diff --git a/.envrc b/.envrc new file mode 100644 index 0000000000..76e30237cb --- /dev/null +++ b/.envrc @@ -0,0 +1,4 @@ +# Configure the local PATH to contain tools which are fetched ad-hoc +# from Nix. + +export PATH="${PWD}/tools/bin:${PATH}" -- cgit 1.4.1