mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
cudaPackages.tensorrt: Fix attribute 'lib' missing
on aarch64-linux
There should be no attribute missing errors as they cannot be handled.
This commit is contained in:
parent
976e5387d2
commit
5f62b2c546
@ -65,7 +65,7 @@ finalAttrs: prevAttrs: {
|
|||||||
# We need to look inside the extracted output to get the files we need.
|
# We need to look inside the extracted output to get the files we need.
|
||||||
sourceRoot = "TensorRT-${finalAttrs.version}";
|
sourceRoot = "TensorRT-${finalAttrs.version}";
|
||||||
|
|
||||||
buildInputs = prevAttrs.buildInputs ++ [ finalAttrs.passthru.cudnn.lib ];
|
buildInputs = prevAttrs.buildInputs ++ [ (finalAttrs.passthru.cudnn.lib or null) ];
|
||||||
|
|
||||||
preInstall =
|
preInstall =
|
||||||
(prevAttrs.preInstall or "")
|
(prevAttrs.preInstall or "")
|
||||||
|
Loading…
Reference in New Issue
Block a user