diff options
author | Vincent Ambo <tazjin@google.com> | 2019-10-05T13·54+0100 |
---|---|---|
committer | Vincent Ambo <github@tazj.in> | 2019-10-06T22·05+0100 |
commit | 0642f7044dea2127b1c7dab1d88d90638536183a (patch) | |
tree | 29a68d7f787b0f52a8a9b763f65d1855ce643db3 /tools/nixery/default.nix | |
parent | f4bf3518f63501ddff42592b255fd5feaf846863 (diff) |
fix(server): Amend package path for Go tooling compatibility
With these changes it is possible to keep Nixery in $GOPATH and build the server in there, while still having things work correctly via Nix.
Diffstat (limited to 'tools/nixery/default.nix')
-rw-r--r-- | tools/nixery/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/nixery/default.nix b/tools/nixery/default.nix index b194079b9a29..c1a3c9f7dca5 100644 --- a/tools/nixery/default.nix +++ b/tools/nixery/default.nix @@ -43,7 +43,7 @@ rec { nixery-bin = writeShellScriptBin "nixery" '' export WEB_DIR="${nixery-book}" export PATH="${nixery-build-image}/bin:$PATH" - exec ${nixery-server}/bin/nixery + exec ${nixery-server}/bin/server ''; # Container image containing Nixery and Nix itself. This image can |