about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorConnor Baker <connor.baker@tweag.io>2024-04-08 12:15:45 -0400
committerGitHub <noreply@github.com>2024-04-08 12:15:45 -0400
commit0fcbda8294f9de3bbfe44ffc9d4c113895efa816 (patch)
treedfcdb91ae3419f0c663f7431c71605cb9c25fcf4 /pkgs/development
parent33664e1480236475ae12d21dec8e57e468267047 (diff)
parenta2954dea377e749d9cff5f71f3815330a5907ee9 (diff)
Merge pull request #301180 from SomeoneSerge/fix/cudaPackages/outputSpecified
cudaPackages: make getOutput work again
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/cuda-modules/generic-builders/manifest.nix7
1 files changed, 0 insertions, 7 deletions
diff --git a/pkgs/development/cuda-modules/generic-builders/manifest.nix b/pkgs/development/cuda-modules/generic-builders/manifest.nix
index 73c34b0c86ee5..737c7cdaaab02 100644
--- a/pkgs/development/cuda-modules/generic-builders/manifest.nix
+++ b/pkgs/development/cuda-modules/generic-builders/manifest.nix
@@ -308,13 +308,6 @@ backendStdenv.mkDerivation (finalAttrs: {
   # Indeed, we want to do the opposite -- fat "out" outputs that contain all the other outputs.
   propagatedBuildOutputs = false;
 
-  # By default, if the dev output exists it just uses that.
-  # However, because we disabled propagatedBuildOutputs, dev doesn't contain libraries or
-  # anything of the sort. To remedy this, we set outputSpecified to true, and use
-  # outputsToInstall, which tells Nix which outputs to use when the package name is used
-  # unqualified (that is, without an explicit output).
-  outputSpecified = true;
-
   meta = {
     description = "${redistribRelease.name}. By downloading and using the packages you accept the terms and conditions of the ${finalAttrs.meta.license.shortName}";
     sourceProvenance = [ sourceTypes.binaryNativeCode ];