about summary refs log tree commit diff
path: root/tools/nixery/server/default.nix
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2019-10-05T13·54+0100
committerVincent Ambo <github@tazj.in>2019-10-06T22·05+0100
commit0642f7044dea2127b1c7dab1d88d90638536183a (patch)
tree29a68d7f787b0f52a8a9b763f65d1855ce643db3 /tools/nixery/server/default.nix
parentf4bf3518f63501ddff42592b255fd5feaf846863 (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/server/default.nix')
-rw-r--r--tools/nixery/server/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/nixery/server/default.nix b/tools/nixery/server/default.nix
index 9df52721857c..573447a6c3df 100644
--- a/tools/nixery/server/default.nix
+++ b/tools/nixery/server/default.nix
@@ -19,7 +19,7 @@ buildGoPackage {
   goDeps = ./go-deps.nix;
   src = ./.;
 
-  goPackagePath = "github.com/google/nixery";
+  goPackagePath = "github.com/google/nixery/server";
 
   # Enable checks and configure check-phase to include vet:
   doCheck = true;