aboutsummaryrefslogtreecommitdiffhomepage
path: root/cmd/hsu
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-07-07 18:32:56 +0900
committerOphestra <cat@gensokyo.uk>2026-07-07 18:56:27 +0900
commit6d55ee536e902d059380f79e870d06547627cc7c (patch)
treeaacf3e3ec42525cf0e7a674aa948359fd0c21ae2 /cmd/hsu
parentc8e8651694415d497b0800319b2ddda361b7651f (diff)
test: move nix files
These are too much clutter. Move them to test directory until the test suite replacement is upstreamed. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'cmd/hsu')
-rw-r--r--cmd/hsu/package.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/cmd/hsu/package.nix b/cmd/hsu/package.nix
deleted file mode 100644
index 6075cdb1..00000000
--- a/cmd/hsu/package.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{
- lib,
- buildGoModule,
- hakurei ? abort "hakurei package required",
-}:
-
-buildGoModule {
- pname = "${hakurei.pname}-hsu";
- inherit (hakurei) version;
-
- src = ./.;
- inherit (hakurei) vendorHash;
- env.CGO_ENABLED = 0;
-
- preBuild = ''
- go mod init hsu >& /dev/null
- '';
-
- ldflags = lib.attrsets.foldlAttrs (
- ldflags: name: value:
- ldflags ++ [ "-X main.${name}=${value}" ]
- ) [ "-s -w" ] { hakureiPath = "${hakurei}/libexec/hakurei"; };
-}