Merge pull request #273873 from ConnorBaker/fix/cudaPackages-installPhase-missing-newline

cudaPackages: add missing newline to manifest builder
This commit is contained in:
Connor Baker 2023-12-13 16:44:03 -05:00 committed by GitHub
commit 824052b193
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -189,6 +189,9 @@ backendStdenv.mkDerivation (
''
# Move the outputs into their respective outputs.
+ strings.concatMapStringsSep "\n" mkMoveToOutputCommand (builtins.tail finalAttrs.outputs)
# Add a newline to the end of the installPhase, so that the post-install hook doesn't
# get concatenated with the last moveToOutput command.
+ "\n"
# Post-install hook
+ ''
runHook postInstall