From a0295e21c564a33c28b6bad5156d099cbc68f130 Mon Sep 17 00:00:00 2001 From: Derek Gonyeo Date: Tue, 18 Oct 2016 14:00:44 -0400 Subject: [PATCH] rkt: libsystemd fix (#19658) As of systemd 231, the LD_LIBRARY_PATH fix applied in the installPhase of rkt's build was no longer valid, causing rkt to fail to work. This patch changes the path to point to the new location of libsystemd, which is in ${systemd.lib}. --- pkgs/applications/virtualization/rkt/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/virtualization/rkt/default.nix b/pkgs/applications/virtualization/rkt/default.nix index 483a71fecdc..7c5cc8de7ab 100644 --- a/pkgs/applications/virtualization/rkt/default.nix +++ b/pkgs/applications/virtualization/rkt/default.nix @@ -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 \ + --prefix LD_LIBRARY_PATH : ${systemd.lib}/lib \ --prefix PATH : ${iptables}/bin '';