about summary refs log tree commit diff
path: root/pkgs/applications/science/misc/colmap/default.nix
diff options
context:
space:
mode:
authorSomeone Serge <sergei.kozlukov@aalto.fi>2023-03-31 16:08:14 +0300
committerSomeone Serge <sergei.kozlukov@aalto.fi>2023-07-20 17:27:07 +0300
commitbf9e6fe9b852ea9185b9d495dc974491d4fbf355 (patch)
tree7e75091a4b821215d6f20f4c2e3e42fa1f1ddfb4 /pkgs/applications/science/misc/colmap/default.nix
parent74549ec63bb6b125590bbb0fa2db24106c257a11 (diff)
downloadnixlib-bf9e6fe9b852ea9185b9d495dc974491d4fbf355.tar
nixlib-bf9e6fe9b852ea9185b9d495dc974491d4fbf355.tar.gz
nixlib-bf9e6fe9b852ea9185b9d495dc974491d4fbf355.tar.bz2
nixlib-bf9e6fe9b852ea9185b9d495dc974491d4fbf355.tar.lz
nixlib-bf9e6fe9b852ea9185b9d495dc974491d4fbf355.tar.xz
nixlib-bf9e6fe9b852ea9185b9d495dc974491d4fbf355.tar.zst
nixlib-bf9e6fe9b852ea9185b9d495dc974491d4fbf355.zip
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/applications/science/misc/colmap/default.nix')
-rw-r--r--pkgs/applications/science/misc/colmap/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/science/misc/colmap/default.nix b/pkgs/applications/science/misc/colmap/default.nix
index e3ce66356ba6..b32aa86f9f2f 100644
--- a/pkgs/applications/science/misc/colmap/default.nix
+++ b/pkgs/applications/science/misc/colmap/default.nix
@@ -1,6 +1,7 @@
 { mkDerivation, lib, fetchFromGitHub, cmake, boost179, ceres-solver, eigen,
   freeimage, glog, libGLU, glew, qtbase,
-  cudaSupport ? false, cudaPackages }:
+  config,
+  cudaSupport ? config.cudaSupport or false, cudaPackages }:
 
 assert cudaSupport -> cudaPackages != { };