rkt: needs libacl in LD_LIBRARY_PATH at runtime

Rkt opens libacl at runtime to apply acls to the journal directory.
This commit is contained in:
Jörg Thalheim 2017-12-26 09:08:49 +01:00
parent f1c236a987
commit 40658a4886

View file

@ -58,7 +58,7 @@ in stdenv.mkDerivation rec {
cp -Rv $BUILDDIR/target/bin/stage1-*.aci $out/${stage1Dir}/
wrapProgram $out/bin/rkt \
--prefix LD_LIBRARY_PATH : ${systemd.lib}/lib \
--prefix LD_LIBRARY_PATH : "${systemd.lib}/lib:${acl.out}/lib" \
--prefix PATH : ${iptables}/bin
'';