Compare commits

..

1 Commits

Author SHA1 Message Date
c809e9bd7c
container: optionally isolate host abstract UNIX domain sockets via landlock
Some checks failed
Test / Hakurei (pull_request) Failing after 1h6m59s
Test / Hakurei (race detector) (pull_request) Failing after 1h9m52s
Test / Flake checks (pull_request) Has been skipped
Test / Create distribution (push) Failing after 32s
Test / Create distribution (pull_request) Failing after 30s
Test / Sandbox (race detector) (push) Successful in 45s
Test / Sandbox (push) Successful in 45s
Test / Hpkg (push) Successful in 46s
Test / Sandbox (pull_request) Successful in 44s
Test / Sandbox (race detector) (pull_request) Successful in 43s
Test / Hpkg (pull_request) Successful in 44s
Test / Hakurei (race detector) (push) Failing after 30m58s
Test / Hakurei (push) Failing after 48m2s
Test / Flake checks (push) Has been skipped
2025-08-17 16:16:52 +09:00

View File

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