aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/rosa/package/hakurei.az
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2026-09-05 05:44:33 +0900
committerOphestra <cat@gensokyo.uk>2026-09-05 06:25:41 +0900
commit5a32f8f9b2f2540495e79cb39ce4a6861553fe79 (patch)
tree47b25144af5edead669b615f3abcc51aedd81096 /internal/rosa/package/hakurei.az
parent871c701fdbce4a3d43e6e8edc436a2ae93322540 (diff)
internal/rosa: separate native tools from libraries
This removes most redundant runtime arguments and is useful for cross-compilation. Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/rosa/package/hakurei.az')
-rw-r--r--internal/rosa/package/hakurei.az16
1 files changed, 13 insertions, 3 deletions
diff --git a/internal/rosa/package/hakurei.az b/internal/rosa/package/hakurei.az
index 0448c0f3..4e9a8d2c 100644
--- a/internal/rosa/package/hakurei.az
+++ b/internal/rosa/package/hakurei.az
@@ -61,11 +61,14 @@ mkdir -p /work/system/bin/
`;
};
- inputs = [
+ tools = [
go,
pkgconf,
net-tools,
+ acl,
+ ];
+ inputs = [
libseccomp,
acl,
fuse,
@@ -74,6 +77,8 @@ mkdir -p /work/system/bin/
wayland-protocols,
kernel-headers,
];
+
+ runtime = nil;
}
package hakurei-dist {
@@ -102,11 +107,14 @@ DESTDIR=/work "./${NAME}.sh"
`;
};
- inputs = [
+ tools = [
go,
pkgconf,
net-tools,
+ acl,
+ ];
+ inputs = [
libseccomp,
acl,
fuse,
@@ -115,6 +123,8 @@ DESTDIR=/work "./${NAME}.sh"
wayland-protocols,
kernel-headers,
];
+
+ runtime = nil;
}
package earlyinit {
@@ -145,5 +155,5 @@ go build -trimpath -v -o /work/ -ldflags="-s -w
echo`;
};
- inputs = [ go ];
+ tools = [ go ];
}