tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
openai-whisper-cpp: use pkgs.autoAddDriverRunpath
Jonathan Ringer
2 years ago
f47f68a7
126759eb
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
tools
audio
openai-whisper-cpp
default.nix
+4
-4
pkgs/tools/audio/openai-whisper-cpp/default.nix
···
12
, MetalKit
13
14
, config
0
15
, cudaSupport ? config.cudaSupport
16
, cudaPackages ? {}
17
}:
···
42
nativeBuildInputs = [
43
which
44
makeWrapper
45
-
] ++ lib.optionals cudaSupport ( with cudaPackages ;[
46
-
cuda_nvcc
47
-
48
autoAddDriverRunpath
49
-
]);
50
51
buildInputs = [
52
SDL2
···
12
, MetalKit
13
14
, config
15
+
, autoAddDriverRunpath
16
, cudaSupport ? config.cudaSupport
17
, cudaPackages ? {}
18
}:
···
43
nativeBuildInputs = [
44
which
45
makeWrapper
46
+
] ++ lib.optionals cudaSupport [
47
+
cudaPackages.cuda_nvcc
0
48
autoAddDriverRunpath
49
+
];
50
51
buildInputs = [
52
SDL2