about summary refs log tree commit diff
path: root/nixpkgs/pkgs/test/cuda/cuda-library-samples/extension.nix
blob: 62de715fd0b4f9e336978dc8997950a16fdceb3f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{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