From 85bcd8c3918ecba20b7e9a87769f50b07a00b13a Mon Sep 17 00:00:00 2001 From: Connor Baker Date: Wed, 13 Dec 2023 02:32:57 +0000 Subject: [PATCH] cudaPackages: add missing newline to manifest builder --- pkgs/development/cuda-modules/generic-builders/manifest.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/cuda-modules/generic-builders/manifest.nix b/pkgs/development/cuda-modules/generic-builders/manifest.nix index 95140ca651cd..71c914c8c8f2 100644 --- a/pkgs/development/cuda-modules/generic-builders/manifest.nix +++ b/pkgs/development/cuda-modules/generic-builders/manifest.nix @@ -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