all-packages.nix: avoid breaking syntax highlighting in Emacs

This commit is contained in:
Peter Simons 2013-10-03 16:35:50 +02:00
parent 97e0e19858
commit c7ad106209

View File

@ -6904,7 +6904,7 @@ let
systemd_with_lvm2 = pkgs.lib.overrideDerivation pkgs.systemd (p: { systemd_with_lvm2 = pkgs.lib.overrideDerivation pkgs.systemd (p: {
name = p.name + "-with-lvm2"; name = p.name + "-with-lvm2";
postInstall = p.postInstall + '' postInstall = p.postInstall + ''
cp ${pkgs.lvm2}/lib/systemd/system-generators/* $out/lib/systemd/system-generators cp "${pkgs.lvm2}/lib/systemd/system-generators/"* $out/lib/systemd/system-generators
''; '';
}); });