875e43dfd7
cudaPackages are part of the package set and should not depend on pkgs/test
14 lines
416 B
Nix
14 lines
416 B
Nix
{hostPlatform, lib}:
|
|
let
|
|
# Samples are built around the CUDA Toolkit, which is not available for
|
|
# aarch64. Check for both CUDA version and platform.
|
|
platformIsSupported = hostPlatform.isx86_64 && hostPlatform.isLinux;
|
|
|
|
# Build our extension
|
|
extension =
|
|
final: _:
|
|
lib.attrsets.optionalAttrs platformIsSupported {
|
|
cuda-library-samples = final.callPackage ./generic.nix {};
|
|
};
|
|
in
|
|
extension
|