diff options
| author | Someone Serge <sergei.kozlukov@aalto.fi> | 2023-03-31 16:08:14 +0300 |
|---|---|---|
| committer | Someone Serge <sergei.kozlukov@aalto.fi> | 2023-07-20 17:27:07 +0300 |
| commit | bf9e6fe9b852ea9185b9d495dc974491d4fbf355 (patch) | |
| tree | 7e75091a4b821215d6f20f4c2e3e42fa1f1ddfb4 /pkgs/development/python-modules/libgpuarray | |
| parent | 74549ec63bb6b125590bbb0fa2db24106c257a11 (diff) | |
tree-wide: rm `cudaSupport ? false` formal parameters
'cudaSupport ? false' -> 'cudaSupport ? config.cudaSupport or false' to respect global defaults
Packages expressions that take `cudaSupport ? false` are likely to
ignore `config.cudaSupport`. Instead, we want them to make `cudaSupport`
a required argument, or to explicitly refer to `config`
Diffstat (limited to 'pkgs/development/python-modules/libgpuarray')
| -rw-r--r-- | pkgs/development/python-modules/libgpuarray/default.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/libgpuarray/default.nix b/pkgs/development/python-modules/libgpuarray/default.nix index 6b141af3c96d..6e5bb05913a2 100644 --- a/pkgs/development/python-modules/libgpuarray/default.nix +++ b/pkgs/development/python-modules/libgpuarray/default.nix @@ -9,7 +9,9 @@ , six , nose , mako -, cudaSupport ? false, cudaPackages +, config +, cudaSupport ? config.cudaSupport or false +, cudaPackages ? { } , openclSupport ? true, ocl-icd, clblas }: |
