504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
14 lines
392 B
Nix
14 lines
392 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;
|
|
|
|
# Build our extension
|
|
extension =
|
|
final: _:
|
|
lib.attrsets.optionalAttrs platformIsSupported {
|
|
cuda-library-samples = final.callPackage ./generic.nix {};
|
|
};
|
|
in
|
|
extension
|