aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/sandbox/tool
diff options
context:
space:
mode:
Diffstat (limited to 'test/sandbox/tool')
-rw-r--r--test/sandbox/tool/main.go2
-rw-r--r--test/sandbox/tool/package.nix4
2 files changed, 3 insertions, 3 deletions
diff --git a/test/sandbox/tool/main.go b/test/sandbox/tool/main.go
index ef3325de..889142d4 100644
--- a/test/sandbox/tool/main.go
+++ b/test/sandbox/tool/main.go
@@ -12,7 +12,7 @@ import (
"strings"
"syscall"
- "hakurei.app/test/sandbox"
+ "hakurei.app/test/internal/sandbox"
)
var (
diff --git a/test/sandbox/tool/package.nix b/test/sandbox/tool/package.nix
index 92829b29..13e18272 100644
--- a/test/sandbox/tool/package.nix
+++ b/test/sandbox/tool/package.nix
@@ -12,7 +12,7 @@ buildGoModule rec {
src = builtins.path {
name = "${pname}-src";
- path = lib.cleanSource ../.;
+ path = lib.cleanSource ../../.;
filter = path: type: (type == "directory") || (type == "regular" && lib.hasSuffix ".go" path);
};
vendorHash = null;
@@ -23,7 +23,7 @@ buildGoModule rec {
nativeBuildInputs = [ pkg-config ];
preBuild = ''
- go mod init hakurei.app/test/sandbox >& /dev/null
+ go mod init hakurei.app/test >& /dev/null
'';
postInstall = ''