runc: add libselinux, update buildtags

This commit is contained in:
zowoq 2020-05-13 21:37:48 +10:00
parent e142fbb3f7
commit b57ae98864

View File

@ -8,6 +8,7 @@
, libapparmor
, apparmor-parser
, libseccomp
, libselinux
}:
buildGoPackage rec {
@ -25,9 +26,11 @@ buildGoPackage rec {
outputs = [ "out" "man" ];
nativeBuildInputs = [ go-md2man installShellFiles pkg-config which ];
buildInputs = [ libseccomp libapparmor apparmor-parser ];
makeFlags = [ "BUILDTAGS+=seccomp" "BUILDTAGS+=apparmor" ];
buildInputs = [ libselinux libseccomp libapparmor apparmor-parser ];
# these will be the default in the next release
makeFlags = [ "BUILDTAGS+=seccomp" "BUILDTAGS+=apparmor" "BUILDTAGS+=selinux" ];
buildPhase = ''
cd go/src/${goPackagePath}