cudatoolkit: fix evaluation with Nix 2.3

Path interpolation is not available in all Nix versions nixpkgs supports.

Similar to 6c8644fc37
This commit is contained in:
Florian Klink
2023-10-06 15:10:52 +03:00
parent 0b48455b2d
commit 5144dc2669
@@ -89,9 +89,9 @@ let
in
{
# features : Attr Set (String PackageFeatureAttrs)
features = processManifest ./manifests/redistrib_features_${fullCudaVersion}.json;
features = processManifest (./manifests + "/redistrib_features_${fullCudaVersion}.json");
# manifest : Attr Set (String PackageAttrs)
manifest = processManifest ./manifests/redistrib_${fullCudaVersion}.json;
manifest = processManifest (./manifests + "/redistrib_${fullCudaVersion}.json");
};
# Function to build a single redist package