Compare commits

..

1 Commits

Author SHA1 Message Date
2de7c2d07d
container: optionally isolate host abstract UNIX domain sockets via landlock
Some checks failed
Test / Sandbox (push) Successful in 2m17s
Test / Hakurei (race detector) (pull_request) Failing after 1h0m59s
Test / Flake checks (pull_request) Has been skipped
Test / Sandbox (pull_request) Successful in 1m29s
Test / Hpkg (push) Successful in 4m12s
Test / Hpkg (pull_request) Successful in 1m56s
Test / Sandbox (race detector) (push) Successful in 4m17s
Test / Sandbox (race detector) (pull_request) Successful in 2m5s
Test / Create distribution (pull_request) Failing after 28s
Test / Hakurei (pull_request) Failing after 20m30s
Test / Hakurei (race detector) (push) Failing after 22m21s
Test / Hakurei (push) Failing after 39m46s
Test / Flake checks (push) Has been skipped
Test / Create distribution (push) Failing after 46s
2025-08-17 16:05:49 +09:00

View File

@ -89,18 +89,19 @@ buildGoModule rec {
GO_TEST_SKIP_ACL = 1;
};
buildInputs = [
libcap
libffi
libseccomp
acl
wayland
]
++ (with xorg; [
libxcb
libXau
libXdmcp
]);
buildInputs =
[
libcap
libffi
libseccomp
acl
wayland
]
++ (with xorg; [
libxcb
libXau
libXdmcp
]);
nativeBuildInputs = [
pkg-config
@ -136,16 +137,17 @@ buildGoModule rec {
}
'';
passthru.targetPkgs = [
go
gcc
xorg.xorgproto
util-linux
passthru.targetPkgs =
[
go
gcc
xorg.xorgproto
util-linux
# for go generate
wayland-protocols
wayland-scanner
]
++ buildInputs
++ nativeBuildInputs;
# for go generate
wayland-protocols
wayland-scanner
]
++ buildInputs
++ nativeBuildInputs;
}