dockerTools.usrBinEnv: add

This provides a /usr/bin/env, for shell scripts using the
"/usr/bin/env executable" shebang.
This commit is contained in:
Florian Klink 2021-08-25 15:22:50 +02:00
parent 7f31e2cbca
commit 14b61efa87

View file

@ -759,6 +759,13 @@ rec {
];
};
# This provides a /usr/bin/env, for shell scripts using the
# "#!/usr/bin/env executable" shebang.
usrBinEnv = runCommand "usr-bin-env" { } ''
mkdir -p $out/usr/bin
ln -s ${pkgs.coreutils}/bin/env $out/usr/bin
'';
# This provides /bin/sh, pointing to bashInteractive.
binSh = runCommand "bin-sh" { } ''
mkdir -p $out/bin