tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
colmap: use pkgs.autoAddDriverRunpath
Jonathan Ringer
2 years ago
47bd04c9
c8f981bf
+4
-2
1 changed file
expand all
collapse all
unified
split
pkgs
applications
science
misc
colmap
default.nix
+4
-2
pkgs/applications/science/misc/colmap/default.nix
···
1
{ mkDerivation, lib, fetchFromGitHub, cmake, boost179, ceres-solver, eigen,
2
freeimage, glog, libGLU, glew, qtbase,
0
3
config,
4
-
cudaSupport ? config.cudaSupport, cudaPackages }:
0
5
6
assert cudaSupport -> cudaPackages != { };
7
···
37
nativeBuildInputs = [
38
cmake
39
] ++ lib.optionals cudaSupport [
40
-
cudaPackages.autoAddDriverRunpath
41
];
42
43
meta = with lib; {
···
1
{ mkDerivation, lib, fetchFromGitHub, cmake, boost179, ceres-solver, eigen,
2
freeimage, glog, libGLU, glew, qtbase,
3
+
autoAddDriverRunpath,
4
config,
5
+
cudaSupport ? config.cudaSupport, cudaPackages
6
+
}:
7
8
assert cudaSupport -> cudaPackages != { };
9
···
39
nativeBuildInputs = [
40
cmake
41
] ++ lib.optionals cudaSupport [
42
+
autoAddDriverRunpath
43
];
44
45
meta = with lib; {